请帮助我在Firefox上添加硒



晚上好,我正在尝试在Firefox中使用selenium做一些测试,但我被卡住了,我不能点击按钮,因为我得到了接受cookie的消息,并且不允许我继续测试,我不知道如何使selenium接受cookie。

这是它给我的信息:An exception occurred: ElementClickInterceptedException Message: Element <select id="tramiteGrupo[1]" class="mf-input__l" name="tramiteGrupo[1]"> is not clickable at point (470,571) because another element <a class="small cli-plugin-button cli-plugin-main-button" href="#"> obscures it

我想让selenium接受cookie并能够继续输入参数。

让Selenium暂停(查看文档中如何暂停,比如Thread.sleep(2000);)一分钟,然后点击"接受cookie";按钮,并尝试点击按钮时,自己暂停。这样你就可以看到是什么元素阻塞了它。

然后使用"page scroll up"/"page scroll down"/x/y/等等来移动它,这样当尝试点击按钮时它就不会被阻塞。

最新更新