storeIsVisible
storeIsVisible
open
https://sideex.github.io/example/webpage_under_test/button-to-change-color.html
COMMENT
Store the visibility status of the button into a variable
storeIsVisible
id=Button
//button[1]
//button[@id='=Button']
css=#\=Button
visible_var
COMMENT
Set the CSS of the button to "hidden"
setCSS
id=Button
//button[1]
//button[@id='=Button']
css=#\=Button
visibility: hidden;
COMMENT
Since the button is hidden, "false" will be stored
storeIsVisible
id=Button
//button[1]
//button[@id='=Button']
css=#\=Button
hidden_var
COMMENT
Output the results on the Log panel
echo
${visible_var}
echo
${hidden_var}