美文网首页
python+selenium自动化脚本如何切换到新窗口

python+selenium自动化脚本如何切换到新窗口

作者: 威廉古堡Harvey | 来源:发表于2019-11-12 21:36 被阅读0次

    在利用python+selenium编写自动化测试脚本时,经常需要切换到新窗口继续操作页面元素,怎么办呢?
    1,首先确定你在当前页面的操作打开了新窗口,然后你需要获取所有已打开窗口的句柄:
    即 handles = driver.window_handles
    2,然后需要遍历获取的句柄与当前窗口的句柄进行比较,如果与当前窗口句柄不等,则切换到新句柄:
    for handle in handles:
    if handle != driver.currently_window_handle:
    driver.switch_to.window(handle)

    相关文章

      网友评论

          本文标题:python+selenium自动化脚本如何切换到新窗口

          本文链接:https://www.haomeiwen.com/subject/gqnuyctx.html