Inputs
Interactions with input
and textarea
tags.
Reading the element
Getting the right element class for the xpath
| my_input = web.element('//*[id="myInput"]')
type(my_input)
|
Outputfastrpa.core.elements.InputElement
| my_input = web.input('//*[id="myInput"]')
type(my_input)
|
Outputfastrpa.core.elements.InputElement
Reference
Clear the element value
| my_input.fill('my input')
|
| my_input.fill_slowly('my input')
# Fill the input box, key by key, waiting 3 seconds between every key send
my_input.fill_slowly('my input', 3)
|