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