summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/acceptance/features/bootstrap/AppSettingsContext.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/acceptance/features/bootstrap/AppSettingsContext.php b/tests/acceptance/features/bootstrap/AppSettingsContext.php
index eda9fe200d0..c9ff57f376c 100644
--- a/tests/acceptance/features/bootstrap/AppSettingsContext.php
+++ b/tests/acceptance/features/bootstrap/AppSettingsContext.php
@@ -81,14 +81,7 @@ class AppSettingsContext implements Context, ActorAwareInterface {
* @Given I toggle the :id checkbox in the settings
*/
public function iToggleTheCheckboxInTheSettingsTo($id) {
- $locator = self::CheckboxInTheSettings($id);
-
- // If locator is not visible, fallback to label
- if (!$this->actor->find(self::CheckboxInTheSettings($id), 10)->isVisible()) {
- $locator = self::checkboxLabelInTheSettings($id);
- }
-
- $this->actor->find($locator, 10)->click();
+ $this->actor->find(self::checkboxLabelInTheSettings($id), 10)->click();
}
/**