srinivasulu thatavarthi


{ City } kanigiri/banglore
< Country > india
* Profession * senior test engineer
User No # 114040
Total Questions Posted # 0
Total Answers Posted # 22

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 8
Users Marked my Answers as Wrong # 10
Answers / { srinivasulu thatavarthi }

Question { 3343 }

how to get the data from a winedit box in vb scripting and store it in a variable if data contains "_"(i.e data is TEST_1)


Answer

Dim strValue
strValue = Browser().Page().WinEdit().getRoproperty("supported property Name")

Msgbox strValue

Is This Answer Correct ?    0 Yes 1 No

Question { Inlogic, 2728 }

In where you are keeping or maintaining shared object repository (file)in your appliction?


Answer

In two places we can stored the Shared object Repository, If we can use QC or ALm then we can store into the test resources tab
In local we had created OR folder and we stored in OR folder

Is This Answer Correct ?    1 Yes 0 No


Question { CTS, 3107 }

How many regression test suits in your appliction?


Answer

Based on manual test suites, applications and releases...etc,

It means based on the requirements.

Is This Answer Correct ?    4 Yes 0 No

Question { CTS, 3107 }

How many regression test suits in your appliction?


Answer

My application are maintaining only one regression for one module means we are implementing regression for each module and we are adding the script or test cases into the suites, based on the client demand we are executing to the scripts. usually we are executing quarterly (Whenever it is moving to the production we are executing to the regression suite)

Is This Answer Correct ?    0 Yes 1 No

Question { 3213 }

A web table is having 3 columns(name, salary and checkbox) in qtp
How to select a checkbox based on the highest salary of an employee in a webtable.


Answer

First We need to get the highest salary from the column and store the row number in Variable(intRow)

set value = Browser().page().webtable().childItem(intRow,column,"Checkbox",0)

value.Set "ON"

set value =Nothing

Is This Answer Correct ?    1 Yes 3 No

Question { HCL, 2804 }

Consider there are objects in a webapp which are identified by QTP. Suppose you know only the logical name of a object(absolutely nothing else about it). Which approach will you take to find the "micClass" of the object(You can't use Object Spy, or can't add the object in repository)?


Answer

If without using object repository and object spy for identify the object then first i will record the test script(application)

Is This Answer Correct ?    0 Yes 2 No

Question { 2303 }

how do you make the variable declaration mandatory?what is the use of "option explicit"?


Answer

Option Explicit
Dim strValue, strValue
strValue = 20
'Expected Error: Name(Variable) is redefined

Dim intA, intB
intC= intA+intB

'Expected Error: Name(Variable is undefined)

Note: If we can use Option Explicit we have To pass the all the variables And it Is indentify undefined And redefined
variables

Is This Answer Correct ?    1 Yes 0 No

Prev    1    [2]