MinkPhantomJSDriver
MinkPhantomJSDriver copied to clipboard
PhantomJS driver for Mink Framework
http://mink.behat.org/en/latest/guides/drivers.html At least get mentioned as an additional driver. Also when reading that MinkPhantomJSDriver supports > ALL of the features defined in Mink DriverInterface. maximizeWindow is the only one not...
Hi, Thanks for you very cool project, I am trying to use it to replace the selenium2 approach with ghostdriver which just randomly hangs during automated testing ... In my...
I'm using the following code, to wait for page loads e.g: after clicking links: ``` protected function waitForPageLoad(){ $this->session->wait(10000, '(document.readyState === "loading")'); $this->session->wait(10000, '(document.readyState === "complete")'); } ``` but it...
getText as per definition should not handle text visibility due to CSS so in order for driver users to actually benefit from using a headless browser we need to implement...
The `TraversableElement::fillField()`( which uses `Driver::setValue()` eventually) function should also work for **_select**_ type fields according to the PHPDocs. However it doesn't but using `TraversableElement::selectFieldOption()` (which uses `Driver::selectOption()` in turn) works...