WebDriverWait(WebDriver driver, long timeoutInSeconds) 已弃用,如何替代
该方法在Selenium 的 v4版本被弃用

解决方法
WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(10));
参考:https://www.likecs.com/ask-117444.html , 非常感谢

该方法在Selenium 的 v4版本被弃用

解决方法
WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(10));
参考:https://www.likecs.com/ask-117444.html , 非常感谢
