📜  selenium python 最大化窗口 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:21.252000             🧑  作者: Mango

代码示例2
from selenium import webdriver
from selenium.webdriver.chrome.options import Options

chrome_options = Options()
chrome_options.add_argument("--kiosk")

driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get('https://google.com')