-
Hello, I'm building a crawler to get some info from social networks and I need to use proxy, here we have a route which give us a proxy dynamically. In README file has an example using Can I did something like that? If don't, can I use my own proxy_list file or set the proxy in self.drive() for example? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
@acpn You can set the proxy dynamically by adding the following line in a script: self.get_new_driver(proxy="SERVER:PORT") That will open a new browser window, and all commands after that will be executed from that window. |
Beta Was this translation helpful? Give feedback.
-
@mdmintz when using firefox has some additional setup that I've to do? I'm asking because when i set Thanks, |
Beta Was this translation helpful? Give feedback.
@acpn You can set the proxy dynamically by adding the following line in a script:
That will open a new browser window, and all commands after that will be executed from that window.