Does it make a difference whether I load a website every two seconds or always reload it as soon as the website has reloaded? So if I use python and selenium and the page or its subdirectories open every two seconds or as soon as the subdirectories are available? or the server may be overloaded.
for each in self.all:
self.driver.get(each)
or
WebDriverWait(self.driver, 60).until(
EC.presence_of_element_located((By.TAG_NAME, 'p')))
self.driver.get(each)
tag.
– pcalkins Jul 17 '20 at 19:48