Questions tagged [appium-desktop]

Appium Desktop is an open source app for Mac, Windows, and Linux which gives you the power of the Appium automation server in a beautiful and flexible UI. It is a combination of a few Appium-related tools: A graphical interface for the Appium Server. An Inspector that you can use to look at your app's elements, get basic information about them, and perform basic interactions with them.

Appium Desktop is an open source app for Mac, Windows, and Linux which gives you the power of the Appium automation server in a beautiful and flexible UI. It is a combination of a few Appium-related tools:

A graphical interface for the Appium Server. You can set options, start/stop the server, see logs, etc... You also don't need to use Node/NPM to install Appium, as the Node runtime comes bundled with Appium Desktop.
An Inspector that you can use to look at your app's elements, get basic information about them, and perform basic interactions with them. This is useful as a way to learn about Appium or as a way to learn about your app so you can write tests for it.

For more information see here

236 questions
1
vote
0 answers

Unable to launch appium in real devices because of xcodebuild failure: "xcodebuild failed with code 65"

I am trying to launch appium in real devices, but everytimee i run i get this error- selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Unable to launch…
1
vote
1 answer

An unknown server-side error occurred, Bad app: ⁨/../../. App(ipa) paths need to be absolute or an URL to a compressed file

While I am running the JsonScript in the appium inspector Environment used: "platformName": "iOS", "deviceName": "iPhone Simulator", "platformVersion": "12.1", "app": "⁨⁨/../../...ipa", "automationName": "XCUITest", "noReset": true It is not…
1
vote
2 answers

How to upload apk file from local path to android emulator automatically in scripting(Appium)?

Currently my dev team integrated their repository with jenkins it's automatically generate apk once it build from jenkins is there anyway to install that local apk in android emulator using automation script. Please anybody help me on this.
1
vote
1 answer

Unable to find id's for react native apps only for splash screen visibility/text boxes using appium inspector/UI automator

react-native currently supports contentDescription via accessibilityLabel. This is great for clickable elements, but not so great for testing other things like splash screen visibility/text boxes using appium inspector/UI automator even developers…
1
vote
0 answers

Create automation Windows tests for FrameMaker using appium - probleme with inspection

i would like to know if anyone can help me with some isues with inspecting elements using appium to inspect FrameMaker elements to create automation tests for this application. The probleme is that when i want to get elements in the workspace, menu…
1
vote
0 answers

How to start Appium Local Service with Elevated privileges programatically from C#

I'm starting the latest Appium Local server with the following C# code: var service = AppiumLocalService.BuildDefaultService(); service.Start(); This worked fine for me until I needed to install an .apk file onto the device I was running…
1
vote
0 answers

Appium - Finding mobile selectors from iOS app with Mac but without installing Xcode

Is this possible? I need to find mobile selectors from an iOS app to automate tests using Appium. I have windows so I set up a virtual machine with MacOS High Sierra. I don't have enough disk space to install Xcode there, so I was thinking if there…
Max
  • 85
  • 1
  • 10
1
vote
3 answers

Appium Inspector launches aplication in wrong AVD

I've got two AVDs with different names and when I launch application in Appium Inspector, pointing in Capabilities to specific AVD, then may also run in second AVD which is reserved for other purpose.
1
vote
0 answers

why appium Typing Chinese garbled in Sina News Text Box

Appium v1.9.0 windows10 python3.6 I'm using appium to test Sina News app. It's Chinese garbled. my code #-*-coding:utf-8-*- #import package from selenium.webdriver.support.ui import WebDriverWait from appium import webdriver #create…
王胖胖
  • 107
  • 1
  • 3
  • 10
1
vote
1 answer

It is impossible to create a new session because 'createSession' which takes HttpClient, InputStream and long was not found or it is not accessible

I am getting the error "It is impossible to create a new session because 'createSession' which takes HttpClient, InputStream and long was not found or it is not accessible" also my Appium server gets killed autometically after this error in…
Sujit
  • 309
  • 1
  • 2
  • 8
1
vote
3 answers

java.lang.NoSuchMethodError: com.google.common.collect.ImmutableSortedSet.toImmutableSortedSet(Ljava/util/Comparator;)Ljava/util/stream/Collector;

I am getting an error with Appium setup unable to launch app. I am using configuration setup below: java-client = 3.1.0 selenium-java = 3.11.0 appium-version = 1.7.0 Also added following dependency but still facing same problem:
1
vote
1 answer

Appium set working directory of application session in C#

I am currently trying to run my application in Appium. I have set the tests working directory to run where the application executable is and it is successfully launching the application however it fails to get any of the application settings that…
Jade
  • 335
  • 1
  • 2
  • 12
1
vote
2 answers

How to toggle airplane mode in iOS with Appium Java client

I was able to swipe up the "quick settings" in iOS with a swipe touch action, but viewing the UI with Appium Desktop I was not able to see the xml of the settings panel. Does the settings panel have any xml in Appium? How can I click on the the…
the_prole
  • 8,275
  • 16
  • 78
  • 163
1
vote
0 answers

Appium Execution is Very slow on Mac safari browser

I am using Appium for browser automaton. Appium Version: 1.8 (Beta) xcode: 9.3 iOS : 11.3 Browser: Safari When i am trying to execute my script on above combination its taking very long time. i have also tried with Appium 1.7 as well. Any solution…
1
vote
2 answers

Unable to install appium from npm because of chrome driver installation failure

I have installed nodejs 8.11.1 in my system. Trying to install appium using below npm command. npm -g install appium After hitting the command after 10 mnts iam getting below error regarding chrome deiver installation. C:\Windows\system32>npm -g…