Answer the question
In order to leave comments, you need to log in
Is it possible not to open Selenium but work in one window?
A function that returns a browser object:
def get_browser(proxy):
caps = DesiredCapabilities().CHROME
caps["pageLoadStrategy"] = "eager"
browser_options = Options()
browser_options.add_argument('--proxy-server=http://%s' % proxy)
browser = webdriver.Chrome(desired_capabilities=caps, options=browser_options)
return browser
def parse(proxy):
browser = get_browser(proxy)
for proxy in proxys:
try:
while parse(proxy):
parse(proxy)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question