diff --git a/hello-fresh.py b/hello-fresh.py new file mode 100644 index 0000000..362a047 --- /dev/null +++ b/hello-fresh.py @@ -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) \ No newline at end of file