Questions tagged [appium-ios]

Appium is an open source test automation framework for use with native, React Native, hybrid and mobile web apps.

This tag should be used when explicitly asking questions about integrating with Appium on iOS. For general questions, use the tag. For questions about the Python client, use the tag.

935 questions
0
votes
1 answer

How to tap on particular coordinates(x-axis, y-axis) in IOS?

I have found the same for the android using adb commands, such as: adb shell input tap 100 500, It will tap on the coordinates(100,500) on android device. Is it possible to do the same for IOS device, How?
0
votes
1 answer

Scroll doesn't work with iOS simulator using appium

I am automating an app on iPhone (simulator) where I need to swipe through the pages (splash pages in the very beginning) after the app launch Making use of swipe function doesn't work : driver.swipe(337, 420, 70, 420, 2000); (driver -…
adikrish
  • 11
  • 4
0
votes
1 answer

Unable to start appium inspector for real iOS device with bundle ID

I have a real device (Ipad Mini) hooked up to my Mac Book Pro. With the app I am trying to test already installed on the Ipad Mini. I am trying to run Appium inspector after I launch the server. But unfortunately, Appium Inspector is trying to…
adbarads
  • 1,253
  • 2
  • 20
  • 43
0
votes
0 answers

Appium - Questions regarding the iOS simulator

I want to test the example TestApp for iOS in the iOS simulator using JUnit. Therefore I have written a simple test that access an UI element. Each time I run this test, the Appium test server automatically starts a new simulator running the…
Steve Murdock
  • 709
  • 1
  • 10
  • 20
0
votes
0 answers

Appium does not start in Mac system

Im getting the below error while click Launch button: "Appium will not work if used or installed with sudo. Please rerun/install as a non-root user. If you had to install Appium using sudo npm install -g appium, the solution is to reinstall…
0
votes
2 answers

appium with no reset does not close the simulator after execution

I have to run some test suite on two remote machines. So, after one suite, i reset the app and for the next suite, app starts well. But the problem is, after completing the total execution driver.quit() just close the app but it does not close…
Eric Ipsum
  • 723
  • 3
  • 10
  • 24
0
votes
3 answers

How can i configure in Appium the URL of an application?

I have the url of an application, (not the .ipa file), how can i configure this url in appium? i don't have the path for that file. The application is coded by Angular JS.
Emna Ayadi
  • 2,430
  • 8
  • 37
  • 77
0
votes
0 answers

Starting Appium using command line in Mac Machine

I was wondering if I can start appium in terminal of Mac machine similar to windows which is as under appium -a -p -U Is there any similar command for iOS, as Mac terminal does not recognize appium as command Please…
NewBee
  • 165
  • 2
  • 7
0
votes
1 answer

Appium Inspector launches but shows no UI contents on the screen for iOS

I have installed appium Version 1.4.13 (Draco). In the appium iOS configuration provided the following details a. app path /Users/mac/Documents/testing/automationTesting.app b. Force device iphone6, 3. platform version 8.2 4. unchecked the UDID…
shri
  • 856
  • 1
  • 10
  • 26
0
votes
0 answers

An error occurred while executing user supplied JavaScript

I am getting this error while testing appium for ios : > Exception in thread "main" org.openqa.selenium.WebDriverException: An > error occurred while executing user supplied JavaScript. (WARNING: The > server did not provide any stacktrace…
joe
  • 31
  • 8
0
votes
1 answer

Appium scrollto()/hidekeyboard() methods are not working with client jar 3.3.0/3.4.0 in iphone

I have tried most of the possible method(java script/touchaction) but not able to scroll if any one have solution please help me, thanks
Shashwat
  • 3
  • 1
0
votes
0 answers

Enter value to a table cell with Appium iOS

I have a table cell element with a static text, like this: [UIATableCell] Your height > [UIAStaticText] Your height When I click on this table cell, there is a [UIAPicker] with 2 [UIAPickerWheel], one is number, one is "cm". I want to set value…
Ragnarsson
  • 1,715
  • 7
  • 41
  • 74
0
votes
1 answer

How to use Ios UI Automation xpath in appium for ios

I am using iosuiautomator for finding the xpath of element (Note: In appium can't find the xpath). while running following error is displaying
Mani
  • 37
  • 6
0
votes
1 answer

how to disable Push Notifications os popup on ios and avoid to launch app on main page

I am doing automation using Appium and I came across 2 major problems. How to dismiss SEND/PUSH Notifications popup on iOS which is system popup If I install the application and uninstalled it and then again installed, It is launching the app with…
born2Learn
  • 1,253
  • 5
  • 14
  • 25
0
votes
2 answers

How to install an app from jenkins URL with Appium?

How can I install *.ipa from jenkins url with Appium ? @Before DesiredCapabilities capabilities = new DesiredCapabilities(); capabilities.setCapability("deviceName", "Tester's mini Retina"); capabilities.setCapability("platformName",…
testableapple
  • 325
  • 2
  • 13