-
-
Notifications
You must be signed in to change notification settings - Fork 444
Open
Labels
Description
Describe the bug:
Adding geoip=True or setting config={ 'timezone': 'America/Los_Angeles' } will crash Camoufox
Setting config = { 'webrtc:ipv4': ip } does not set the webrtc value to the correct ip.
To Reproduce:
can comment/uncomment each fox = statement
from camoufox.sync_api import Camoufox
import time
fox = Camoufox(geoip=True)
#fox = Camoufox(config={'timezone': 'America/Los_Angeles'})
#fox = Camoufox(config={'webrtc:ipv4': '93.171.92.214'})
browser = fox.start()
page = browser.new_page()
page.goto("https://www.browserscan.net/")
time.sleep(60)
Version:
Pip package: v0.4.11
Camoufox: v146.0.0-beta.25-firefox-146-beta.25 (Latest supported: v135.0.1-beta.24)
skippyyy