storeText ( locator, variableName )
${variableName}
If variableName contains value as 'Displaying 1 to 30 of 145300'. I need to parse this string and store a value 145300 in another variable. How is it possible ?
storeText ( locator, variableName )
${variableName}
If variableName contains value as 'Displaying 1 to 30 of 145300'. I need to parse this string and store a value 145300 in another variable. How is it possible ?
Command: storeEval
Target : '${variableName}'.split(' ').last()
Value : result