A different value each time
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2010
04:07 AM
04-12-2010
04:07 AM
A different value each time
I want to test a web based app. and for each area I need to test, I must enter a unique value (new product code, for example).
I appreciate that I must have some form of numerical element to the name.
Is it possible to have AutomatedQA run a test that adds 50 new products to my system each with the name 'Testcode<x>'. Where '<x>' is one digit higher than the previous run (Testcode1, Testcode2, and so on)?
Many thanks in advance for a response.
I appreciate that I must have some form of numerical element to the name.
Is it possible to have AutomatedQA run a test that adds 50 new products to my system each with the name 'Testcode<x>'. Where '<x>' is one digit higher than the previous run (Testcode1, Testcode2, and so on)?
Many thanks in advance for a response.
1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2010
05:09 AM
04-12-2010
05:09 AM
This is easy enough using a for loop.... something like the following (DelphiScript)
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
for i := 1 to 50 do begin
Page.TextControl.value := 'TestCode' + VarToStr(I);
Page.SubmitButton.Click;
end;
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
