4

In Robot Framework, does any keyword in any library implement this? Open Browser and Go To just go to the requested URL but don't wait until the page document is fully loaded.

Cauchy Schwarz
  • 747
  • 3
  • 10
  • 27
  • you decide when the page is fully loaded, depending on what this constitutes for you, you need to add additional verification steps. – shicky Apr 12 '16 at 11:41
  • 1
    please have a look at my answer and provide me with some feedback so that we could close this issue for you and for anyone who might come across this in future – jim Apr 23 '16 at 23:05

1 Answers1

7

Have a look at this discussion. You don't really need to wait for anything apart from Ajax. In case you are using Angular, have a look at extendedselenium2library that implements waiting for Angular actions with every keyword.

If you are not using Angular, but you know which Ajax action you expect will fire before you can proceed with your test, have a Wait Until Page Contains Element or Wait Until Element Is Visible keyword with a selector for an element that is specific for your ajax request.

leewz
  • 3,201
  • 1
  • 18
  • 38
jim
  • 906
  • 7
  • 14