我们是否有任何通用函数来检查 Selenium 中的页面是否已完全加载?
您正在尝试确定网页是否已完全加载使用 Selenium 完成加载。尽管您已尝试使用该代码,但即使页面正在加载,它也不会等待。您寻求一种通用的解决方案,而不是检查特定元素的可见性或可点击性的解决方案。
答案:
不,没有通用的 Selenium 方法来确认完全加载网页page.
说明:
让我们检查一下您的代码:
new WebDriverWait(firefoxDriver, pageLoadTimeout).until( webDriver -> ((JavascriptExecutor) webDriver).executeScript("return document.readyState").equals("complete"));
此代码中的 pageLoadTimeout 变量实际上并不对应于真实的 pageLoadTimeout () 函数。
但是,对于检查页面是否完全加载后,您可以使用 DesiredCapability 或 ChromeOptions 类将 pageLoadStrategy() 设置为“正常”(其他可能的值包括“none”和“eager”)。以下是示例:
使用所需功能:
DesiredCapabilities dcap = new DesiredCapabilities(); dcap.setCapability("pageLoadStrategy", "normal"); FirefoxOptions opt = new FirefoxOptions(); opt.merge(dcap); WebDriver driver = new FirefoxDriver(opt);
使用ChromeOptions:
ChromeOptions opt = new ChromeOptions(); opt.setPageLoadStrategy(PageLoadStrategy.NORMAL); WebDriver driver = new FirefoxDriver(opt);
注意事项:
将 PageLoadStrategy 设置为“正常”可确保浏览器客户端已达到 'document.readyState' 等于的状态“完全的。”但是,这并不能保证所有 JavaScript 和 Ajax 调用都已完成。
要解决此问题,您可以使用函数来等待所有 JavaScript 和 Ajax 调用完成:
public void WaitForAjax2Complete() throws InterruptedException { while (true) { if ((Boolean) ((JavascriptExecutor)driver).executeScript("return jQuery.active == 0")){ break; } Thread.sleep(100); } }
或者,您可以将 WebDriverWait 与 ExpectedConditions 结合使用来等待特定事件或元素状态:
// Wait for a specific part of the page title new WebDriverWait(driver, 10).until(ExpectedConditions.titleContains("partial_title_of_application_under_test")); // Wait for a specific element to become visible WebElement ele = new WebDriverWait(driver, 10).until(ExpectedConditions.visibilityOfElementLocated(By.xpath("xpath_of_the_desired_element")));
参考:
以上是是否有通用的 Selenium 函数来验证完整的网页加载?的详细内容。更多信息请关注PHP中文网其他相关文章!