initial code
This commit is contained in:
11
hello-fresh.py
Normal file
11
hello-fresh.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from string import ascii_lowercase
|
||||
from selenium import webdriver
|
||||
from selenium.webdriver.common.keys import Keys
|
||||
import time
|
||||
url_base = "https://www.hellofresh.com/pages/sitemap/recipes-"
|
||||
|
||||
driver = webdriver.Chrome()
|
||||
for x in ['a']: #ascii_lowercase:
|
||||
print("Going to: {}{}".format(url_base, x))
|
||||
driver.get(url_base + x)
|
||||
time.sleep(60)
|
||||
Reference in New Issue
Block a user