| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function isImageDisplayed(): bool |
||
| 21 | { |
||
| 22 | $imageElement = $this->getDocument()->find('css', '#media a img'); |
||
| 23 | if ($imageElement === null) { |
||
| 24 | return false; |
||
| 25 | } |
||
| 26 | $imageUrl = $imageElement->getAttribute('src'); |
||
| 27 | $this->getDriver()->visit($imageUrl); |
||
| 28 | $pageText = $this->getDocument()->getText(); |
||
| 29 | $this->getDriver()->back(); |
||
| 30 | |||
| 31 | return false === stripos($pageText, '404 Not Found'); |
||
| 32 | } |
||
| 33 | } |
||
| 34 |