Skip to content

Commit

Permalink
Space error
Browse files Browse the repository at this point in the history
  • Loading branch information
maximenoel8 committed Oct 9, 2024
1 parent 0998377 commit babb6a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsuite/features/step_definitions/navigation_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@

Then(/^I should not see a warning nor an error sign$/) do
raise ScriptError, 'No product synchronized' if page.has_no_xpath?('//*[contains(@class, \'fa-check-circle\')]')
raise ScriptError, 'At least one product is not fully synchronized' if page.has_ xpath?('//*[contains(@class, \'fa-spinner\')]')
raise ScriptError, 'At least one product is not fully synchronized' if page.has_xpath?('//*[contains(@class, \'fa-spinner\')]')
raise ScriptError, 'Warning detected' if page.has_xpath?('//*[contains(@class, \'fa-exclamation-triangle\')]')
raise ScriptError, 'Error detected' if page.has_xpath?('//*[contains(@class, \'fa-exclamation-circle\')]')
end
Expand Down

0 comments on commit babb6a2

Please sign in to comment.