|
urls = driver.find_elements(By.TAG_NAME,"a")
|
|
urls = driver.find_elements(By.TAG_NAME,"a")
|
|
urls = list(filter(lambda url: link in url and ".doc" not in url and ".pdf" not in url and ".odt" not in url and ".docx" not in url, [u.get_attribute('href') for u in urls]))
|
|
urls = list(filter(lambda url: link in url and ".doc" not in url and ".pdf" not in url and ".odt" not in url and ".docx" not in url, [u.get_attribute('href') for u in urls]))
|