phpunit-selenium
phpunit-selenium copied to clipboard
Selenium RC integration for PHPUnit
From the coder point of view it would be much easier if: 1. value() will replace current contents of element append() will to what value() currently does 2. there will...
I will be very helpful, if it was possible to get a screenshot on Errors also.
Hi guys, I want to encapsulate a method for finding elements with waitUntil() method, after reading samples here , I tried several times as following: Code1: ``` php public function...
When PHPUnit_Extensions_Selenium2TestCase::runTest tries to set the PHPUNIT_SELENIUM_TEST_ID cookie, phantomjs/ghostdriver throws an exception, because there's no open url yet. I can't open a url in setUp, because there's no session there...
Hi, I have noticed that while testing with _iWebdriver_, the function **keys()** fails giving BadMethodCallException: The command _http://host/session_id/**keys**_ is not recognized by the server. Here's a comparison how key strokes...
Hi, Anyone know how to create the detail error log and read-able? I see the format log .html, .txt etc.. those log only the global log and not detail error......
When you have an element with an id that begins with a numeric: ``` ... ``` And you try and locate the above element using: ``` $boxesSection = $this->byCssSelector('#3boxes'); ```...
First, install the Selenium Server: Download a distribution archive of Selenium Server. Unzip the distribution archive and copy selenium-server-standalone-2.9.0.jar (check the version suffix) to /usr/local/bin, for instance. Start the Selenium...
Hi, I have 2 questions below : 1. How can I assert the text in web page with PHPUnit_Extensions_Selenium2TestCase ? I found this code $this->assertElementContainsText() But I think that code...
Hi, Ok I tried to get the element byid, this is the code : ``` class Auth extends Core { protected $listUser; public function __construct(){ $listUser['admin_pass_a'] = 'admin'; $listUser['admin_pass_a'] =...