AC
Size: a a a
AC
AC
k
try:
while True:
time.sleep(3)
...
Тут парсер
...
try:
a_next_page = driver.find_element_by_class_name('pagination')
a_next_page.click()
time.sleep(2)
except NoSuchElementException:
break
Message: Element <div class="pagination"> is not clickable at point (833,617) because another element <div id="myoverlay" class="pp-visible"> obscures it
AC
AC
AC
AC