Questions tagged [appium]

Appium is an open source test automation framework for use with native, hybrid and mobile web apps. It drives iOS and Android apps using the WebDriver protocol.

Appium is an open source test automation framework for use with native, hybrid and mobile web apps. It drives iOS and Android apps using the WebDriver protocol.

322 questions
8
votes
2 answers

Can appium be run on windows to test iOS app?

Can I use Appium to test iOS app on Windows 7? Actually I have planned to test an iOS app, but i do not have the mac machine, will I need xcode to use appium for iOS app?
Abhinav
  • 81
  • 1
  • 2
  • 4
5
votes
3 answers

how to do a Testing on an Already Installed Android application using Appium + Selenium ?

is there any way to test an application which is already installed For Eg. i want to test the calculator or google map application ? my Current Appium version is 1.3.4.1
Naeemahemad
  • 139
  • 1
  • 1
  • 9
4
votes
1 answer

Why does Appium sign the .apk? Is there any benefit?

I've been using Appium for automation in Android, I always was surprised for the resigning of the apk. This signing only has caused problems to me, and I cannot see any advantage of this 'feature'. When there were problems, I simply add the nosign…
Dr. No
  • 239
  • 1
  • 6
3
votes
2 answers

Long Press and Release in Appium

I need to long press a button for a few secs and release, I have the following code, WebElement recordButton = driver.findElement(By.id("xxxxxx/record_button")); TouchActions action = new TouchActions(driver); …
WiredTheories
  • 281
  • 3
  • 9
3
votes
0 answers

How to Identify accessibility in Android Hybrid App?

I'm working in appium with page object pattern. public class LoginPageObjects { @CacheLookup @AndroidFindBy(accessibility = "") public MobileElement mobno; @CacheLookup @AndroidFindBy(accessibility = "") …
user24314
3
votes
5 answers

How to set app path for android using Appium on a mac

I wish to know how to set the app path for an android app on my mac. For iOS you can download the app and then in the desired capabilities you can provide the path. I can't download the android version of the app onto my mac, but it is my…
user1523236
  • 131
  • 1
  • 3
2
votes
2 answers

Scrolling in Appium

I am automating a Tablet application using Appium + Java. In a screen, I have 100+ fields (Textbox + Dropdown) to automate which has scroll view. To automate those 100+ fields, I have listed down all the IDs(of those textbox and dropdown in that…
Ashish
  • 78
  • 1
  • 8
2
votes
2 answers

Select an element in Appium

In this activity, I have 5 Text Views with same resource-id. How can I select the first one with Java client Appium automation? Is there any way to use resource-id and index combination. I expect a non xpath strategy if available to select that.
1
vote
2 answers

Is this the only way to add exception handling to high level automated testcases?

We are using Serenity BDD and Appium for automation testing of our Android app. Most of our high level testcases look as follows: observedToast = toastMessageStep.getToastMessage(); log.info("Observed toast message: " +…
Suhas
  • 48
  • 4
1
vote
1 answer

Appium - An element could not be located on the page using the given search parameters

I am just starting with Automatization, but I have a problem with elements. I have this XPath "/Pane[@Name=\"Desktop 1\"][@ClassName=\"#32769\"]/Window[@AutomationId=\"win\"][@Name=\"COLOSSEO Show Manager 1.0.0.0 (64bit) .NET Framework…
Renata Cikova
  • 11
  • 1
  • 2
1
vote
1 answer

Is there any way to get around the multi factor auth in mobile test automation?

I have an app that would ask me to enter a verification code from a received SMS. How do we get around that or if there is any mechanism to enter the code at all? This is an automated UI test using Appium and C# as my language. I test it using a…
Marj
  • 1,357
  • 2
  • 12
  • 27
1
vote
0 answers

Full control option not available in adding ios device to appium studio

"Full control option" is not visible while adding ios(iphone) device from appium studio. Tried this in Appium studio community version. How to view that option ?
Aish
  • 11
  • 2
1
vote
1 answer

How to handle a wait for element to disappear in Appium?

ExpectedConditions.invisibilityOf(element); I am getting exceptions as: Unsupported command exception: isElementDisplayed
STE
  • 749
  • 6
  • 13
  • 26
1
vote
0 answers

Appium inspector crashes and won't load a certain page but can load other pages

I'm trying to get the elements of a certain page and Appium inspector takes a long time to capture the picture, but then the elements page source will show up with only 1 element tag and rest of the elements are a blank page. Then clicking anywhere…
1
vote
1 answer

If go back to previous screen, appium can't click on app's menu on IOS device

If I go back to previous screen, Appium XCUItest can't click on app's menu on my IOS device. I tried driver.tap and it didn't work. I see the menu button flashing but it never opens when the click is processed. Can anyone advise on how to fix this?…
1
2 3