Skip to content

Releases: Codeception/module-webdriver

3.1.3

12 Sep 04:57

Choose a tag to compare

3.1.2

27 Jul 09:10

Choose a tag to compare

  • Fix type error in PHP 8.1 when converting ms to sec #103

2.0.3

27 Jul 09:08
e0aa26c

Choose a tag to compare

  • Fix type error in PHP 8.1 when converting ms to sec #103

3.1.1

09 Apr 08:33

Choose a tag to compare

  • Removed dontSeeCheckboxIsChecked parameter type declaration to permit arrays

3.1.0

11 Mar 17:08
92141f1

Choose a tag to compare

  • Moved WebDriver constraints from codeception/codeception
  • Moved code shared with lib-innerbrowser to codeception/lib-web
  • Improved code style

3.0.0

20 Feb 16:31
3d81a96

Choose a tag to compare

  • Codeception 5 support

2.0.2

23 Jan 12:00
57e2d83

Choose a tag to compare

  • Fixed TypeError in grabTextFrom when array is used as parameter by @olexp
  • Changed assertEquals to assertSame is many methods by @TavoNiievez

2.0.1

29 Dec 16:57
dbfb262

Choose a tag to compare

2.0.0

07 Dec 14:34
085c554

Choose a tag to compare

What's Changed

Full Changelog: 1.4.0...2.0.0

Added new methods

02 Sep 12:08

Choose a tag to compare

  • 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);