mirror of
https://github.com/daijro/camoufox.git
synced 2026-08-18 16:00:58 +00:00
d6540b52ce
* example files * contributing guides * simple service test * run tests in sync * update pr template * pip updates * Update README.md * typo fixes * undo pip package update lol * upgraded service test * undo injections * test with proxies * auto set timezone and proxy url * delete checks bundle * split up service tests * split up build tests * rename service tests to service tester * Update CONTRIBUTING.md * fix entry vs exit ip * allow alpha versions * fix patch issues on macos * bidirectional patch * Add note on experimental pip package
9 lines
292 B
Python
9 lines
292 B
Python
from camoufox.sync_api import Camoufox
|
|
|
|
ACCEPT_ENCODING = "identity"
|
|
|
|
with Camoufox(headless=False) as browser:
|
|
page = browser.new_page(extra_http_headers={"accept-encoding": ACCEPT_ENCODING})
|
|
page.goto("https://abrahamjuliot.github.io/creepjs/")
|
|
input("Press Enter to close...")
|