Unable to use Appium inspector with WinAppDriver

80 Views Asked by At

I have WinAppDriver dunning in Windows 10

enter image description here

I am simply trying to start Windows calculator using Appium inspector but I get an error and I don't understand what's wrong

enter image description here

Can anyone give me some clues please?

2

There are 2 best solutions below

0
Daipop On

Appium Inspector is exclusive to mobile devices, doesn't work in Windows with WinAppDriver.

Use "Accessibility Insights": https://accessibilityinsights.io/downloads/

Or "WinAppDriver UI Recorder" instead: https://github.com/Microsoft/WinAppDriver/releases

0
Christian On

You may need to run appium and add two more desired capabilities:

{
  "platformName": "windows",
  "appium:automationName": "windows",
  "appium:app": "Microsoft.WindowsCalculator_8wekyb3d8bbwe!App"
}

enter image description here