1 | <?php |
||
7 | class PageContext extends RawPageContext |
||
8 | { |
||
9 | /** |
||
10 | * @Given /^I am on the (.*) page$/ |
||
11 | * @Given /^I am on the (.*) page with:?$/ |
||
12 | * @When /^I go to the (.*) page$/ |
||
13 | * @When /^I go to the (.*) page with:?$/ |
||
14 | */ |
||
15 | public function iAmOnThePageWith($page, TableNode $table = null) |
||
19 | |||
20 | /** |
||
21 | * @Then /^I should be on the (.*) page$/ |
||
22 | * @Then /^I should be on the (.*) page with:?$/ |
||
23 | */ |
||
24 | public function iShouldBeOnThePageWith($page, TableNode $table = null) |
||
28 | } |
||
29 |