| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function ensureSearchBoxContains( |
||
| 30 | string $formAction, |
||
| 31 | string $inputName, |
||
| 32 | string $typeInput |
||
| 33 | ): void |
||
| 34 | { |
||
| 35 | $I = $this->tester; |
||
| 36 | $formActionXpath = "//form[contains(@action,'" . $formAction . "')]"; |
||
| 37 | $input = $formActionXpath . "//". $typeInput . "[contains(@name, '$inputName')]"; |
||
| 38 | |||
| 39 | $I->seeInCurrentUrl('/dashboard/dashboard'); |
||
| 40 | $I->seeElement($formAction); |
||
| 41 | $I->seeElement($input); |
||
| 42 | } |
||
| 43 | } |
||
| 44 |