4 changed files with 18 additions and 8 deletions
@ -0,0 +1,3 @@ |
|||||
|
from selenium.common.exceptions import NoSuchElementException, StaleElementReferenceException |
||||
|
|
||||
|
SELENIUM_EXCEPTIONS = (NoSuchElementException, StaleElementReferenceException) |
@ -0,0 +1,8 @@ |
|||||
|
from selenium.webdriver.common.action_chains import ActionChains |
||||
|
from .common import SELENIUM_EXCEPTIONS |
||||
|
|
||||
|
def unlike_pages(driver): |
||||
|
""" |
||||
|
Unlike all pages |
||||
|
""" |
||||
|
return |
Loading…
Reference in new issue