From 7a44633c69ab39005d5bdfbdea8ef848172fcf06 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 4 May 2018 14:44:44 -0300 Subject: [PATCH] Bug 19185: Use submit button if only one exists on the page During the installation process we do not have fieldset.action, in order to not complicate changes we are just going to use the submit button if only one exists. --- t/lib/Selenium.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/t/lib/Selenium.pm b/t/lib/Selenium.pm index 1ddab54e59..e23d383ca5 100644 --- a/t/lib/Selenium.pm +++ b/t/lib/Selenium.pm @@ -88,6 +88,13 @@ sub fill_form { sub submit_form { my ( $self ) = @_; + # If there is only one submit element on the page we use it + my @submit_elements = $self->driver->find_elements('//input[@type="submit"]'); + if ( @submit_elements == 1 ) { + $self->click_when_visible('//input[@type="submit"]'); + return; + } + my $default_submit_selector = '//fieldset[@class="action"]/input[@type="submit"]'; $self->click_when_visible( $default_submit_selector ); } -- 2.11.0