1

Webdriverio allows you to run appium as a background process. Docs here

I'm looking to use the appium inspector to quickly get testID and native id information for selectors.

Is there a way to run the appium inspector alongside the webdriverio tests runner to inspect the app views?

fengelhardt
  • 965
  • 11
  • 24

1 Answers1

2

in the webdriverio config just add:

path: '/wd/hub',
port: '4723'

Assuming appium server is running in 4723, Make sure to remove Service

Thats it :)

PDHide
  • 18,113
  • 2
  • 31
  • 46