From 585108b3cf3a10fc553f0e053c12c4f6acad625f Mon Sep 17 00:00:00 2001 From: Nico Melone Date: Fri, 25 Jun 2021 20:38:34 -0400 Subject: [PATCH] initial code --- hello-fresh.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hello-fresh.py 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