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