• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    PowerShell调用Web测试工具Selenium实例

    什么是Selenium

    Selenium是一款著名的web应用程序测试工具,它能通过在浏览器中模拟用户的动作来完成测试,其api支持java,c#,python,ruby,php,perl,javascript这些主流编程语言和脚本语言。Selenium还支持IE,火狐,和chrome等主流浏览器。

    PowerShell 如何直接调用Selenium

    PowerShell直接调用Selenium,其实类似PowerShell调用C#方法。以IE浏览器为例,至少需要具备两个文件:

    1.IEDriverServer.exe 启动IE代理,模拟用户操作
    2.WebDriver.dll 暴露API给用户,对浏览器进行控制

    纯PowerShell调用Selenium的例子

    复制代码 代码如下:

    Add-Type -Path .\WebDriver.dll
    $SeNS='OpenQA.Selenium'
     
    # 初始化IE驱动实例
    $ieDriver= New-Object "$SeNS.IE.InternetExplorerDriver"
     
    $nav=$ieDriver.Navigate()
    $nav.GoToUrl('https://www.jb51.net')
     
    # 设置文本框的值
    $search=$ieDriver.FindElementById('s')
    $search.SendKeys('测试框架')
     
    # 提交表单
    $search.Submit()
     
    $ieDriver.FindElementByClassName('class')
    $ieDriver.FindElementById('id')
    $ieDriver.FindElementByLinkText(' a link')
    $ieDriver.FindElementByPartialLinkText(' powershell')
    $ieDriver.FindElementByName('username')
    $ieDriver.FindElementByCssSelector('')
    # 截屏并保存
    $screenshot=$ieDriver.GetScreenshot()
    [io.file]::WriteAllBytes('d:\test\a.jpg',$screenshot.AsByteArray)
     
    # 关闭IE进程
    $ieDriver.Quit()

    为什么要使用Selenium

    看了上面的调用,有的哥们要开始质疑了这里面主要的方法是:找element。和InternetExplorer.Application中的Html Document类中的关键方法类似啊,byid,byName,byClass,ByTag。这么想,没错。
    但是经本人测试,如果web页面稍显复杂,InternetExplorer.Application中的除了getElementById可以勉强接受,其它的方法慢的一塌糊涂。而Selenium却表现非常良好。
    另外Selenium支持css selector查找结点,这无疑是最给力的了,让jquery也投入战斗。
    最后一点当然是Selenium对于浏览器的兼容性优势了。

    借助Selenium PowerShell eXtensions

    这是一个对Selenium进行封装的PowerShell开源扩展工具,如果你觉得不爽,也可以自己重构或者直接重写。代码托管在:
    1.GitHub(http://www.pstips.net/goto/https://github.com/apetrovskiy/STUPS)
    2.Codeplex(http://www.pstips.net/goto/http://sepsx.codeplex.com/)

    您可能感兴趣的文章:
    • python基于Selenium的web自动化框架
    • selenium跳过webdriver检测并模拟登录淘宝
    • selenium+python自动化测试之使用webdriver操作浏览器的方法
    • Selenium(Python web测试工具)基本用法详解
    • Selenium Webdriver实现截图功能的示例
    • selenium高效应对Web页面元素刷新的实例讲解
    • java selenium 常见web UI 元素操作及API使用
    • Selenium webdriver添加cookie实现过程详解
    上一篇:Powershell创建数组正确、更快的方法
    下一篇:Powershell使用WINDOWS事件日志记录程序日志
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    PowerShell调用Web测试工具Selenium实例 PowerShell,调用,Web,测试工具,