如何使用 Python Selenium WebDriver 在隐身/隐私模式下打开浏览器窗口?
使用 ChromeOptions 类,我们可以使用 Python 中的 Selenium webdriver 以隐身/隐私模式打开浏览器窗口。我们必须创建一个 ChromeOptions 类的对象。
然后,将方法 add_argument 应用到该对象并传递参数--incognito 作为参数。最后,此信息必须传递到 webdriver 对象。
语法
c = webdriver.ChromeOptions() c.add_argument("--incognito")
示例
from selenium import webdriver #object of ChromeOptions class c = webdriver.ChromeOptions() #incognito parameter passed c.add_argument("--incognito") #set chromodriver.exe path driver = webdriver.Chrome(executable_path="C:\chromedriver.exe",options=c) driver.implicitly_wait(0.5) #launch URL driver.get("https://tutorialspoint.com/tutor_connect/index.php")
输出
广告