From 1af60e606abc4e37afedb79faaacb867318a8267 Mon Sep 17 00:00:00 2001 From: Satellite QE <115476073+Satellite-QE@users.noreply.github.com> Date: Tue, 29 Oct 2024 03:23:41 -0400 Subject: [PATCH] update ansible variable override function (#1607) (#1610) --- 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):