Automation Testing for website and app

0
im trying to automate the website using UIPath but im unable to locate the elements like buttons in my website .   i want to know what is the best tech suitable to automate the website and app developed in mendix  
asked
1 answers
0

I don't know much about UIPath, but you can try searching the elements by classname, instead of by id.

 

E.g.: if you have a button called actionButton1, the same button could be found by using the classname mx-name-actionButton1

 

See the documentation: https://docs.mendix.com/howto/front-end/selenium-support/#naming-conventions

 

I use this approach with Cypress and it works very well.

https://vstram.medium.com/mendix-test-automation-with-cypress-03a46fdb82ff

 

image.png

answered