问题:操作某元素时,总是定位不上,此时需要确认你在哪个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)
原文地址:https://www.cnblogs.com/bubutianshu/p/11691186.html
时间: 2024-10-07 22:58:13