我尝试单击此网页上的下一页链接:https ://www.kumon.co.uk/find-a-tutor/ 在您键入伦敦、曼彻斯特或其他任何地方之前,此页面将为空:)
源代码如下所示:
<nav class="visible-xs-block">
<ul class="pager">
<li>
<a data-page="2" href="https://www.kumon.co.uk/find-a-tutor/?centre_search=london&page=2"><small><i class="fa fa-chevron-right"></i></small></a>
</li>
</ul>
</nav>
我尝试通过两种方式点击下一页:
一审:
browser.find_elements_by_xpath("//*[@class='fa fa-chevron-right']/../..")[2].click()
错误:
selenium.common.exceptions.ElementNotVisibleException: Message: element not visible
二审:
WebDriverWait(browser, 30).until(EC.presence_of_element_located((By.XPATH, "//*[@class='fa fa-chevron-right']/../.."[2]))).click()
错误:
selenium.common.exceptions.WebDriverException: Message: unknown error: Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.
重要的是我找不到关于第二条错误消息的任何文档,这就是为什么我在 stackoverflow 上发布我的第一条消息:)
仅供参考,当我删除 click() 时,该元素已很好地本地化,所以这是 click() 看起来很糟糕:/
我发现了这个处理 Javascript 的解决方案,这对我来说可能很酷,但我真的不知道如何实现这个 => Selenium Element not visible exception
你怎么看待这件事 ?
你有什么想法可以帮助我吗?不幸的是,我在这个问题上停留了 2 天:(
编辑:
这个片段:
while browser.find_element_by_xpath("//ul[@class='pagination']//li[last()]/a/small"):
action = ActionChains(browser)
search_button = WebDriverWait(browser, 20).until(
EC.element_to_be_clickable((By.XPATH, "//ul[@class='pagination']//li[last()]/a/small")))
action.move_to_element(search_button)
sleep(1)
search_button.click()
引发错误 selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: element is not attach to the page document
而且我不确定使用 try...except 是解决它的最佳解决方案,是吗?
提前谢谢,尼古拉斯。