| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 20 | public function hasAttributeInLocale(string $attribute, string $locale, string $value): bool | ||
| 21 |     { | ||
| 22 |         $values = $this->getDocument()->find('css', sprintf('#attributes .tab.segment[data-tab="%s"]', $locale)); | ||
| 23 | |||
| 24 |         $attributeValue = $values->find('css', sprintf('tr:contains("%s") td:nth-child(2)', $attribute))->getText(); | ||
| 25 | |||
| 26 | return $attributeValue === $value; | ||
| 27 | } | ||
| 28 | |||
| 37 |