P
P
potapovdmtriy2021-05-16 21:00:54
Python
potapovdmtriy, 2021-05-16 21:00:54

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


Parsing function:
def parse(proxy):
    browser = get_browser(proxy)


We sort and betray the proxy:
for proxy in proxys:
    try:
        while parse(proxy):
            parse(proxy)


How can I prevent a new browser from being created in the loop?

The task is to sort through the proxy, transfer it to the browser without creating a new window. Parse the data and move on to the next proxy.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dimonchik, 2021-05-16
@dimonchik2013

no, the proxy is global,
open several in parallel

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question