proxy.py icon indicating copy to clipboard operation
proxy.py copied to clipboard

how to start proxy for selenium in new version??

Open broadcast98 opened this issue 2 years ago • 0 comments

        with proxy.start(
                ['--host', '127.0.0.1',
                 '--port', '9333'
                 #'--ca-cert-file', 'wec-ca.pem',
                 #'--ca-key-file', 'wec-ca.key',
                 #'--ca-signing-key-file', 'wec-signing.key'
                 ],
                plugins=[b'mymodule.MyPlugin', mymodule.MyPlugin]
                 ):
                 ###other code for selenium webdriver .... ###

it seems proxy.start was removed in new version. so how to modify the above codes ?

thanks!

broadcast98 avatar Jan 22 '24 08:01 broadcast98