Been struggling with this one for weeks.
Setting up a PAD flow for this page: https://www.collegecentral.com/ncctcjobs/
I need PAD to click on the Sign In Button in the upper right of the browser window, but PAD keeps throwing UI Element not found error. Tried parsing the UI element, digging into the page code to see if I could help, but nothing seems to work.
Here's the config of the UI element.
Finally, I did a workaround by spawning the page, then throwing a message telling the user to log in manually. When they click OK (after logging in hopefully) the flow continues.
Anyone have any recommendations on what I need to do to get the Button 'Sign In' to be recognized?
Solved! Go to Solution.
Great tip! I did that to no avail. Henrik's tip to use
button:contains("Sign In")
worked like a charm! I wish there was a shortlist of key tricks like that. I'm not a jquery pro, but used Henrik's trick to fix that problem as well as a similar one with a button in access having the same issue!
Switch to Text editor in the selector window top right, then write just the following:
button:contains("Sign In")
If Henrik's doesn't work, try unchecking all the boxes (1, 2, 3, 4, etc...), except for the very last one.
Hi,
Using recorder seems better than adding manuelly UI element.
I have often this problem (Don't know why...)
You can try like this and add exception if needed.
Great tip! I did that to no avail. Henrik's tip to use
button:contains("Sign In")
worked like a charm! I wish there was a shortlist of key tricks like that. I'm not a jquery pro, but used Henrik's trick to fix that problem as well as a similar one with a button in access having the same issue!