Releases: Codeception/module-webdriver
Releases · Codeception/module-webdriver
3.1.3
- Fixed negative tab offset crashes by @webmaster777 in #108
- Documentation updates by @luke- and @salmanlt
3.1.2
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
grabTextFromwhen array is used as parameter by @olexp - Changed
assertEqualstoassertSameis many methods by @TavoNiievez
2.0.1
- Respect
performOnwithfillField#80 by @mbrodala submitFormconsiders only elements havingnameattribute #83 by @dahaupt- Fixed type error in
waitmethod #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
typemethod 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
seeNumberOfTabsassertion to check how many tabs are opened at this moment:
$I->seeNumberOfTabs(2);