在硒弹出窗口中自动向下滚动时,发生NoSuchElementException错误

时间:2020-08-28 09:32:03

标签: python selenium scroll popup

我是一名学习硒的学生 我想自动向下滚动以在下面网址的弹出窗口中获得大量评论。

请告诉我如何自动向下滚动此网址。

https://www.airbnb.co.kr/rooms/plus/118560/reviews?adults=1&location=%ED%95%98%EC%99%80%EC%9D%B4%2C%20%EB%AF%B8%EA%B5%AD&check_in=2020-09-08&check_out=2020-09-11&source_impression_id=p3_1598606057_5op%2F9De8%2B0lhlaz3

time.sleep(5)
driver.implicitly_wait(15)

scr1 = driver.find_element_by_xpath('/html/body/div[11]/section/div/div/div[3]/div/div/section/div/div[2]')
driver.execute_script("arguments[0].scrollTop = arguments[0].scrollHeight", scr1)

time.sleep(3)
html = driver.page_source

如果使用上面的代码运行它,则会收到以下错误消息

elenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element:

我尝试使用多个xpath来解决问题,并在上​​面的代码之前给了我足够的时间。 请告诉我如何自动向下滚动此URL。 感谢您的阅读。

0 个答案:

没有答案