How to reduce waiting time in Selenium2Library Robot Framework
I have a test script in Robot Framework which I want to reduce its elapsed time. I have below command as a part of the test procedure: wait until element is enabled id=${elementId} In run time, it takes about 5 seconds to be done; I've set selenium implicit wait to 2 seconds using below line at the beginning of the test: set selenium implicit wait 2 seconds I get the applied selenium implicit wait afterwards with get selenium implicit wait and it returns 2 seconds , but the first command still takes about 5 seconds to complete. What should I do to reduce this time?? Any help or suggestion will