Hi, I am trying to use Web Get Value to retrieve the values of all the errors shown in the screenshot. I found out that all these fields have the same class name which is “help-block”. Is there a function I can use to capture all the values under this class name ?
You can use the XPath among ( ) and then add [1], this will look for the 1st element with that name , then you can create multiples Web Get Value with different numbers.
Example: (//*[@class=‘help-block’])[1], then change the number will get the first, second and so forth.
1 Like