基本信息
源码名称:phpunit+selenium测试环境搭建浅谈
源码大小:0.60M
文件格式:.zip
开发语言:PHP
更新时间:2023-07-05
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
phpunit selenium测试环境搭建浅谈
这是我个人对phpunit selenium测试环境搭建的一些总结绝对原创,本人只是菜鸟水平有很多没有写到的地方还望多多包涵。


文件清单
└── phpunit selenium环境搭建
    ├── client.bat
    ├── php.ini
    ├── PHPUnit_Selenium-1.2.6
    │   ├── ChangeLog.markdown
    │   ├── LICENSE
    │   └── PHPUnit
    │       └── Extensions
    │           ├── Selenium2TestCase
    │           │   ├── Command.php
    │           │   ├── CommandsHolder.php
    │           │   ├── Driver.php
    │           │   ├── Element
    │           │   │   └── Select.php
    │           │   ├── ElementCommand
    │           │   │   ├── Attribute.php
    │           │   │   ├── Click.php
    │           │   │   ├── Css.php
    │           │   │   ├── Equals.php
    │           │   │   ├── GenericAccessor.php
    │           │   │   ├── GenericPost.php
    │           │   │   └── Value.php
    │           │   ├── ElementCriteria.php
    │           │   ├── Element.php
    │           │   ├── Exception.php
    │           │   ├── Response.php
    │           │   ├── Session
    │           │   │   ├── Cookie
    │           │   │   │   └── Builder.php
    │           │   │   ├── Cookie.php
    │           │   │   ├── Storage.php
    │           │   │   └── Timeouts.php
    │           │   ├── SessionCommand
    │           │   │   ├── AcceptAlert.php
    │           │   │   ├── AlertText.php
    │           │   │   ├── DismissAlert.php
    │           │   │   ├── Frame.php
    │           │   │   ├── GenericAccessor.php
    │           │   │   ├── Url.php
    │           │   │   └── Window.php
    │           │   ├── Session.php
    │           │   ├── SessionStrategy
    │           │   │   ├── Isolated.php
    │           │   │   └── Shared.php
    │           │   ├── SessionStrategy.php
    │           │   ├── StateCommand.php
    │           │   ├── URL.php
    │           │   └── Window.php
    │           ├── Selenium2TestCase.php
    │           ├── SeleniumBrowserSuite.php
    │           ├── SeleniumTestCase
    │           │   ├── append.php
    │           │   ├── Autoload.php
    │           │   ├── Driver.php
    │           │   ├── phpunit_coverage.php
    │           │   └── prepend.php
    │           ├── SeleniumTestCase.php
    │           └── SeleniumTestSuite.php
    ├── phpunit selenium环境搭建浅谈.wps
    └── Structures_Graph-1.0.3
        ├── docs
        │   ├── generate.sh
        │   ├── html
        │   │   ├── classtrees_Structures_Graph.html
        │   │   ├── elementindex.html
        │   │   ├── elementindex_Structures_Graph.html
        │   │   ├── errors.html
        │   │   ├── index.html
        │   │   ├── li_Structures_Graph.html
        │   │   ├── media
        │   │   │   ├── banner.css
        │   │   │   └── stylesheet.css
        │   │   ├── packages.html
        │   │   ├── Structures_Graph
        │   │   │   ├── Structures_Graph.html
        │   │   │   ├── Structures_Graph_Manipulator_AcyclicTest.html
        │   │   │   ├── _Structures_Graph_Manipulator_AcyclicTest_php.html
        │   │   │   ├── Structures_Graph_Manipulator_TopologicalSorter.html
        │   │   │   ├── _Structures_Graph_Manipulator_TopologicalSorter_php.html
        │   │   │   ├── Structures_Graph_Node.html
        │   │   │   ├── _Structures_Graph_Node_php.html
        │   │   │   ├── _Structures_Graph_php.html
        │   │   │   └── tutorial_Structures_Graph.pkg.html
        │   │   └── todolist.html
        │   └── tutorials
        │       └── Structures_Graph
        │           └── Structures_Graph.pkg
        ├── LICENSE
        ├── Structures
        │   ├── Graph
        │   │   ├── Manipulator
        │   │   │   ├── AcyclicTest.php
        │   │   │   └── TopologicalSorter.php
        │   │   └── Node.php
        │   └── Graph.php
        └── tests
            ├── AllTests.php
            └── testCase
                └── BasicGraph.php

24 directories, 75 files