How to calculate the edit field length
Answers were Sorted based on User's Feedback
Answer / guest
For edit boxes in winrunner direct function is not
available to find length of text.We can use length()
function.
EX:- edit_get_text("button logical name",outvariable);
//In outvariable entered text will be stored.
x=length(outvariable);
//The length function returns the length of the text.
report_msg(x);
| Is This Answer Correct ? | 0 Yes | 0 No |
What in contained in the GUI map?
what are Recoring modea available in winrunner?
3 Answers Second Foundation, TCS,
Hi,i cleared the first round in Microstrategy and my second round(project manager) is scheduled so can any one tel me what r they asked and gv me some steps how i wil tel them?
what is mean block box and white box testing. pls give exact example in the question
What is the extension of gui map file?
HOW TO TEST A SOFTWARE/APPLICATION?
Where are the expected results will be stored?
how are virtual object configured
what is the winrunner framework?
What are data driven tests?
How to do the "Exception Handling" in Winrunner ..... Give Me detail Practical approach....(Object Exception,TSL exception & Pop - up also).......?
You declared a constant in a main test..Later you want tried to reinitialize that constant..what will happened? i.e const i=10; -- --- i=20; what will happen?