15 years ago
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 th...
for i := 1 to 50 do begin
Page.TextControl.value := 'TestCode' + VarToStr(I);
Page.SubmitButton.Click;
end;