-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchecker.py
27 lines (22 loc) · 921 Bytes
/
checker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from selenium.webdriver.common.by import By
from selenium.common.exceptions import NoSuchElementException
MAPS_LINK = 'https://www.google.com/maps'
PAGE_SRC_PATH = r'C:\Users\Kipplouser1\Desktop\maps\page_src'
def css_checker(driver):
"""checks if css selector '.CsEnBe' is present"""
try:
driver.find_element(By.CSS_SELECTOR, '.CsEnBe')
return True
except NoSuchElementException:
return False
def checking_url(driver):
"""if page redirects to the below url,this function is called to skip it"""
global title
skipping_dir = 'https://www.google.com/maps/dir/'
missing_url = driver.current_url
if skipping_dir in missing_url:
print('skipping...')
page_src = driver.page_source
with open(rf'{PAGE_SRC_PATH}\{title}.html', 'w', encoding='UTF-8') as f:
f.writelines(page_src)
driver.get(MAPS_LINK)