frameset 不用切,frame 需要层层切
frame 标签有 frameset、frame、iframe 三种,frameset 跟其他普通标签没有区别,不会影响到正常的定位,而 frame 与 iframe对selenium 定位而言是一样的,selenium 有一组方法对 frame 进行操作
1、怎么切到 frame 中 (switch_to.frame())
selenium 提供了 switch_to.frame() 方法来切换 frame
switch_to.frame(reference)
注意:switch_to_frame(),很多人在这样写的时候会发现,这句话被划上了删除线,原因是这个方法已经out了,之后很有可能会不支持,建议的写法是switch_to.frame()
reference 是传入的参数,用来定位 frame,可以传入 id、name、index、 以及 selenium 的WebElement 对象
案例:有如下的html文件
在Frame.html 文件中定位搜狗页面,进行搜索操作
from selenium import webdriver
d=webdriver.Firefox()
#设置网页文件路径,r 代表路径转义
#file_path=r'C:\Users\Administrator\Desktop\aa.html'
file_path='file:///C:/Users/Administrator/Desktop/aa.html'
d.get(file_path)
#切换到 frame 页面内
d.switch_to.frame("search")
#driver.switch_to.frame(0) # 1.用frame的index来定位,第一个是0
# driver.switch_to.frame(driver.find_element_by_tag_name("iframe")) # 用WebElement对象定位
#定位到搜索框按钮输入关键词
d.find_element_by_css_selector("#query").send_keys("python")
d.find_element_by_css_selector("#stb").click()
d.quit()
通常采用id和name就能够解决绝大多数问题。但有时候frame并无这两项属性,则可以用index和WebElement来定位:
index从0开始,传入整型参数即判定为用index定位,传入str参数则判定为用id/name定位
WebElement对象,即用find_element系列方法所取得的对象,我们可以用tag_name、xpath等来定位frame对象
2、从 frame 中切回主文档(switch_to.default_content())
切到 frame 中之后,我们便不能操作主文档的元素,这时如果想操作主文档内容,则需切回主文档
driver.switch_to.default_content
3、嵌套 frame 的操作(switch_to.parent_frame())
有时候会遇到嵌套 的 frame,如下:
(1)从主文档切到 frame2,一层层切进去
driver.switch_to.frame("frame1") driver.switch_to.frame("frame2")
(2)从 frame2 在切回到 frame1 ,这里 selenium 给我们提供了一个方法能够从 子frame 切回到 父frame,而不用我们切回主文档在切进来
driver.switch_to.parent_frame() # 如果当前已是主文档,则无效果
有了parent_frame() 这个相当于后退的方法,我们可以随意切换不同的 frame,随意的跳来跳去了
所以只要善用一下三个方法,遇到 frame 分分钟搞定