feat: robotframework ios and android test suites are added (#14608)

This commit is contained in:
Serhat Bolsu
2020-07-29 04:22:30 +04:00
committed by GitHub
parent d7952a5110
commit a2950b7dc0
11 changed files with 238 additions and 0 deletions
@@ -0,0 +1,19 @@
*** Settings ***
Resource ../resources/resource.robot
Test Setup Open iOS Test App
Test Teardown Close Application
*** Test Cases ***
Should send keys to inputs
${text_field_el} get webelement TextField1
${value} get element attribute ${text_field_el} value
should be equal ${value} ${None}
input text ${text_field_el} Hello World!
${value2} get element attribute ${text_field_el} value
should be equal ${value2} Hello World!
Should click a button that opens an alert
click element show alert
${alert_el} get webelement accessibility_id=Cool title
${title} get element attribute ${alert_el} name
should be equal ${title} Cool title