直接连接9222 会等待很长时间,多线程尝试连接9222,join(timeout=2),结果放brower。
如果brower是空,os执行 chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\selenum\AutomationProfile"
,然后在主线程再次连接9222
python
import os
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from threading import Thread
# 直接连接9222 会等待很长时间
# 多线程尝试连接9222,join(timeout=2)
# if brower ='',
# os执行 chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\selenum\AutomationProfile"
# 再次连接9222
brower = ''
chrome_options = Options()
chrome_options.add_experimental_option('debuggerAddress', "127.0.0.1:9222")
def connect():
global brower
brower = webdriver.Chrome(executable_path="???",
chrome_options=chrome_options)
t = Thread(target=connect)
t.start()
t.join(2)
if brower == '':
os.system('chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\selenum\AutomationProfile"')
connect()
# 浏览器操作