Steps
#It
An it step is a step that will be processed
Copied!
1->it('should go to page', function () use ($modulesCustomPage) {2 $modulesCustomPage->goToPage($modulesCustomPage);3 4 Expect::that($modulesCustomPage->getPageTitle())->contains($modulesCustomPage->pageTitle());5})
#Todo
A todo step is a step to complete.
Copied!
1->todo('To be done', function () {2})
#Skip
A skip step is a step to skip.
Copied!
1->skip('will be skipped', function () {2})