mirror of
https://github.com/appium/appium.git
synced 2026-05-02 16:30:57 -05:00
feat: robotframework ios and android test suites are added (#14608)
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user