View in #general on Slack
@Suri: quick question -> i have a _test.js
i have couple of scenarios and all of them need to have
I.amOnPage("/");
how can i define one
I.amOnPage("/");
and use it across all the scenarios
@thanh: Put it in the
Before(() => {
I.amOnPage("/");
})