Harish Kannan
Harish Kannan

Reputation: 515

What are the ways or tools available to inspect element in a Mac desktop application

We have firebug or chropath or inspect element methods to find locators of a web application. Similarly, how to identify element of a Mac desktop application (for example, iTunes desktop app)?

Thanks in advance.

Upvotes: 2

Views: 2057

Answers (2)

Nawaa
Nawaa

Reputation: 127

You can use pyatom (python library for automated testing on MAC). PyAtom is Python library to fully enable GUI testing of Mac applications via the Apple Accessibility API.

Github link - https://github.com/pyatom/pyatom

Upvotes: 1

joseph
joseph

Reputation: 29

Use Accessibility Inspector,just type in Inspector in the spotlight. So far, its able to get class, text and labels, but not well recognize using it with Appium. I am hoping for a better more accurate tool.

Upvotes: 3

Related Questions