Control your iOS and Android devices with natural language
Make sure you have Appium installed first.
brew install appium
npm i -g appium
Now install qaml
pip install qaml
import qaml
q = qaml.Client(api_key=<API_KEY>)
q.execute("open safari")
q.execute("scroll up")
q.execute("tap the address bar")
# Or use an existing appium driver
q = qaml.Client(driver=appium_driver, api_key=<API_KEY>)
q.execute("type camelqa.com")
q.execute("tap go")
export QAML_API_KEY=<API_KEY>
qaml
This will start a repl in your shell. You can issue natural language commands to get a feel for qaml.
qaml tap the send button
For more details visit our docs
Join our community on Discord for live discussions and support!