--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at https://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.
checkValuesDisabledField
[Arguments] ${Id_to_check} ${expected_value}
${tempVariable}= Execute Javascript return document.getElementById("${Id_to_check}").value
Should Be Equal ${expected_value} ${tempVariable}
checkValuesDisabledField2
[Arguments] ${Id_to_check} ${expected_value}
${tempVariable}= Get Value ${Id_to_check}
Should Be Equal ${expected_value} ${tempVariable}
checkValuesDisabledField3
[Arguments] ${Id_to_check} ${expected_value}
Textfield Value Should Be ${Id_to_check} ${expected_value}