Skip to content

Added new methods

Compare
Choose a tag to compare
@DavertMik DavertMik released this 02 Sep 12:08
· 75 commits to master since this release
  • 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);