Hi, as my DataMiner is installed in a secured network, and some of my users can only access it through our PAM solution i.e. CyberArk. https://docs.cyberark.com/PAS/12.6/en/Content/PASIMP/psm_WebApplication.htm
We are trying to configure CyberArk to redirect to the DataMiner Web App. However, we noticed that the Username, Password and Button in login html is always changing. Therefore CyberArk is unable to locate the form elements to pass on login credentials and drops the connection.
Can the Username, Password and Button form elements be fixed names?
Hi,
The login form of our web apps indeed has ids change every time the page is loaded. I'm not familiar with CyberArk, but using the documentation link you provided I noticed that you should be able to use a different way to identify the correct fields. The documentation mentions that an 'xpath' can be used to find them instead of using their class/id. My guess is that //form/dma-input-text//input should work for the username field & //form/dma-input-password//input for the password field. //dma-button should work for the login button itself.
Thanks! This worked for us. 🙂