This is my code:
:FOR ${a} IN RANGE 2 ${Row_Count}
\ Run Keyword If '${temp}'== 'True' Click Link xpath=//table[@id='listAllSTR']/tbody/tr[${a}]/td[2]/a and
\ ... Screen validation for Answered ${STR_detail} and
\ ... ELSE Continue For Loop
\ Run Keyword If ${a}>${Row_Count} Exit For Loop**
When the if condition passes (i.e. if '${temp}'== 'True'), I need to click a link, but I'm getting an error saying
Keyword 'Selenium2Library.Click Link' expected 1 argument, got 5.
I don't know what to do.
Can anyone help me out?