Selenium3+python自動化009-iframe定位

iframeweb

1、frame:HTML頁面中的一種框架,主要做用是在當前頁面中指定區域顯示另外一頁面元素;框架

 

2、操做Frame中的頁面元素spa

定位元素:對象

1.id定位
driver.switch_to.frame('frame_id')索引

2.name定位
driver.switch_to.frame('frame_name')element

3.索引
driver.switch_to.frame(0)文檔

4.webelement對象
a=driver.find_element_by_xpath('//iframe')
driver.switch_to_frame(a)iframe

 

嵌套frameit

1.fame1中嵌套frame2:
先切換到frame1,再切換到frame2
driver.switch_to.frame('frame1')
driver.switch_to.frame('frame2')xpath

2.從frame2返回到frame1
driver.switch_to.parent_frame()

3.回退到主文檔
driver.switch_to.default_content()

相關文章
相關標籤/搜索