I am using Selenium2Library in Robot Framework. I want to click a link in a webpage but I don't want to wait for the page to reload.
When using SeleniumLibrary in Robot Framework, user can use this command:
| Click Link | link text | # A page is expected to load.
| Click Link | another link | don't wait | # A page is not expected to load.
But I could not find the equivalent command in Selenium2Library.
How to implement "click and don't wait for page reload" in Selenium2Library in Robot Framework?
Mouse Down followed by Mouse Up
. If I useClick Link
, it will wait for the page to reload. If I useMouse Down followed by Mouse Up
, it will not wait for the page to reload. Thanks for your help! – userpal