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

Selecting actionbarmenu item Selendroid

I'm learning selendroid and I'd like to select a option from a action bar menu. I'm able to open the menu doing driver.findElement(By.xpath("//ActionMenuView")).click(); But I'm not able to find how to click the item. I think the…
Antonio Diaz
  • 133
  • 1
  • 1
  • 14
0
votes
1 answer

How to configure selendroid and test mobile application

I was trying to implement Selendroid in my pc. I do as follows 1.Installed JDK 2.Installed eclipse 3.Installed SDk 4.Created Environmental Variables 5.Created a Java Application in eclipse 6.Mapped Selendroid Standalone jar,Selendroid Standalone…
Anand K G
  • 99
  • 1
  • 1
  • 10
0
votes
1 answer

Not able to launch Online Apps (facebook etc.) on AVD emulator

I am trying to launch online apps but not able to launch them on the emulator. While offline apps (Selendroid test app, Offline Dictionaries etc.) are able to launch on the AVD emulator. Please let me know What could be the solution.
0
votes
2 answers

[Selendroid][Java-Client]: Running scripts on specific device/emulator

I have configured two android device in my machine. One is real android device (ZX1D63R33N)[Moto G Second Gen - With 5.0.2 - API 21] and GenyMotion android emulator [With 5.1.1 with API 22]. Script get executed in both device successfully. But i'm…
Ramkumar
  • 116
  • 1
  • 11
0
votes
1 answer

Selendroid jump start

I just switched from HtmlUnit to Selendroid, because HtmlUnit doesn't work under Android. But I really don't understand selenium/selendroid. So I got this code: WebDriver driver = new EdgeDriver(); driver.get("www.google.com"); And this Exception,…
Muco
  • 53
  • 11
0
votes
1 answer

Infinite waiting when swiping on a seekbar by running TouchActions-Flick of Selendroid

I have searched Stackoverflow as well as Google Selendroid forum but didn't find anything useful. Class of the seekbar: android.view.View My scenario: I wanna automate swipe gesture on the seekbar of my app. But when I execute perform() after set…
holy934
  • 57
  • 9
0
votes
2 answers

I am facing this exception org.openqa.selenium.remote.SessionNotFoundException: while using appium on android device

org.openqa.selenium.remote.SessionNotFoundException - this exception occurs when I try to debug my code, in between (may be because of delay) the app goes at the background and I start getting this exception. I am not sure if it is because of…
Pankaj Kumar Katiyar
  • 1,474
  • 1
  • 20
  • 36
0
votes
1 answer

Selendroid not connecting to ... something?

So I want to run some Selendroid tests. I run java -jar selendroid-standalone-0.17.0-with-dependencies.jar -aut app-debug.apk Selendroid says: selendroid-standalone server has been started on port: 4444 Next I run this Python program: import…
fweigl
  • 21,278
  • 20
  • 114
  • 205
0
votes
1 answer

Selendroid Python ActivityNotFound Exception

I am learning how to use selendroid to automate mobile apps in Python. I followed http://selendroid.io/mobileWeb.html and was successful in getting the mobile web simulation to work. But I am having problems getting the native app example to work…
Codious-JR
  • 1,658
  • 3
  • 26
  • 48
0
votes
2 answers

Steps to run web application automation using Appium

I am having a lot of trouble trying to get my automated tests to run through a physical Android device using appium. I am not so good with using cmd and configuring and there are very little tutorials on setting it up to run web apps. Heres what i…
Tree55Topz
  • 1,102
  • 4
  • 20
  • 51
0
votes
2 answers

Not able to initiate AndroidDriver

The code is : WebDriver driver; driver = new AndroidDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities); Error I am getting is : The type org.openqa.selenium.remote.service.DriverService$Builder cannot be resolved. It…
Sujay
  • 139
  • 1
  • 9
0
votes
2 answers

Selendroid in Android Studio

I'm using Android studio to build a projects My Question is there any way to setup Selendroid in Android studio? Please Teach me step by step. I already added this to my Gradle In my Gradle Project: dependencies { compile fileTree(dir:…
Jude Bautista
  • 160
  • 1
  • 16
0
votes
0 answers

Getting data from dynamic loading Linear Layout

I am having a many Linear Layout that are same in layout. Here is hierarchy. Every entry is like this: that is like LinearLayout {product_list} [0,202][480,455] Now as I scroll down, it loads dynamically and goes till all results end. So my first…
GitCoder
  • 121
  • 2
  • 13
0
votes
1 answer

My Android device is not listed while started selendroid server

While starting selendroid server, my physical device could not be loaded. But my virtual device was loaded. I tried reconnecting my device and restarting 'adb' server. but it didn't help. When i use this command, it lists my physical device, not my…
Hideandseek
  • 271
  • 1
  • 4
  • 17
0
votes
1 answer

Does Selendroid run on android?

What I want to do is with my android phone open a web page and programmatically press buttons and insert data. Just like automated Mobile web testing My problem is that I tried to add Selendroid - client / selendroid driver jars but it doesn't…
user3698465
  • 185
  • 1
  • 10