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

Appium failed to start iOS simulator when running test from jenkins. Instruments exited with code 255

I am currently working on building a test automation framework for iOS using Appium. In my framework, I start the Appium server from inside the code before the test suite started (@BeforeSuite). When I run the test manually using command: mvn clean…
Hayi Nukman
  • 1,191
  • 12
  • 29
0
votes
0 answers

How can I use HTML xpath while automating iPhone application

Im using Appuim+ Selenium Webdriver. My App is build in Sencha FrameWork so that some of the elements can not be found using Appium Inspector. So I tried with HTML Xpath, but it gives "element not found exception". Im pasting the code…
0
votes
0 answers

Appium inspector displaying blank screen

I am using appium Version 1.4.13 (Draco) Mac version 10.10.5 (14F27). While clicking on the inspector blank screen is displaying.Execution done in simulator.
Mani
  • 37
  • 6
0
votes
1 answer

How to fire appium command in terminal using java in Mac?

I wanted to start appium server programatically using java in Mac. I am able to open terminal with following code: String cmd= "osascript -e \"tell app \\\"Terminal\\\" to activate\""; List command1=new ArrayList(); …
0
votes
2 answers

Unable to perform Drag and Drop action in Android using Appium

I am unable to perform drag and drop action using below code in Android Hybrid App using Appium. Platform : Appium with windows Option 1 new TouchAction(driver).longPress(ele1).moveTo(ele2).release.perform(); Option 2 new…
0
votes
2 answers

why does the appium server fail when testing on iPhone 6 on mac?

I've launched an appium server on a mac machine that runs an iPhone 6 simulator. when running my test code, the server makes this output. Launching Appium with command: '/Applications/Appium.app/Contents/Resources/node/bin/node' lib/server/main.js…
adib1
  • 385
  • 1
  • 3
  • 10
0
votes
2 answers

Could not find button to launch Safari. Make sure you are using the latest version of SafariLauncher that appium is using

I am using Appium to launch Google.com on safari browser in iOS device(iPhone 6Plus). This code is running fine when I am running it on simulator and able to open Google.com on safari browser but when same code runs on device , below error is…
Dinesh Chandra
  • 329
  • 1
  • 2
  • 27
0
votes
0 answers

Instruments crashed on startup in Appium when i use a build from developer profile

I'm trying to open inspector in appium with a build from developer profile but i inspector and instruments crashed on startup. When i create a new project and generate the .app file it works fine. I can record my test cases with appium.
Emna Ayadi
  • 2,430
  • 8
  • 37
  • 77
0
votes
0 answers

Appium Safari test hangs and didn't finish

I'm running an Appium simple test using Safari on iOS simulator on Mac with the latest version of Xcode and Appium but sometimes the test hangs with the message "Let's browse", nothing happens on the simulator or appium GUI.... Screenshot Here is…
msiles
  • 657
  • 3
  • 10
  • 19
0
votes
0 answers

How to select text from textbox in ios app and click on text using appium

I can write text to textbox in iOS app using appium as editTextBox = driver.find_element_by_xpath("....") editTextBox.send_keys(text) The text is web link, how can I click on link? I think I can select text and then click?
user2661518
  • 2,677
  • 9
  • 42
  • 79
0
votes
2 answers

Can we create .ipa file using appium on windows machine?

I will be working with appium using mac machines for an iOS app later but meanwhile I wanted to use appium on my windows machine for the same iOS app and later push the code in the mac. So is it possible to work that way or if we are building an iOS…
RV_Dev
  • 435
  • 1
  • 7
  • 21
0
votes
1 answer

Appium inspector for iOS unable to open simulator

Appium inspector shows the following error while trying to inspect an iOS App
0
votes
1 answer

Tap on Invisible element iOS Appium

I need to tap on the button "Choose" which is invisible while inspecting using Appium inspector.While running the script the "choose" button is not detected , Is there any alternate way to tap on the button.
Vignesh
  • 165
  • 4
  • 15
0
votes
1 answer

Appium: How to get current window?

I have Appium 1.4.13 IOSDriver driver = new IOSDriver(appiumUrl, desiredCapabilities); How do I get current window (UIAWindow)? How do I get all elements on that window?
Artem
  • 7,275
  • 15
  • 57
  • 97
-1
votes
0 answers

The requested resource could not be found or a request was received using an HTTP method that is not supported by the mapped resource error

Failed to create session. The requested resource could not be found, or a request was received using an HTTP method that is not supported by the mapped resource error is throwing on appium inspector when trying with real iOS device. software…