Last active
November 13, 2022 16:04
Revisions
-
korayal revised this gist
Nov 13, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ # # First install python-playwright via: `pip3 install playwright && playwright install` # from playwright.sync_api import sync_playwright from datetime import datetime, timedelta -
korayal created this gist
Nov 13, 2022 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ # # First install via: `pip3 install playwright && playwright install` # from playwright.sync_api import sync_playwright from datetime import datetime, timedelta import time with sync_playwright() as p: browser = p.chromium.launch(headless=True) page = browser.new_page() page.goto('https://api.webprobe.org/scan/') done = False starttime = datetime.utcnow() while not done: content = page.content() report_complete = page.is_visible('div#probe_report') timeout = (datetime.utcnow() - starttime) > timedelta(seconds=60) if report_complete or timeout: done = True else: time.sleep(1) browser.close()