We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bbdbaf commit 8d4e1fbCopy full SHA for 8d4e1fb
1 file changed
Tests/Acceptance/Support/BackendTester.php
@@ -121,7 +121,12 @@ public function selectGermanInLanguageMenu(): void
121
} else {
122
$this->waitForText('english');
123
//$this->click('english');
124
- $this->click('.module-docheader-bar-column button');
+ if ((new Typo3Version())->getBranch() === '14.1') {
125
+ $this->click('.module-docheader-bar-column button');
126
+ } else {
127
+ $this->click('.module-docheader-column button.dropdown-toggle');
128
+ }
129
+
130
$this->waitForText('german');
131
$this->click('german');
132
}
0 commit comments