想請問一下版上先進們
chrome 可以用
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_experimental_option("debuggerAddress", "127.0.0.1:9222")
chrome_driver = "C:\Program Files
(x86)\Google\Chrome\Application\chromedriver.exe"
driver = webdriver.Chrome(chrome_driver, chrome_options=chrome_options)
print(driver.title)
這種方式 開啟 已開啟的 chrome 瀏覽器
想請問 IE 是否也有類似的方法可以使用呢?