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
1 answer

Selendroid does not open the URL when I use it with Selenium Grid

Selendroid does not open the URL when I use it with Selenium Grid.Below are the steps that I followed 1) Initiated the Grid Hub using the Selendroid Grid Plugin and Selenium Grid Jar java -Dfile.encoding=UTF-8 -cp…
Shah Jigesh
  • 51
  • 11
0
votes
1 answer

Error building server: An error occurred while resigning test.apk

Whenever i try to run the following command: java -jar selendroid-standalone-0.15.0-with-dependencies.jar -app test.apk I get the following error: io.selendroid.standalone.SelendroidLauncher launchServer SEVERE: Error building server: An error…
Bhakti Shah
  • 1,623
  • 3
  • 13
  • 13
0
votes
1 answer

Error starting Selendroid session

I am trying to test a website functioning using selendroid. I first launch the emulator : emulator -avd then I started the selendroid server : java -jar selendroid-standalone-0.15.0-with-dependencies.jar After that, I launched the python…
Basma
  • 137
  • 3
  • 13
0
votes
1 answer

Is there any way to open url in appium driver , instead of selendroid driver while running in local android device?

I am testing mobile app using appium and language as java. I will set certain parameter for app to enable advertisement using particular url, I need to load that url in local android device. 3.So, I have loaded that url and performed click…
selvi
  • 1,271
  • 2
  • 21
  • 41
0
votes
1 answer

Androiddriver not working in appium

I am trying to run a test on my android mobile. I am using the latest appium windows exe. I am using the below code: import io.appium.java_client.AppiumDriver; import io.appium.java_client.android.*; import java.io.File; import…
NecessaryDevil
  • 105
  • 1
  • 10
0
votes
0 answers

Cannot interact with web element using Selendroid and CSharp

I am currently writing Automated UI tests using Selenium Webdriver and C# with the xUnit Assertion Library. I recently started looking into doing automation of Android devices using Selendroid and the documentation here for a starting ground. Here…
0
votes
1 answer

appium android python. action.tap(btn).perform() vs btn.click() what is better?

So, by authomating in my appium android python tests I've noticed that both cases work well like so: btn = self.driver.find_element_by_id('path') # element 1: action = TouchAction(self.driver) action.tap(btn).perform() # tap on button…
Leo
  • 649
  • 3
  • 9
  • 20
0
votes
1 answer

Selendroid Mobile View: When running script - map is not loaded for my mobile web site, as it requires to enable location access

I am working on mobile web site which has the following feature: A page with map widget with address edit. Enter post code/address in the edit and the location is searched and selected . I am trying to automate the above scenario. When I open my…
neo12
  • 3
  • 4
0
votes
1 answer

Error when i try to execute selendroid command

i've read some tutorials on the internet, and i don't know if i'm doing all right. I wrote this method, when i click in some button of my android application I hope that my click in this button will be able to open the android browser and acess…
Cleiton Ribeiro
  • 359
  • 2
  • 5
  • 16
0
votes
1 answer

what libraries should I include to finally use the selendroid ? I really need a server?

I'm reading some tutorials on the internet, but each of them says something different from others ... Some say necessary to include all the .jar within the project : Selendroid , Selenium and WebDriver . Elsewhere say it is only necessary to include…
Cleiton Ribeiro
  • 359
  • 2
  • 5
  • 16
0
votes
0 answers

Selendroid: Eclipse stuck, does not build

I added "selendroid" to a fully working application, just created the driver and navigated to google using "selendroid". Now eclipse is unable to build the app. It gets stuck, uses too much memory & CPU and nothing happens. How do i make it work? …
Hazim
  • 1,405
  • 1
  • 11
  • 24
0
votes
3 answers

How to use testng annotations in test cases?

I have below defined scenario. I want to use testng annotation. I want to execute methodfortestcase1() as first. And then I want to execute testcase1() as second. And then I want to execute methodfortestcase2() as third. And then I want to execute…
selvi
  • 1,271
  • 2
  • 21
  • 41
0
votes
1 answer

Unknown command error is thrown in Appium while trying to hide keyboard

Having the following code: [TestClass] public class RepairMobileTests { public AppiumDriver driver; public DesiredCapabilities capabilities; [TestInitialize] public void BeforeAll() { capabilities = new…
sarbo
  • 1,661
  • 6
  • 21
  • 26
0
votes
2 answers

Few questions about selendroid and appium

I have gone through many blogs and tutorial on net to find out which is best tool to use for android & ios app. However, I came across selendroid and appium are widely used tool for mobile app automation. I have gone through multiple blogs and…
Karim Narsindani
  • 434
  • 3
  • 14
  • 38
0
votes
2 answers

How to reselove the selendroid server error?

I have tried with below coding to run my test case in android emulator. It throws below portrayed error message. private WebDriver driver;` private String baseUrl; @BeforeSuite public void setUp() throws Exception { SelendroidConfiguration…
selvi
  • 1,271
  • 2
  • 21
  • 41