chore: import upstream snapshot with attribution
CI / python (push) Failing after 0s
CI / javascript (push) Failing after 1s
CI / dotnet (push) Failing after 1s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:12:36 +08:00
commit 0af812490d
208 changed files with 60290 additions and 0 deletions
+14
View File
@@ -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!")