Questions tagged [selendroid]

Selendroid is a test automation framework for native or hybrid Android apps and the mobile web.

Selendroid is a test automation framework which drives off the UI of Android native and hybrid applications (apps) and the mobile web. Tests are written using the Selenium 2 client API!

Selendroid can be used on emulators and real devices and can be integrated as a node into the Selenium Grid for scaling and parallel testing.

210 questions
1
vote
1 answer

Can I run my appium code against iOS Real device from "windows" machine

Very simple straight forward question , Can I run my appium tests against any ios real device from my windows machine ? All the R n D done , i am unable to reach a solution. please help. An article would be of great help. Thanks.
Arpan Buch
  • 1,380
  • 5
  • 19
  • 41
1
vote
1 answer

Selendroid ANDROID_HOME path issue in MAC machine eclipse IDE

I'm using MAC maverics OS. Installed Android sdk through android studio and set Android_home and path through bash profile. when I type following command , I can see the home path in the terminal $ echo…
Balaji R
  • 31
  • 5
1
vote
1 answer

How to reslove instrumentation error in selendroid?

I have given following coding to start android device.While running,it points the android device and it creates the Android driver App in android device,after that it throws the following error message. WebDriver driver = new…
selvi
  • 1,271
  • 2
  • 21
  • 41
1
vote
0 answers

How to resolve the selendroid server startup error?

I have followed the steps from this link http://selendroid.io/setup.html to launch the selendroid server.But I am getting the following error message,when I give this following command. java -jar selendroid-standalone-0.13.0-with-dependencies.jar…
selvi
  • 1,271
  • 2
  • 21
  • 41
1
vote
1 answer

SelendroidException: No android virtual devices were found

I am trying to setup Selendroid in my system. I have set up ANDROID_HOME,JAVA_HOME and installed android virtual device. C:\Users\sai>echo %ANDROID_HOME% C:\Android\android-sdk C:\Users\sai>echo…
Sai Upadhyayula
  • 2,404
  • 3
  • 23
  • 35
1
vote
1 answer

Selendroid scroll and flick dont work

I want to scroll up a spinner while testing my app using Selendroid. I have tried to use the .scroll and .flick methods. While the .scroll works it doesn't update the content of the spinner and the .flick method either it doesn't do anything or the…
user2983190
1
vote
1 answer

How to run test with both selenium & selendroid

I am new to mobile app automation testing & have requirement like connect a device with server/console & remotely control the connected device from web. How do I achieve this one. Any suggestions? I tried selendroid for native apps but I don't know…
saravana
  • 544
  • 1
  • 7
  • 26
1
vote
1 answer

Problems with set up with the Test automation framework Selendroid

I have problems with setting up the Selendroid server. When i run the command java -jar selendroid-standalone-0.11.0-with-dependencies.jar -app selendroid-test-app-0.11.0.apk I get the following errors: C:\Users\mawal2\Downloads>java -jar…
user1418385
  • 73
  • 1
  • 6
1
vote
1 answer

How to use selendroid with appium

I have a java maven project which runs a test of a native app in a real device using appium. I am trying to use selendroid with appium. I set the capability automationName as selendroid and set the selendroid port as 8080 in appium. My app is…
Tony
  • 117
  • 3
  • 13
1
vote
0 answers

Selendroid - What is the best way to handle native callbacks?

I'm using Selenium and Selendroid in order to test my hybrid application. My application contains a native part and WebView. In the WebView I perform ajax calls, listening to async events (using PostMessage). My problem is: I want to connect my…
galvan
  • 7,400
  • 7
  • 38
  • 55
1
vote
2 answers

How to add logs before WebDriverWait gets time-out

I use selendroid in order to test an hybrid application. I have my own logger which logs and also use WebDriverWait to wait for specific behavior. My question is how can I use my logger before WebDriverWait is failed and throws timeoutException?
galvan
  • 7,400
  • 7
  • 38
  • 55
1
vote
1 answer

Stop adb screenrecord from java

I'm using Selendroid in order to test my app. At the beginning of each test I run adb shell screenrecord with the following function: public static Process startScreenRecord(String fileName) throws IOException{ ProcessBuilder builder = new…
galvan
  • 7,400
  • 7
  • 38
  • 55
1
vote
0 answers

How to get a response from the server after changing the selendroid server default port?

I'm new to Selendroid and iv been trying to test an application by following standard instructions. When the default port was 4444, test failed indicating that the server failed to respond. When I checked connection statuses, 4444 port had…
1
vote
1 answer

Mobile gestures in Selenium / Browserstack with Node

I'm using Mocha to run javascript-based Selenium tests against a mobile website, through Browserstack. My tests work for the trivial cases (find this element, click on it, expect to then find an element with this text). However, I've now reached a…
S McCrohan
  • 6,663
  • 1
  • 30
  • 39
1
vote
2 answers

How to write test case using Appium in C#?

I want to use Appium to make automated testing for my Android app. I downloaded the Appium for Windows and could run my app on device from within appium.exe. Now I want to write test cases in C# which make use of selendroid integrated in Appium. I…
Tejas Sutar
  • 747
  • 2
  • 11
  • 33