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

Selendroid - How to click an item in an listview?

can anyone help on how to click an item in ListView using selendroid(language Java) ? i know using inspector we can know the ID of an element, but in listview all the items are having the same id.. Can someone please help me on this .. Thanks in…
selva
  • 1,175
  • 1
  • 19
  • 39
0
votes
1 answer

selendroid automating mobile web tests

I am getting the following error while running the selenium tests through maven INFO: executing command: C:\adt-bundle-windows-x86_64-20131030\sdk\build-tools\android-4.4\aapt.exe remove C:\Users\CAMPK023\AppData\Local\Temp\android-driver5204.apk…
0
votes
3 answers

Selendroid SetupError

Am getting below error while setup. I have setup my ANDRIOD_HOME variable too. But still getting the below error. Can anyone help me on this: java.lang.RuntimeException: io.selendroid.exceptions.SelendroidException: Enviro nment variable…
0
votes
1 answer

Selendroid - Unable to automate twitter app

I am new to selendroid. I was able to automate the test app provided in selendroid.io website. Then I tried to automate the twitter app using the com.twiter.andriod.apk. When I start the selendroid server the hub…
Yuvaraj HK
  • 416
  • 5
  • 13
-1
votes
2 answers

Duplicate files copied in APK README.md in Android Studio Project

im trying to run this test in Android Studio using selendroid: public class test_three { SelendroidLauncher selendroidServer; WebDriver driver; public void startServer(){ SelendroidConfiguration config = new SelendroidConfiguration(); …
-1
votes
1 answer

Are Selendroid Tests supported by any of the cloud based Test Labs?

Our Objective is to run our Selendroid tests on multiple virtual devices of different configurations and resolutions simultaneously. We are using Selendroid with testNG to test our android app. As I was researching about the cloud test labs, Amazon…
Shrikant
  • 1
  • 3
-1
votes
2 answers

Selendroid vs Appium: Syntax of x-path using UIAutomatorViewer

There must be a very easy solution to my question, which i am unable to figure out. UIAutomatorViewer gives information of object, which can be used for Appium. Following is the example for…
Salman Arshad
  • 59
  • 1
  • 14
-1
votes
1 answer

NoSuchMethodError: org.openqa.selenium.remote.CommandInfo.(Ljava/lang/String;Lorg/openqa/selenium/remote/HttpVerb;)V

i'm trying to run selendroid web for practice but i'm getting errors even i update selenium version (2.48.2) and set all paths correctly. below is my code and i'm getting this error. Please help me... NoSuchMethodError:…
-1
votes
1 answer

How to use xpath in my test cases?

I have the below defined xpath. How can I use this xpath in my test cases -…
selvi
  • 1,271
  • 2
  • 21
  • 41
-1
votes
1 answer

How to do scrolling?

I have tried with below coding to scroll the mobile web page .But,the scroll doesn't happening,it throws error message as element not found. TouchActions action = new TouchActions(driver).scroll(0, 100); action.perform();
selvi
  • 1,271
  • 2
  • 21
  • 41
-1
votes
1 answer

How to click on a image icon which is a ImageView type using Selendroid?

I need to click on a image icon which is a ImageView type. By using inspector I got the following code: WebElement element1 = driver.findElement(By.xpath("(//ImageView)[1]")); element1.click(); But when I am using this code in my script then its…
user2724402
  • 19
  • 1
  • 6
-2
votes
1 answer

Opening Browser in Android Device for Webpage UI testing

Anybody, tell me an way to open firefox and opera browsers in an android device and i have to get driver object for that browser, with the driver object I need to perform several actions on the webpage like, open the URL, getting element…
-2
votes
1 answer

ios-driver or Appium on Microsoft products

I have depth knowledge in automation testing and Selenium 2.0 (C#), and I'm new in Mobile automation test, I need to decide which tool will be more intuitive and stable using Microsoft environment (windows operating system and visual studio), Appium…
EyalChn
  • 81
  • 1
  • 10
-3
votes
1 answer

Should I use selenium, appium or selendroid?

Beginner programmer here- I want to convert a small program I made into an app- the original program uses selenium to load a website, ask for a username+ password, and auto logs you in and clicks a bunch of boxes and dropdowns, then exits. I want…
George Xu
  • 13
  • 8
-3
votes
1 answer

Deploying Mobile Automation Testing Tool On Real Device

I understand tools like Appium, Selendroid and etc can perform automation testing on the real device via USB cable or even Wifi. Hence my question here is, is it even possible to deploy Appium/Selendroid on the actual device, like converting it…
Kevin
  • 1
1 2 3
13
14