| 1 | <?php |
||
| 23 | class CvContext implements Context |
||
| 24 | { |
||
| 25 | use CommonContextTrait; |
||
| 26 | |||
| 27 | |||
| 28 | /** |
||
| 29 | * @Given I go to manage my resume page |
||
| 30 | */ |
||
| 31 | public function iGoToManageResumePage() |
||
| 32 | { |
||
| 33 | $url = $this->buildUrl('lang/my-cv'); |
||
| 34 | $this->visit($url); |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @When I click edit on my personal information |
||
| 39 | */ |
||
| 40 | public function iClickEditOnPersonalInformations() |
||
| 41 | { |
||
| 42 | $this->summaryFormContext->iClickEditOnForm('resumePersonalInformations'); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |