We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d8eff7 commit 5ad899bCopy full SHA for 5ad899b
src/lib/Behat/Page/ContentUpdateItemPage.php
@@ -243,6 +243,10 @@ public function switchToFieldGroup(string $tabName): void
243
for ($attempt = 0; $attempt < 3; ++$attempt) {
244
try {
245
$this->getHTMLPage()->setTimeout(5)
246
+ ->findAll($this->getLocator('navigationTabs'))
247
+ ->getByCriterion(new ElementTextCriterion($tabName))
248
+ ->mouseOver();
249
+ $this->getHTMLPage()->setTimeout(3)
250
->findAll($this->getLocator('navigationTabs'))
251
->getByCriterion(new ElementTextCriterion($tabName))
252
->click();
0 commit comments