如何切换到的iFrame,在硒不工作(How to switch to iFrame, not wo

2019-10-29 22:54发布

我想点击iframe中的对象,但我不能切换帧的某些原因。

这是我使用来切换图像的代码:

driver.switch_to.frame(frame_reference=driver.find_elements_by_xpath('//* 
[@id="practice_schedule"]'))

这是HTML路径:

任何解决方案?

Answer 1:

.find_elements_by_xpath返回列表,删除s的吧,你想要的是.find_element_by_xpath选择第一要素。



文章来源: How to switch to iFrame, not working in Selenium