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

196 questions
5
votes
4 answers

How to keep alive Appium session for long time

I need to wait in the middle of my test for 5 minutes but the Appium session has default newCommandTimeout of 60s. and I get exception in the next command that my session is timeout. AndroidDriver appiumDriver = new AndroidDriver(new…
4
votes
2 answers

Appium desktop server error when starting session could not sign with default certificate

I cannot start a new session on my Appium desktop server. I haven't found any fix that works for me. This is my error message: Encountered internal error running command: Error: Could not sign with default certificate. Original error Command…
illmaster
  • 63
  • 1
  • 1
  • 6
4
votes
2 answers

How to speed up the start of appium

I am trying to use appium to test one app with real mobile phone. It will spend 25s on startup. How to speed up? appium-desktop version: 1.5 android os: 7.1 here is adb log from appium import webdriver class AppTester(object): """docstring for…
4
votes
3 answers

Unable to launch WebDriverAgent because of xcodebuild failure: "Carthage binary is not found."

Every time i try to start appium desktop with the iOS capabilities i am getting the following error: Unable to launch WebDriverAgent because of xcodebuild failure: "Carthage binary is not found. Install using brew install carthage if it is not…
timetraveler90
  • 168
  • 1
  • 13
3
votes
0 answers

How to detect/inspect element in desktop application developed in Juce framework and C++ application?

I am trying to automate desktop application which was developed by CPP and juce framework. I have tried with the tools such as 'UIAVerify', 'Inspect.exe', 'UISpy', but object or elements in that desktop application not able to identify, could any…
3
votes
3 answers

Could not start Appium server. It's showing [Error Starting appium server: listen EADDRINUSE 0.0.0.0:4723]

I am using Appium version V1.15.0 and have already start the server successfully with the default Host: 0.0.0.0 and Port: 4723 But now when i try to start the server it shows me this error "Error Starting Appium server: listen EADDRINUSE…
tahmina
  • 73
  • 7
3
votes
2 answers

Log Appium testresults to console

Appium won't log the test results (of the UI-tests, executed with adb emulator) to the debug output (Deug.WriteLine). According to the documentation, get test logs is possible with the following line ILogs logs = driver.Manage().Logs; Hower,…
Cornest
  • 269
  • 1
  • 13
3
votes
2 answers

Appium does not show webview context, it only showing native app context. How to get webview context?

I'm trying to get the available application context and want to switch to the webview context but appium getting only Navive App. Also application is WebView enabled. Appium version: 1.10.1 ChromeDriver version: 2.44 Desktop OS/version: Windows…
qaWork4
  • 49
  • 6
2
votes
0 answers

ERROR webdriver: RequestError: connect ECONNREFUSED 127.0.0.1:4444

I want to execute a mobile automation test that has been written in Javascript. I am using Appium and android-studio. I determined the capabilities in the wdio.config.js file as shown below. capabilities: [{ "browserName": "Android", …
programmer
  • 437
  • 1
  • 5
  • 19
2
votes
2 answers

Trying to run a Robot Framework Test Case against a Windows app with Appium Server - possible?

I am using Robot Framework with the RIDE IDE. I have an Appium Server session running. As a first try, I want to write a Robot Framework test case to open an instance of the Windows notepad. Firstly, is this even possible, or am I…
Al2110
  • 694
  • 3
  • 12
2
votes
1 answer

Appium Desktop - Could not find 'adb'

I am trying to use the inspector in the Appium Desktop for Mac. After I add my desired capabilities, I get the following error: An unknown server-side error occurred while processing the command. Original error: Could not find 'adb' in…
kroe761
  • 2,228
  • 7
  • 32
  • 64
2
votes
0 answers

Sendkeys not working in Winappdriver using Appium

I am automating a desktop application using WinAppDriver using Appium in C# language. The issue that I am facing is none of the code for the keyboard interaction is working, like setText, keys.ArrowDown and so on. Initially, it was working…
2
votes
1 answer

Is there a way to retrieve information from a ui element that has the property IsControlElement = False? (Python + Appium + WinAppDriver)

Greetings and salutations! I'm working on a UI automation project for a windows desktop app (FrameworkId: Win32) Stack: Python (3.7) + Appium (1.15.1) + WinAppDriver (v1.1). I have identified an element using Inspect.exe, but when I try to code,…
2
votes
0 answers

Using chromedriver_autodownload feature programmatically with appium

How to use chromedriver_autodownload feature from Appium desktop while initializing Android driver programmatically with Appium or while starting the Appium server from…
eps qa
  • 29
  • 2
2
votes
0 answers

AppiumStudio (Windows) : No Available Teams Found

Not able to configure apple developer account in AppiumStudio on windows machine. it's showing 'No Available Teams Found' while login to valid apple developer account I am able to login to https://developer.apple.com/ with same credentials Appium…
Ayushi
  • 31
  • 2
1
2 3
13 14