Can I set value in a text field using Appium Ruby-Cucumber?
Hi Brett,
You can add “send_keys” on your script to set a text value for your app test:
$driver.find_element(:id, "Text").send_keys "Hello World"
Can I set value in a text field using Appium Ruby-Cucumber?
Hi Brett,
You can add “send_keys” on your script to set a text value for your app test:
$driver.find_element(:id, "Text").send_keys "Hello World"