@Test
public void test_webDriver_methods_which_should_not_return_proxy() {
IsNotProxyable isNotProxyable = new IsNotProxyable();
// when
WebDriver driver = Mockito.mock(WebDriver.class, isNotProxyable);
Options options = mock(Options.class, isNotProxyable);
Navigation navigation = mock(Navigation.class, isNotProxyable);
ImeHandler ime = mock(ImeHandler.class, isNotProxyable);
Logs logs = mock(Logs.class, isNotProxyable);
// then
try {
driver.toString();
driver.close();
driver.equals(new Object());
driver.get("");
driver.getClass();
driver.getCurrentUrl();
driver.getPageSource();
driver.getTitle();
driver.getWindowHandle();
driver.hashCode();
driver.quit();
driver.toString();
options.addCookie(mock(Cookie.class));
options.deleteAllCookies();
options.deleteCookie(mock(Cookie.class));
options.deleteCookieNamed("");