Selenium 3.0 ExpectedConditions issue
问题 Using a click() implementation as follows, selenium will act as if it clicked the button, and will expect the next screen. But the webpage will not receive the click so the next screen will not pop up. I don't really understand what it is going on, maybe some of you encountered this issue before. Here's the click implementation: public static void click(WebDriver driver, By by) { new WebDriverWait(driver, DEFAULT_WAIT_FOR_ELEMENT) .until(ExpectedConditions.elementToBeClickable(by)) .click();