what is use of optionexplicit in variable declaration
Answer Posted / aaa
In hurry i wrongly posted.
Option explicit
Dim a ---We are declaring them in advnace. (Dimension)
a=10
NOT error.
Option explicit
a=10
throws an error.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How to execute a winrunner script in quicktest professional (qtp)?
how to do the batch testing in test director using manual testing procedure?
is it possible to add sheets to excel at runtime
How do you perform Regreession Testing?
How many types of recording modes are there?
what is run action?
How to save your test using quicktest professional (qtp)?
Presently i am working on QTP 8.2 Version,i want to know features in 9.2 version, because i have not sufficient time to put the effort on the 9.2 version
What is checkpoints for qtp?
Get the count of files of similar types from a folder.
How you can write contexts to text file in qtp?
How you can find the absolute value of the number in qtp?
What are the different kinds of test steps?
What is exact meaning of Database Checkpoint in QTP 9.2 and what are the different types of the database check points?
Hi, I am using OutputCheckPoint for 2 webelements Bed:4 and Bath:2 Full,1 partial in my result page and I am storing the value in the data table. I dont need the string Bed:4,I would like to get only the no 4. How can I get it? Even though I highlight only 4,It is seleting the full value "bed 4". Same thing happend for second webelement Bath:2 Full,1 partial I need only the No 2. I used the following to split MyArray = Split(UIBathResult, " ", -1, 1) But it is giving the value My Array(0)=Bath:2full,1Partial I need the only the nos for further comparision.Any help? Thanks Uma