第一个:很多同学不知道自己想要定位的元素在不在iframe中
通过下面的方式确定是不是在iframe中(有2个html、…等)
传入参数:
1、iframe元素的name属性(最简单的)
driver.switch_to.frame(‘baidu’)
driver.find_element_by_xpath(‘//input[@id=“kw”]’)
2、如果iframe没有name属性呢? 可以根据iframe的索引(索引从0开始)
只有一个iframe,所以索引为0
driver.switch_to.frame(0)
driver.find_element_by_xpath(‘//input[@id=“kw”]’)
3、如果没有name属性,索引也不知道是哪一个? iframe的WebElement对象–先找到这个iframe———用的最多
frame_el=driver.find_element_by_xpath(‘//iframe[@name=“baidu”]’)
切换到frame中
driver.switch_to.frame(frame_el)
driver.find_element_by_xpath(‘//input[@id=“kw”]’)
封装:
def switch_frame(frame_el):
driver.switch_to.frame(frame_el)
el=driver.find_element_by_xpath('//input[@id="kw"]')
el.input('kobe')
frame_el=driver.find_element_by_xpath('//iframe[@name="baidu"]')
switch_frame(frame_el)
iframe等待
driver.switch_to.frame()
frame_to_be_available_and_switch_to_it 智能切换
wait=WebDriverWait(driver,20)
locator=(‘xpath’,‘//iframe[@name=“baidu”]’)
wait.until(expected_conditions.frame_to_be_available_and_switch_to_it(locator))
def frame(locator):
wait=WebDriverWait(driver,20)
wait.until(expected_conditions.frame_to_be_available_and_switch_to_it(locator))
locator=('xpath','//iframe[@name="baidu"]')
frame(locator)
切换完之后,定位到输入框元素
driver.find_element_by_xpath('//input[@id="kw"]')
iframe切换回主页面和父级iframe
driver.switch_to.default_content()
#从iframe中,返回主页面
driver.switch_to.default_content()
driver.find_element_by_id('hello')
在一个iframe中,如果还嵌套了另一个iframe——-了解
进入:一个一个的进,先进第一层的iframe,一层一层的进
如果出呢:一层一层的出
driver.switch_to.parent_frame()
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/74139.html