当我正常启动chrome浏览器时,我不需要接受任何东西,它马上就能工作了。但是使用chromedriver(python,selenium),我每次都必须接受条件。
我不使用匿名模式。在设置中,我设置了接受cookie。
from time import sleep
from selenium import webdriver
chromeDriverPath=r'C:\Users\Aorus\Downloads\Z_ARCHIWUM\PythonScript\chromedriver_win32\chromedriver.exe'
browser = webdriver.Chrome()
browser.get('https://google.com')
是否有我可以自动接受的代码行?或者可能需要在浏览器设置中更改其他内容?
enter image description here
谢谢
1条答案
按热度按时间lf5gs5x21#
您可以像单击页面上的任何其他元素一样单击它。由于它是一个具有动态ID的元素,因此您可以通过文本定位它。类似于locator的内容: