Luminate templates for the language switcher. Added some items to the screenshot scraper.

This commit is contained in:
Norm Rasmussen
2024-04-01 17:46:07 -04:00
parent d71e70688f
commit 9286f52fb2
115 changed files with 5859 additions and 26 deletions

View File

@ -6,7 +6,9 @@ def run(playwright: Playwright):
print("running")
webkit = playwright.webkit
browser = webkit.launch()
context = browser.new_context()
context = browser.new_context(
viewport={ 'width': 390, 'height': 844 }
)
page = context.new_page()
BASEURL = "https://walmart.northpass.com/app/courses/"
USERID = "?uid=7beg87y4-fh24-4929-3rt5-24kdn87s5241"
@ -16,7 +18,7 @@ def run(playwright: Playwright):
example = page.goto(f"{BASEURL}{COURSEID}{USERID}")
page.screenshot(path="/Users/normrasmussen/Downloads/screenshot1.png", full_page=True)
page.locator('#course-mobile > div.np-top-cta.stick-to-bottom > a').click()
page.screenshot(path="/Users/normrasmussen/Downloads/screenshot2.png", full_page=True)
page.screenshot(path="/Users/normrasmussen/Downloads/screenshot2.png").mask(['#activity-b4be181e-d2ea-46f8-bb1a-cd316c590fcf > div.Wrapper-h8th5y-0.evldAo.footer__wrapper > div > footer'])
browser.close()
with sync_playwright() as playwright: