【例子介绍】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
评论