Selenium IDE: running a test as part of a test

I wrote a test using the Selenium IDE (with flow control extensions) that iterates through elements in two drop-down lists (using 2 loops) and fills out the data entry form according to the elements selected in the drop-down lists.

In any case, the form for each iteration is different, instead of using flow control to deal with this in one test (make the test very large). Is it possible to cover this function in another test executed from a loop?

Can this be done in the Selenium IDE?

If this can be done, can you point out any online examples / tutorials?

thank you for your time

David

+3
source share
2

, , Selenium IDE: SelBlocks

script/endScript , . :

call|fillform|name="dilbert",phone="555-1212"
call|fillform|name="wally",phone='unlisted"
script|fillform
  type|name|${name}
  type|phone|${phone}
endScript

( String , javascript.)

+1

Source: https://habr.com/ru/post/1794757/


All Articles