Skip to content

Commit

Permalink
ods_ci: tests: Resources/Common: increase the timeouts for perf/scale…
Browse files Browse the repository at this point in the history
… testing
  • Loading branch information
kpouget committed Sep 25, 2024
1 parent fd37cf9 commit 0c81eb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ods_ci/tests/Resources/Common.robot
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ Is Generic Modal Displayed
[Documentation] Checks if a modal window is displayed on the page.
... It assumes the html "id" contains "pf-modal-", but it can be
... piloted with ${id} and ${partial_match} arguments
[Arguments] ${id}=pf-modal- ${partial_match}=${TRUE} ${timeout}=10s
[Arguments] ${id}=pf-modal- ${partial_match}=${TRUE} ${timeout}=60s
IF ${partial_match} == ${TRUE}
${is_displayed}= Run Keyword And Return Status
... Page Should Contain Element xpath=//*[contains(@id,"${id}")]
Expand All @@ -371,7 +371,7 @@ Wait Until Generic Modal Disappears
[Documentation] Waits until a modal window disappears from the page.
... It assumes the html "id" contains "pf-modal-", but it can be
... piloted with ${id} and ${partial_match} arguments
[Arguments] ${id}=pf-modal- ${partial_match}=${TRUE} ${timeout}=10s
[Arguments] ${id}=pf-modal- ${partial_match}=${TRUE} ${timeout}=60s
${is_modal}= Is Generic Modal Displayed
IF ${is_modal} == ${TRUE}
IF ${partial_match} == ${TRUE}
Expand All @@ -387,7 +387,7 @@ Wait Until Generic Modal Appears
[Documentation] Waits until a modal window appears on the page.
... It assumes the html "id" contains "pf-modal-", but it can be
... piloted with ${id} and ${partial_match} arguments
[Arguments] ${id}=pf-modal- ${partial_match}=${TRUE} ${timeout}=10s
[Arguments] ${id}=pf-modal- ${partial_match}=${TRUE} ${timeout}=60s
${is_modal}= Is Generic Modal Displayed
IF ${is_modal} == ${FALSE}
IF ${partial_match} == ${TRUE}
Expand Down

0 comments on commit 0c81eb1

Please sign in to comment.