I am automating a web page using Robot Framework. The page has unusual text fields that receive automatic input (not placeholder values) in case Enter is hit for invalid values.
Here is the text field:
<div class="bound_value">
<input id="ember475" size="5" type="text" class="ember-view ember-text-field">
<input id="ember476" type="checkbox" class="ember-view ember-checkbox">
</div>
I have tried handling with Input Text as well as Press Key. I am a beginner-programmer rather, so please forgive me my wording further on.
With Input Text: the behavior was as if I clicked on the field, cleared the content, hit Enter and then inputted the value.
With Press Key the behavior was as if I clicked on the field add just typed in input adding to what I was already contained.
Clear Element Text+Press Key worked the same way as Input Text.
I need a way to click on the text field, to remove the content, to not hit enter, to type in text, then hit enter.
How can I do this using RIDE Custom Libraries?
Thank you in advance for your effort.