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
1 answer

Appium 1.5.0 Desktop error: could not connect to server are you sure its running

Background info: Mac book air : version 10.13.4 Appium desktop: 1.5 Android studio: 3.1.2 Emulator: Nexus 5 Operating system: Oreo or 8.0 I was able to successfully create my desired capabilities on the appium desktop. 1.5.0. These are the…
fypnlp
  • 1,372
  • 4
  • 18
  • 41
1
vote
1 answer

Skipping Chrome Welcome Pase in Emulated Android using Eclipse and Appium Desktop?

I'm trying to run an Eclipse java script in order to automate a Web Application using Appium Desktop and Android Emulator. The script's aim is only to open the Chrome browser in the Android Emulator and go to a specific URL: package…
1
vote
1 answer

How do I connect appium inspector to a running session

I'm working on test automation that uses appium for it's connection to an android device. Occasionally, I end up in a spot where I'm debugging why a test has failed, and it is because a developer has changed something so my id no longer works, or…
1
vote
0 answers

Not able to switch to 3rd Party play store app activity for the second time launch through Appium script

Problem: org.openqa.selenium.WebDriverException: An unknown server-side error occurred while processing the command. Original error: Error occurred while starting App. Original error: 'com.tohsoft.applock.ui.unlockapp.StartupActivity' never…
Raman
  • 444
  • 6
  • 21
1
vote
1 answer

Where to download latest Version of Appium Server for windows

Where to download the latest Version of Appium Server for windows. Link: https://bitbucket.org/appium/appium.app/downloads/ Have 1.4.16.1 as latest but it has many issues can someone help me out.
Abhishek Gaur
  • 300
  • 1
  • 5
  • 20
1
vote
1 answer

Appium - Scrolling methods are not working in landscape mode for IOS

Below mentioned scrolling methods are working fine in portrait mode but, in landscape mode scrolling methods are not working for IOS. Appium Version: 1.7.1 IOS Version: 11.2 Simulator / Real Device: Simulator - IPhone SE Please help!! @Test public …
Vinoth Vasu
  • 53
  • 1
  • 1
  • 6
1
vote
1 answer

scroll down in appium robot framework

I have problem during use Scroll Down in appium . Scroll Down …
0
votes
1 answer

Getting error while launching iOS app on Appium Inspector

I have configured everything on my macbook to launch iOS app through appium inspector. I have successfully installed web driver agent application on my device as shown in screenshot below Below are my Desired capabilites for iOS device: While…
Noman
  • 15
  • 6
0
votes
0 answers

using ATSPI2 & DBus in a docker container

I am trying to perform GUI tests on docker container. In docker image with Ubuntu 22.04 I install xvfb and also using following commands to run the desktop. ENV DISPLAY=:0 CMD ["Xvfb", ":0", "-screen", "0", "1920x1080x24+32"] I am able to run any…
0
votes
1 answer

Getting System.ComponentModel.Win32Exception (5): Access is denied on Azure-Release

I am running UI-Automation Test with Appium WinAppDriver using a .bat file. When I run the .bat file manually on the agent everything goes as expected but it produces System.ComponentModel.Win32Exception (5): Access is denied exception when running…
0
votes
1 answer

Taking a screenshot with 2 monitors using OpenQa.Selenium always references the primary monitor

I am trying to take a screenshot of an element by calling the following (example) code: var element = this.driver.FindElementByName("Example"); var sc = element.TakeScreenshot(); Now, when I was comparing the screenshot with the reference image…
ziga
  • 159
  • 1
  • 6
0
votes
1 answer

launching Android Chrome Browser through Appium Automation using emulator is throwing error and chrome browser is not launched properly

Screen when the code is run and chrome is launched` Appium server is also running and even the chrome browser is launched but displays blank white screen after launching Below is the error while running the code. SLF4J: No SLF4J providers were…
0
votes
1 answer

Unable to install appium@next

I am using "npm i -g appium@next" and "npm audit fix --force", which results in the following error: Windows 10 64 bit. npm ERR! path C:\Users\shelly\node_modules\appium\node_modules\appium-chromedriver npm ERR! command failed npm ERR! command…
0
votes
0 answers

How to close/switch modal dialog(windows) using appium desktop

I am trying to automate testing of desktop application.However,I couldn't figure out how to close modal dialog that blocks main window. Up to now , I tried to grab object with xpath provided by WinAppDriverUIRecorder I tried to find by modal's…
0
votes
0 answers

What's wrong with this relative XPath?

I want to automate a SQL developer tool so I'm trying to click on the "create new connection" button create new connection using relative XPath. Why is WinAppDriver failing to click on the button? Output-Error using System; using SikuliSharp; using…