我想点击iframe中的对象,但我不能切换帧的某些原因。
这是我使用来切换图像的代码:
driver.switch_to.frame(frame_reference=driver.find_elements_by_xpath('//*
[@id="practice_schedule"]'))
这是HTML路径:
任何解决方案?
我想点击iframe中的对象,但我不能切换帧的某些原因。
这是我使用来切换图像的代码:
driver.switch_to.frame(frame_reference=driver.find_elements_by_xpath('//*
[@id="practice_schedule"]'))
这是HTML路径:
任何解决方案?
.find_elements_by_xpath
返回列表,删除s
的吧,你想要的是.find_element_by_xpath
选择第一要素。