Reputation: 612
Was Selenium support dropped between phpunit 4 & 5?
Only asking because although the docs for 4.8 & 5.0 seem to suggest that Selenium is no longer supported, I can't find anything online that formally states as much.
The only part that we were using was
use PHPUnit_Extensions_Selenium2TestCase_Keys as Keys;
How do we access e.g. Keys::TAB
in phpunit5?
Upvotes: 1
Views: 215
Reputation: 3561
The PHPUnit 5 release announcement states that "The configuration file settings related to PHPUnit_Selenium [have been removed]"
Upvotes: 1