I have to visit a list of URLs but I do not want to open those which will start a download.
for url in url_list:
if (url will not start a download):
driver.get(url)
..................
else:
continue
Does someone have a solution for this? thanks in advance for the answers