访问 Aria 标签和下拉菜单选择 - Selenium Python

问题描述 投票:0回答:1

我在尝试自动使用硒进入站点设置并将不安全内容下拉菜单从阻止更改为允许时遇到困难。我采取的每种方法都会收到错误:找不到元素。还有 30 个其他下拉菜单,我相信 aria 标签是访问该元素的唯一可靠方法。如果有任何解决方案,无论是否带有 aria 标签,我们将不胜感激。提前致谢。 检查屏幕

我尝试过 CSS.SElECTOR、CLASS_NAME、ID、XPATH 和 ARIA-LABELS 似乎没有任何效果。

python selenium-webdriver automation drop-down-menu
1个回答
0
投票
service = Service(executable_path="chromedriver.exe")
options = webdriver.ChromeOptions()
options.add_argument("--ignore-certificate-errors")
options.add_argument("--allow-insecure-localhost")
options.add_argument("--allow-running-insecure-content")
driver = webdriver.Chrome(service=service, options=options)
driver.maximize_window()
© www.soinside.com 2019 - 2024. All rights reserved.