处理driver->get(URL)
页面加载缓慢的最佳方法是什么?
我基本上有一个最多运行 3 次的 for 循环。在那个循环中,我有一个try/catch block. In the try block, it loads the page with get OR
wait()->until(WebDriverExpectedCondition::presenceOfElementLocated(WebDriverBy::xPath("//body")));
如果 get 或 wait 不起作用,则页面刷新或执行相同的 get 命令。
这真的是最好的方法吗?想问问大家是怎么处理的?无法正确加载的页面似乎是我的脚本经常无法完全执行的主要原因之一。