webdriverを実行した際に出るウィンドウすべてをバックグラウンドで処理が行えるようにしたいです
環境
Windows10
Python3.9.7
selenium 3.141.0
Python
1chrome_service = ChromeService('chromedriver') 2chrome_service.creationflags = CREATE_NO_WINDOW 3option = Options() 4option.add_argument('--headless') 5driver = webdriver.Chrome(service=chrome_service,options=option)
error
1 driver = webdriver.Chrome(service=chrome_service,options=option) 2TypeError: __init__() got an unexpected keyword argument 'service'
あなたの回答
tips
プレビュー