diff --git a/airgun/entities/ansible_variable.py b/airgun/entities/ansible_variable.py index 04559b998..11cdcf160 100644 --- a/airgun/entities/ansible_variable.py +++ b/airgun/entities/ansible_variable.py @@ -1,4 +1,5 @@ from navmazing import NavigateToSibling +from wait_for import wait_for from airgun.entities.base import BaseEntity from airgun.navigation import NavigateStep, navigator diff --git a/airgun/views/ansible_variable.py b/airgun/views/ansible_variable.py index 7a24d8f3e..2aef315c8 100644 --- a/airgun/views/ansible_variable.py +++ b/airgun/views/ansible_variable.py @@ -32,7 +32,7 @@ class MatcherActions(View): text input field.""" matcher_key = Select(".//select") - matcher_value = TextInput(locator=".//input[@class='matcher_value']") + matcher_value = TextInput(locator=".//div[@class='matcher-group']/input") class NewAnsibleVariableView(BaseLoggedInView):