| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function goToAccountPage() |
||
| 40 | { |
||
| 41 | $myAccountSearch = WebDriverBy::id('tdb3'); |
||
| 42 | $condition = WebDriverExpectedCondition::visibilityOfElementLocated($myAccountSearch); |
||
| 43 | $this->waitUntil($condition); |
||
| 44 | $myAccountElement = $this->webDriver->findElement($myAccountSearch); |
||
| 45 | $this->webDriver->executeScript("arguments[0].scrollIntoView(true);", array($myAccountElement)); |
||
| 46 | $myAccountElement->click(); |
||
| 47 | } |
||
| 62 |