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

Anyone has selendroid-standalone-0.17.0-with-dependencies jar file with fixes advs to adv for new android version

Error screenshot: Getting an error when run selendroid-standalone-0.17.0-with-dependencies.jar file I tried so hard to create jar file from master https://github.com/selendroid/selendroid/tree/master/selendroid-standalone jar file but getting…
H.M
  • 1
  • 2
0
votes
1 answer

How can i verify toast messages using Selendroid

I have tried to verify toast in selendroid Automation using partialLinkText as follows: private boolean getToast(String text) { WebDriverWait wait = new WebDriverWait(driver, 3); wait.until(ExpectedConditions. …
0
votes
1 answer

How to automate two android app simultaneously using Appium?

I have to launch two app in two different devices and after completing action from one app, I have to check it from another app.
0
votes
1 answer

How to Use Selendroid in Android Studio

I am new to Selendroid and was wondering if someone could help me with this. I am just trying to run a test to make sure it works. Here is my code: import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import…
LUKER
  • 540
  • 1
  • 5
  • 23
0
votes
1 answer

Selendroid program not connecting with Appium, can't do automated testing

I have used Selendroid to write a JAVA program to automate testing in android app, but there is an error coming constantly, I have included selendroid-standalone-0.17.0-with-dependencies.jar, java-client-5.0.4.jar. java-client-5.0.4-sources.jar,…
0
votes
1 answer

Should I use Mac for testing iPhone or is Windows enough?

I managed to control my android device with both 'ADB' and 'Appium' on windows system. Question is : Can I do the same for iPhone ? as i heard that it can't be done in windows platform and it isn't clear on net. Also wanted to know if the iPhone sdk…
0
votes
1 answer

Testing phone call service or wifi with appium in python

In python I want to know if i can test phone call service with appium so as Wifi or bluetooth . the point is i can with appium press phone call button and dial number but how actually i can test that phone call is established ? same is for bluetooth…
0
votes
2 answers

How to configure JAVA_HOME for Selendroid

From Selendroid's system requirements: Java SDK (minimum 1.6) must be installed and JAVA_HOME configured. IMPORTANT: If JAVA_HOME is pointing to a Java runtime environment, selendroid will produce errors because tools like the jarsigner are not…
Luis Cruz
  • 393
  • 1
  • 14
0
votes
1 answer

Questions about parallel testing, need information about Cucumber, Selendroid, and Spoon

I need to implement a parallel testing feature to my tests, I found these three; Spoon, Cucumber(parallel-cucumber) and Selendroid(Selenium grid). But I searched for some information about them and I couldn't find it anywhere... Spoon: Do it run in…
David Hazan
  • 52
  • 1
  • 9
0
votes
1 answer

Variety of issues testing Android Webview using Appium

I have a hybrid app that is primarily just a webview. Here is the code for the basic test: @BeforeClass public static void setupAppium() throws MalformedURLException { DesiredCapabilities capabilities = new DesiredCapabilities(); …
Slims
  • 864
  • 2
  • 13
  • 31
0
votes
1 answer

What is appium, selendroid and selenium and how they are working?

I am confused in between above appium,selendroid and selenium and how it is interacting with each other ? Can anybody help me to sort my problem ?
Jitesh Mohite
  • 31,138
  • 12
  • 157
  • 147
0
votes
1 answer

Getting URL from site after submitting form

So the site that Im targeting works like this: The sites name is https://masterbattlerite.com/. https://masterbattlerite.com/ works like this: Enter username in search bar of the site Press the search button (or hit enter) The site directs you to…
Nahro
  • 406
  • 3
  • 12
0
votes
1 answer

Android Testing: Appium not working

I have installed Appium for Windows (Appium version 1_4_16_1). But when I double click on it to start, I get an error: Appium Stopped Working, windows is checking a solution to the problem. My system specifications are: Windows 8.1, 64 bit OS,…
user6602355
0
votes
4 answers

Getting error on using TestNG

When running a java selendroid code with testNG, getting an error message, "A Java Exception has occurred." with below exception - Exception in thread "main" java.lang.NoClassDefFoundError: org/testng/TestNGException at…
Karma5
  • 273
  • 3
  • 8
  • 23
0
votes
1 answer

How to check if correct page is open in selendroid

I am new to selendroid and writing test case for my app. I have a login page which is displayed only if user is not logged in. I am able to execute test first time and login successfully. I have set noClearData flag true so that I can have data for…
Kapil
  • 108
  • 1
  • 12