Python Selenium保持浏览器打开

出于营销原因,我正在使用selenium打开一些浏览器窗口。我只是打开我的营销渠道,通过selenium登录并开始工作。

问题是,在执行代码后,selenium将关闭窗口。

到目前为止,所有解决方案均无济于事。

我有13个浏览器窗口atm。,如下所示:

def open_instagram():    

try:

# Connect

chrome_options = webdriver.ChromeOptions()

chrome_options.add_argument("--incognito")

browser = webdriver.Chrome('drivers/chromedriver.exe', chrome_options=chrome_options)

browser.set_window_size(1800, 900)

browser.get("https://www.instagram.com/accounts/login/?hl=de")

browser.find_element(By.NAME, 'username').send_keys('MYEMAIL', Keys.TAB, 'MYPW', Keys.ENTER)

except Exception as e:

print (e, 'Instagram')

open_instagram()

我找到的最接近的解决方案是在脚本的末尾添加此内容,但是不知何故,它只能保持5个窗口打开,而不是关闭5个窗口并打开下5个新窗口:

while True:

pass

我只希望selenium使所有浏览器窗口保持打开状态,直到我手动关闭它们为止。

回答:

如果您希望chrome和chromedriver保持打开状态,则在启动chromedriver时必须使用“ detach”选项。

在您的情况下,请添加:

from selenium.webdriver.chrome.options import Options

chrome_options = Options()

chrome_options.add_experimental_option("detach", True)

您可以在调试模式下以结尾处的断点运行代码,并且在断点“暂停”该程序时,如果需要,可以接管浏览器,但这仅在IDE中有效。

编辑-为清楚起见添加了导入

以上是 Python Selenium保持浏览器打开 的全部内容, 来源链接: utcz.com/qa/431528.html

回到顶部