Login
Remember
Register
Ask a Question
Mention what are the basic requirement for writing Appium tests?
0
votes
asked
Apr 26, 2021
in
Appium
by
rajeshsharma
Mention what are the basic requirement for writing Appium tests?
#appium-test
appium-requirement
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Apr 26, 2021
by
rajeshsharma
For writing Appium tests you require,
Driver Client: Appium drives mobile applications as though it were a user. Using a client library you write your Appium tests which wrap your test steps and sends to the Appium server over HTTP.
Appium Session: You have to first initialize a session, as such Appium test takes place in the session. Once the Automation is done for one session, it can be ended and wait for another session
Desired Capabilities: To initialize an Appium session you need to define certain parameters known as "desired capabilities" like PlatformName, PlatformVersion, Device Name and so on. It specifies the kind of automation one requires from the Appium server.
Driver Commands: You can write your test steps using a large and expressive vocabulary of commands.
...