0 votes
in Appium by
Is Debugging Appium Difficult?

1 Answer

0 votes
by

No. Appium is a Node.js application, therefore, in essence, it is Javascript. The code is available on GitHub and can be downloaded in a few seconds as it is small and not so complex. Depending on what you have to debug, you will probably need to go deeper in your debugging experience. However, there are some key points were setting a breakpoint is always worth it, for example, the proxy component is worth a mention. In appium/lib/server/proxy.js you can set a breakpoint in function doProxy(req, res), that will be hit every time commands are sent to platform-specific components to be translated into automation commands.

Related questions

0 votes
asked Jul 15, 2021 in Appium by rajeshsharma
0 votes
asked Jul 15, 2021 in Appium by rajeshsharma
...