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 characters
# | |
# First install python-playwright 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() |
OlderNewer