chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
"""Basic example: launch stealth browser and load a page."""
|
||||
|
||||
from cloakbrowser import launch
|
||||
|
||||
print("Launching stealth browser...", flush=True)
|
||||
browser = launch(headless=False)
|
||||
page = browser.new_page()
|
||||
|
||||
page.goto("https://example.com")
|
||||
print(f"Title: {page.title()}")
|
||||
print(f"URL: {page.url}")
|
||||
|
||||
browser.close()
|
||||
print("Done!")
|
||||
Reference in New Issue
Block a user