Rob G
Rob G

Reputation: 612

Selenium support in phpunit 5

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

Answers (1)

jeromegamez
jeromegamez

Reputation: 3561

The PHPUnit 5 release announcement states that "The configuration file settings related to PHPUnit_Selenium [have been removed]"

https://github.com/sebastianbergmann/phpunit/wiki/Release-Announcement-for-PHPUnit-5.0.0#removal-of-deprecated-functionality

Upvotes: 1

Related Questions