selenium定位当前处于那个iframe(frame)中

Posted 不不田鼠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium定位当前处于那个iframe(frame)中相关的知识,希望对你有一定的参考价值。

问题:操作某元素时,总是定位不上,此时需要确认你在哪个iframe里。

如图html代码,有很多个iframe,代码如下

 

定位问题的代码:

获取当前iframe的tag name,确定有几个iframe,你所在的元素和获取到页面的iframe之间的关系,来进行iframe的切换。

for child_frame in driver.find_elements_by_tag_name("iframe"):
    child_frame_id = child_frame.get_attribute("src")
    print(child_frame_id)

  

 

以上是关于selenium定位当前处于那个iframe(frame)中的主要内容,如果未能解决你的问题,请参考以下文章

python+selenium如何定位多层iframe中元素

Selenium中web三大切换之iframe窗口及Alert(弹窗)切换

selenium无法定位元素问题

(selenium+python)_UI自动化04_定位iframe框架内元素

Python+Selenium 定位页面元素

怎么获取iframe里面的元素