Files
camoufox/example/example_simple.py
T
icepaq d6540b52ce Service Test and Contributing Guides (#521)
* 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
2026-03-15 21:31:49 -04:00

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...")