selenium+python处理iframe切换有3种方法:
1、如果iframe有id或name,则可根据iframe的id或name切换。
2、把iframe当作页面元素,通过元素定位表达式进行切换。
3、将iframe存储到list中,然后根据ifrane的索引定位 (适合页面有多个iframe,且前两种方法无法使用)。
如果页面有多层iframe嵌套,则需要一层一层往内切换,切出iframe则只需要一次操作。selenium+python具体代码示例如下:文章来源地址https://www.toymoban.com/news/detail-508151.html
import time
from selenium import webdriver
# 实例化浏览器,访问目标网页,窗口最大化
driver = webdriver.Chrome()
driver.get("http://www.eteams.cn/")
driver.maximize_window()
driver.implicitly_wait(5)
# 切换到iframe中,针对多层嵌套的iframe,需要一层一层往里切换,切出去只需一次
# 方法:1:根据iframe的id或name切换
driver.switch_to.frame("needit")
driver.switch_to.frame("ueditor_0")
driver.switch_to.default_content()
# 方法2:把iframe当作页面元素进行切换
iframe1 = driver.find_element_by_css_selector("iframe.needit")
driver.switch_to.frame(iframe1)
iframe2 = driver.find_element_by_css_selector("iframe[frameborder='0']")
driver.switch_to.frame(iframe2)
driver.switch_to.default_content()
# 方法3:将iframe存储到list中,然后根据ifrane的索引定位
iframeElements = driver.find_elements_by_tag_name("iframe")
print("iframe List的长度是:"+str(len(iframeElements)))
driver.switch_to.frame(0)
driver.switch_to.frame(1)
driver.switch_to.default_content()
driver.quit()
文章来源:https://www.toymoban.com/news/detail-508151.html
到了这里,关于selenium+python处理iframe切换的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!