Robot framework- xpath - how to use translate() function
Consider tc1.robot file as below:
...
*** Test Cases ***
LoginTest
...
sleep 5
click element xpath://input[matches(@placeholder,'username','i')]
How to use translate() function to do case insensitive search in the above line? i.e. it should match 'username' text in any combination case - mostly username, Username, USERNAME etc.