Skip to content

Commit

Permalink
Cannot handle pop up window #42
Browse files Browse the repository at this point in the history
Extend tests to verify bugfix
  • Loading branch information
Nepitwin committed Jan 29, 2022
1 parent a2ac8a0 commit 728e869
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion atests/Element.robot
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,22 @@ Is Element Not Enabled
${IS_ENABLED} Is Element Enabled ${XPATH_DISABLED_ELEMENT}
Should Be Equal ${IS_ENABLED} ${FALSE}
Is Element Enabled If Not Exists
${IS_ENABLED} Is Element Enabled ${XPATH_NOT_EXISTS}
Should Be Equal ${IS_ENABLED} ${FALSE}
Is Element Visible
${IS_VISIBLE} Is Element Visible ${XPATH_ELEMENT}
Should Be True ${IS_VISIBLE}
Is Element Offscreen And Not Visible
Is Element Visible When Element Is Offscreen And Not Visible
${IS_VISIBLE} Is Element Visible ${XPATH_OFFSCREEN_ELEMENT}
Should Be Equal ${IS_VISIBLE} ${False}
Is Element Visible When Element Not Exists
${IS_VISIBLE} Is Element Visible ${XPATH_NOT_EXISTS}
Should Be Equal ${IS_VISIBLE} ${False}
Element Should Be Visible
Element Should Be Visible ${XPATH_ELEMENT}
Expand Down

0 comments on commit 728e869

Please sign in to comment.