Questions tagged [appium-android]

An open-source test automation tool for use with native and hybrid mobile apps

Appium is an open source test automation tool used for automating native,web and hybrid mobile applications. It drives iOS and Android apps using the WebDriver JSON wire protocol.

As per Appium 1.6.0 release, Windows desktop application testing joins the functionality list.

It provided a very helpful functionality for locating the elements. This is provided by Appium Inspector.

Please read the documentation and tutorials.

For additional help, please use the following resources:

  • Discourse Discussion Group
  • Appium Chat
  • Documentation
1351 questions
6
votes
2 answers

Appium 6.1.0 TouchActions vs TouchAction

I was searching for the "right", or the "latest" way to create Tap/Swipe/Drag etc. events using the latest (at this point) Appium Java-client 6.1.0. I saw different documentations in the Appium site (Tap using TouchActions, Touch using TouchAction),…
Leon Proskurov
  • 135
  • 1
  • 14
6
votes
5 answers

Appium Java Client Version vs Selenium Version

Can any one please tell me how do I make sure which appium java-client jar version is compatible with which selenium jar version. I have tried a lot of different appium java-client versions and also selenium versions and I faced below issues…
Pankaj Devrani
  • 510
  • 1
  • 10
  • 28
5
votes
3 answers

Using selenium from within my app without any external server

From within my app I want to hit a website and than perform user action. Currently am using webview but I think webdriver will be easy to use and correct approach. Current code: WebView browser = (WebView)…
user93796
  • 18,749
  • 31
  • 94
  • 150
5
votes
8 answers

An unknown server-side error occurred while processing the command. Could not proxy command to remote server. Original error: Error: socket hang up

If I ran TestNG test class it displays error ------------ org.openqa.selenium.WebDriverException: An unknown server-side error occurred while processing the command. Original error: Could not proxy command to remote server. Original error: Error:…
Aditi
  • 121
  • 1
  • 1
  • 7
5
votes
1 answer

How can I connect appium to existing running application on android

I am writing a cross platform automation where I have a selenium desktop driver and I perform some action which launches my service on device and an alert is launched on android device and i want to accept the alert and then use both web driver and…
5
votes
5 answers

Appium : how to check device name using automation test cases in java

I am implementing automation test cases for one application. I wanted to generalized some test cases in order to run on each and every device based on some condition. So, in order to do that I have to get device name using some code. I am not able…
Kirti Parghi
  • 1,142
  • 3
  • 14
  • 31
5
votes
3 answers

How can I Turn on/off Accessibility through appium using javascript

I have this adb shell command for android and tried with the terminal and it's working perfectly. But not sure how to use this in a framework using appium command. // disable adb shell settings put secure enabled_accessibility_services…
5
votes
7 answers

How to enable/disable app permission using Appium?

My app need the multiple app permission. I need to check how my app behaves by allowing or denying the different permission. How can i enable/disable the app permission from the appium to create the multiple scenario? For example lets say my app…
Suban Dhyako
  • 2,436
  • 4
  • 16
  • 38
4
votes
3 answers

Automation testing framework for Jetpack compose

we have re-written couple of features in Jetpack Compose successfully. we have hit a roadblock where our QA says the existing automation script they have written does not work anymore for compose UI screens. Background abt the automation script: QA…
4
votes
5 answers

getting SecurtyException while running my test script using appium

i'm facing Security Exception while executing my Appium scripts Hi all, i'm new to appium and i'm in learning stage with appium tool. I created one script to start a basic test. i'm getting below updated error. I Connected my device through USB…
4
votes
1 answer

How to fix 'NoElementException' in Appium & C# for which I tried various solution?

I'm new to C# but have good experience with Appium. For the screen in question, there is an edit field 'Please enter your appcode'. Appium desktop is identifying the element with 'id' easily. After identification, I am trying to click and have to…
Deepak
  • 110
  • 2
  • 16
4
votes
3 answers

ReferenceError: $ is not defined (WebdriverIO)

I'm launching native apps with the help of WebdriverIO and mocha, but unable to communicate with the device, but able to launch the application but not interact with the element. android_app_test.js const webdriverio = require('webdriverio'); const…
4
votes
2 answers

Appium Timed out after 10000 milliseconds waiting for root AccessibilityNodeInfo

Getting the following appium error once in a while and not sure how to solve it. Any way to increase this timeout or help fix this issue? Your help is appreciated. selenium.common.exceptions.WebDriverException: Message: An unknown server-side error…
user2379867
4
votes
1 answer

Permission issue for appium chrome borwser

I am implementing an appium test on remote android driver, with chrome browser for loading urls. Some of the Urls are pdfs, and chrome asks to store those files. and appears that chrome doesnt have access to filesystem to store those files, which…
Anand Vaidya
  • 1,374
  • 11
  • 26
4
votes
1 answer

Error: Could not find a driver for automationName 'Appium' and platformName 'Android'

When I try to run my application using nodejs. I get above error into appium server test.js file var wd = require("wd"); var appDriver = wd.remote({ hostname: '127.0.0.1', port: 4723, }) var config = {}; config.android19Hybrid = { …
1
2
3
89 90