From b68325c18476f3ca39a8f6cbd422fad04a11719f Mon Sep 17 00:00:00 2001 From: amolpati30 <151733635+amolpati30@users.noreply.github.com> Date: Tue, 29 Oct 2024 12:34:40 +0530 Subject: [PATCH] update ansible variable override function (#1607) (cherry picked from commit e4dd68ac1bdc89107785e8f2a2ffbefc6d626bab) --- airgun/views/ansible_variable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):