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("");
options.getCookieNamed("");
navigation.back();
navigation.forward();
navigation.to("");
navigation.to(new URL("http://localhost/"));
ime.activateEngine("");
ime.deactivate();
ime.getActiveEngine();
ime.isActivated();