Launching Chrome Driver, but not able to do any actions?
问题 I am trying to run my webdriver tests in Chrome. Here are the steps I'm using to launch Chrome driver: Set the chrome binary path System.setProperty("webdriver.chrome.driver", "paht\\chromedriver.exe"); DesiredCapabilities capabilities = DesiredCapabilities.chrome(); capabilities.setCapability("chrome.switches", Arrays.asList("--start-maximized")); capabilities.setJavascriptEnabled(true); capabilities.setCapability("AcceptUntrustedCertificates", true); capabilities.setCapability(