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

Can't start automated test-case in Robot Framework

I'm new in automated testing. So Unfortunately, can't run my automated test-case in RF-Ride. System report is: - No application is open; - Keyword 'Capture Page Screenshot' could not be run on failure: No application is open; - An unknown…
2
votes
1 answer

Appium desktop app test throws element could not be located exception, but passes when the app is launched before the test runs

I'm trying to learn Appium and using it for WPF application testing. Tests against Calculator or Notepad are running fine, but recently I've encountered a problem when trying to test custom WPF application. Appium desktop app tests throw "An element…
WhisperWind
  • 23
  • 1
  • 6
2
votes
5 answers

Appium desktop keep on asking for “platformName” capability even if it is added

I am using Appium Desktop app. After adding all the capabilities. When I Start session, I got an error "An unknown server-side error occurred while processing the command. Original error: You must include a platformName capability" Screenshot
2
votes
1 answer

Could not create simulator with name and runtime id

I use Xcode 10.1 and with Appium Desktop my capability is { "uuid": "B13D4F22-AA4E-4890-8C2B-3C5B7B6E3678", "bundleId": "com.slacorp.eptt", "platformName": "iOS", "deviceName": "iPhone 8", "automationName": "XCUITest" } but when I run…
the_prole
  • 8,275
  • 16
  • 78
  • 163
2
votes
3 answers

UiAutomator exited unexpectedly with code 4294967295, signal null

It was working fine few minute before. Now i am getting following error in Appium Desktop app while trying to launch the app from appium Desktop. Appium Desktop : version 1.10.0 [UiAutomator] Starting UiAutomator [UiAutomator] Moving to state …
Suban Dhyako
  • 2,436
  • 4
  • 16
  • 38
2
votes
5 answers

Getting UiAutomator exited unexpectedly with code 0, signal null error

Getting UiAutomator exited unexpectedly with code 0, signal null error on appium version v1.10.0 My Appium server logs :-
PARTH MODI
  • 55
  • 3
  • 8
2
votes
2 answers

The application at '⁨/path/UICatalog.app' does not exist or is not accessible : Appium Error on IOS

My set capabilities are DesiredCapabilities d= new DesiredCapabilities(); d.setCapability(MobileCapabilityType.DEVICE_NAME,"iPhone 8 Plus"); d.setCapability(MobileCapabilityType.PLATFORM_NAME, "iOS…
B.Mishra
  • 117
  • 1
  • 3
  • 9
2
votes
2 answers

Appium REAL IOS Device app Testing:xcodebuild failure: "xcodebuild failed with code 65".

Appium Mobile Testing App on Real IOS device: I am using Apple IOS 6 plus with UI automation enabled and my email id trusted. No idea what provisioning profiles or certificates i have. I am stuck in mobile automation of the our app on real IOS…
1
vote
1 answer

Intermittent WebDriverException when running Winappdriver/appium Automation test in MS Hosted Agent ('windows-2022')

Brief background: Automating a winform application using WInAppDriver/Appium. Using Specflow's BDD to define tests At every start of test the automation test will always check if App is open already, if not, then fire-up/initialised application -…
1
vote
1 answer

Appium: How do I find the absolute path of an apk on my Android mobile phone?

I am working with appium inspector on Windows (using a real connnected Android device), and the error that I am getting is: Failed to create session. An unknown server-side error occurred while processing the command. Original error: The application…
Rikudou
  • 145
  • 6
1
vote
1 answer

"sharp" module issue while launching Appium v2.0.0-rc.3 from mac terminal

I have been facing same issue due to 'sharp' module when I try to launch appium server from mac terminal. Software Versions: Mac 13.4 (22F66) Processor 1.4 GHz Quad-Core Intel Core i5 Appium v2.0.0-rc.3 Java 11 Node 20.3.0 NPM…
1
vote
0 answers

How to integrate undetected chrome driver for windows application

We are automating the windows application using appium - selenium and winappdriver. Before performing any action in our application we need to login with Microsoft account. For login with Microsoft account, our windows application supports…
1
vote
1 answer

Appium capability baseUrl is not working when trying to connect to remote server

I am trying to run my tests with a remote Appium server. Until now, I have always used the server in the same machine where the tests are being run, so I was using url + port (localhost:4723). The problem I am facing now is that the "baseUrl"…
1
vote
1 answer

WinAppDriver can't connect to application on Windows

I'm getting an error on the line "driver = webdriver.Remote(....)" in the following code: import unittest from appium import webdriver import os os.startfile('C:\\Program Files (x86)\\Windows Application Driver\\WinAppDriver.exe') desired_caps =…
1
vote
1 answer

Trying to run cucumber test with Appium, getting "uninitialized constant Selenium::WebDriver::DriverExtensions::HasRemoteStatus"

I'm learning test automation with Cucumber and Appium, the Cucumber part works perfectly fine by itself, no issues or anything, but when trying to run tests with Appium I get this error on cmd: uninitialized constant…
1 2
3
15 16