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
2
votes
0 answers

How can I see the screenshots in Selendroid inspector?

I am trying to learn Selendroid but have hit a road block. When I run the sample test (in python). I get the following error in the server log: Jul 31, 2018 11:20:14 PM io.selendroid.standalone.server.handler.InspectorScreenshotHandler…
8oh8
  • 1,247
  • 5
  • 19
  • 35
2
votes
0 answers

WebDriver on Android device

my goal is to be able to drive a browser on my Android device without javascript injections (so no webviews + js) and automate it (scraping, posting forms, changing page, clicking buttons etc.). I'd rather not use JS because I'd like my automation…
nonsensei
  • 480
  • 4
  • 15
2
votes
2 answers

Invalid or unsupported command "list avds", the "android" command is deprecated

C:\Guru99>java -jar selendroid-standalone-0.11.0-with-dependencies.jar ################# Selendroid ################# ################# Configuration in use ################# io.selendroid.SelendroidConfiguration@13221655[ port=4444 …
shivam
  • 249
  • 1
  • 5
  • 18
2
votes
0 answers

Selendroid, command android no longer available

I'm starting with Selendroid. I followed the user guide, which is in the official site and I've had troubles after this command: java -jar selendroid-standalone-0.17.0-with-dependencies.jar -app selendroid-test-app-0.17.0.apk I obtain this…
Fabian
  • 21
  • 1
2
votes
1 answer

Selendroid Android testing

I am new to Mobile automation. Would like to know if we can test Web based mobile application using Selendroid?Also is Android studio and apk for AUT is necessary? Thanks in advance
user4884895
  • 149
  • 2
  • 12
2
votes
1 answer

Appium Mobile Web test automation Android for Twitter

I was making a test automator using Appium on a selenium server for my Android device. The automator launches the Twitter's webapp does a login and posts a Tweet. However, the part I'm having difficulty with is that the automator doesn't use the…
Addy
  • 348
  • 2
  • 5
  • 17
2
votes
2 answers

Selecting a UI element not on the screen of native android app using Appium, Selenium web driver, Node js, Mocha etc

I'm testing a native Android app and need to click on a button that is off the bottom of the screen. I've seen tons of examples of this using Java and Javascript but I'm using Node.js and nothing seems to work. I'm pretty new to this stuff and…
sluggo
  • 46
  • 5
2
votes
0 answers

Selendroid Inspector device Screen not appear

When i connect my hybrid app using selendroid server, Inspector tool not displaying device's screen(Broken Image/Empty image appear). And also nothing is appear on Java/HTML source tabs. example Screen here I use followings Command to Start the…
Navish
  • 21
  • 3
2
votes
1 answer

Locating Child element of the web element from a list of elements for android application using selenium xpath

I am locating element for android application and have one query. I am storing list of web elements as below List trackingsList = tracking.getTrackingElements(); getTrackingElements() is function that is returning list of WebElements…
2
votes
3 answers

Dismissing Android 6.0 permission required dialog in Selendroid automation test

I have searched for many times among Google / StackOverflow to seek an answer. Originally (Before Android 6.0) my automation codes runs smoothly, but everything now is blocked by permission required dialog. My App need to save data into SD Card and…
2
votes
0 answers

Can't Click on Image Using Selendroid Driver on Android 4.2.2

I am browsing the url: http://serve.qa.vdopia.com/adserver/html5/inwapads/?sleepAfter=0;adFormat=banner;ak=e833a81e238ce8dc876a5f0a283953c2;version=1.0;cb=[timestamp];output=html. I am trying to click the image located by xpath=//a/img[1], but I…
Pankaj Kumar Katiyar
  • 1,474
  • 1
  • 20
  • 36
2
votes
2 answers

the requested application under test is not configured in selendroid server

@BeforeSuite public void setUp() throws Exception { //Start selendroid-standalone during test SelendroidConfiguration config = new SelendroidConfiguration(); // Add the selendroid-test-app to the standalone server …
2
votes
4 answers

How can i increase session timeout (which is 30 minutes by default)

I want to handle server timeout in programmatically. My codes goes like this. SelendroidConfiguration config = new SelendroidConfiguration(); config.addSupportedApp("apk/test.apk"); selendroidServer = new SelendroidLauncher(config); URL url =…
Biswatma
  • 107
  • 4
  • 17
2
votes
2 answers

Android emulator not releasing the lock

I am facing a problem when working with Android emulators, and more specifically, when working with Selendroid. When I start Android emulator through ./android avd (selecting an AVD and clicking into start), several lock files are created into…
varyvol
  • 21
  • 2
2
votes
3 answers

Appium sample calculator test fails with ERROR: no dump file specified

I'm trying to run a sample test for a native Calculator app on a real Android 4.1.2 device. I'm using Appium(run as admin) on Windows, Selendroid and Eclipse. My sample code is @BeforeClass public void setUp() throws…
Nick Slavsky
  • 1,300
  • 3
  • 19
  • 39
1
2
3
13 14