Releases: Codeception/module-webdriver
Releases · Codeception/module-webdriver
2.0.3
3.1.1
- Removed dontSeeCheckboxIsChecked parameter type declaration to permit arrays
3.1.0
- Moved WebDriver constraints from codeception/codeception
- Moved code shared with lib-innerbrowser to codeception/lib-web
- Improved code style
3.0.0
- Codeception 5 support
2.0.2
- Fixed TypeError in
grabTextFrom
when array is used as parameter by @olexp - Changed
assertEquals
toassertSame
is many methods by @TavoNiievez
2.0.1
- Respect
performOn
withfillField
#80 by @mbrodala submitForm
considers only elements havingname
attribute #83 by @dahaupt- Fixed type error in
wait
method #85 by @marc-mabe - Fixed types in method signatures and docblocks #88 by @Naktibalda
2.0.0
What's Changed
- PHP 7.4 or higher is required.
- Updated code base to PHP 7.4 by @TavoNiievez in #82
- Fixed type incompatibility in Webdriver by @grossmannmartin in #78
Full Changelog: 1.4.0...2.0.0
Added new methods
- Added
type
method which types in characters into an active input.
$I->type('Hello world');
You can emulate user input by setting a delay between key types:
$I->type('Hello world', 0.1);
- Added
seeNumberOfTabs
assertion to check how many tabs are opened at this moment:
$I->seeNumberOfTabs(2);
Add new option webdriver_proxy
Add new option webdriver_proxy to tunnel requests to the remote WebDriver server
Documentation update
1.2.2 added more options