Sanjeev Kumar
Sanjeev Kumar
You are running selenium grid as docker or is it running on host machine where selenium-wire script docker running?
It looks like your grid is not able to reach selenium-wire. can you login into machine(where selenium grid hosted) and ping ip of selenium wire running in docker?
Hello @mirisr `addr` option is correct. And you did everything correctly in terms of sending correct parameters. Can you access selenium-wire, from anywhere? Or are you using any security group...
I work in similar set up. I never pass `addr` because it would take localhost. You need only `port`
No `0.0.0.0` works for Mac only for Linux '127.0.0.1' So it better to leave it to be default as this would be 'localhost'
I use chrome however, if you want to use proxy with Firefox. Try installing a plugin and entering a proxy. You can do automation of installation of plugins and using...
@vinhliem Did it work for you? I have similar setup but doesn't work.
Thanks @vinhliem. Am using similar configuration. Am running selenium grid, node(all in local docker container) and selenium wire in local machine. ``` wire_options = { 'proxy': { 'http': f'http://{username}:{password}@{host}:{port}', 'https':...
Thanks, container was not able to access selenium wire when I put `localhost`. I need to access the selenium wire running on host machine. In my case it worked my...
> @sanjeevtrz @wkeeling @vinhliem Hey guys I also want to run selenium-wire with selenium grid, node(all in a local docker container) but I don't want to run selenium wire in...