Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Don't use full URLs with open/openWindow commands (http://baseurl part will be added by ERSelenium):
    Code Block
      |open|/wa/EditPerson|
      |open|/|
    
  • You can use setup/teardown methods from the class, specified in SeleniumActionsClass property by opening /wa/SeleniumAction/methodName URL, e.g.:
    Code Block
      |open|/wa/SeleniumAction/resetSession|
    
  • You can use @repeat-@values-@done metacommands to execute specific part of the test with different additional values edited in textboxes, e.g.:
    Code Block
      |open|/|@repeat
      @repeat
      ...some actions...
        @values user1 user2 user3
        |type|user|user0|
        @values __selenium_test@ @__sel notcorrect@@
    pass1 pass2 pass3
        |type|xpath=id('content')/input|__selenium_test@incorrectdomain|
    password|pass0|
        ...some more actions...
      @done
    
    The commands between @repeat and @done will be repeated several times, each time with new value in "xpath=id('content')/input" input field"user" and "password" input field. The values are seperated by spaces and if you have multiple @values lines, they all must have the same number of parameters. The @values section applies to the value of the next command.

Note: in Selenese format, lines that don't begin with "|" are treated as comments, so metacommands in the example above will be safely processed by Selenium IDE.

...