arun


{ City } pune
< Country > india
* Profession * cosultant
User No # 102165
Total Questions Posted # 0
Total Answers Posted # 25

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

Users Marked my Answers as Correct # 11
Users Marked my Answers as Wrong # 3
Answers / { arun }

Question { 3740 }

What is meant by virtual obj and Y do v need virtual obj configuration.


Answer

Virtual object is an object,which is defined and used by the user whenever required as per the user requirement.

-on virtual object
we can not do the object spy
check point cannot applicable
it is a non standard object as per the QTP

etc

Is This Answer Correct ?    1 Yes 0 No

Question { 4150 }

can u pls explain me About Driver script.


Answer

Driver script is a script which start loading the environment variable,varibale initialization,data import and drive the execution process as defined in the framewark.

Is This Answer Correct ?    0 Yes 0 No


Question { Indium Software, 4944 }

In google i'm going to search something like "rose", i usually get 10 results in the first page and in 2nd page 10 results and in 3rd 10 results so on upto 10th page 10 results. so if i want to open all the 10 pages 10 results i.e., 100 results and close..what is the DP for this? pls can anyone answer my Question..PLZZZZZ...


Answer

If the each result page opens on the same window

set objHierachy=Browser("title:=Google.*").page("title:=Google.*")

With objHierachy
.WebEdit("name:=q")
.set "rose"
.WebButton("name:=btnK")
wait 2
'by default the search result shows in 1st page,
'so will write code for next 9 pages to see the result.
' if the next pages opens in the same window

For i=2 to 10
.Link("name:="&i).click
If i=10 then
.close
End If
Next

End With

Is This Answer Correct ?    0 Yes 2 No

Question { NIIT, 3062 }

Can we check environment variable value without existing of environment variable


Answer

yes
eg: strValue=Environment("XYZ").Value

Is This Answer Correct ?    0 Yes 0 No

Question { Polaris, 3547 }

Why we are going for descriptive programming ? I answered as 'If objects are not present in OR we will go for descriptive Programming'? Is this correct ?


Answer

if Team Size is big
if objects are dynamic
if it is require to start automation before build release
it is easy to use
it is easy for maintance
it is independent of QTP versions

Is This Answer Correct ?    1 Yes 0 No

Question { 1984 }

what is automation(qtp)bug pls giv me one ex?


Answer

Example:
suppose i have 5 earlier releases in which all test cases were automated,we all knows for every release automated scrpt are running as a regression testing,because functional QA are focuing on current releases.

incase, while running the regression pack we found some issue due to break of functionality, then the issue is called automation bug.

Is This Answer Correct ?    0 Yes 0 No

Question { 2157 }

In a QTP project lets say there are 100+ function library and incorrectly we have duplicate some function in multiple libraries. How to find those duplicate functions and remove them?


Answer

Copy the function names and press Ctrl+F to open the find dialog, past the copied function name in "Find text:" box and select "Entire solution" from Look in: list box and press "Find Next" or "Find All" button.

You will get the required function name from all functin libraries

Is This Answer Correct ?    0 Yes 0 No

Question { 3342 }

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

strValue=Window().WinEdit().GetRoProperty("value")

Is This Answer Correct ?    0 Yes 0 No

Question { CTS, 3193 }

if we made any changes in shared object repository how it reflects of others like our team members?


Answer

Shared Repository is a common repository which is using by all the team members,
Before script development/exectuion,every team members will take a copy of the Shared Repository to their local system.

if any changes happened before taking copy of the shared Repository by team members it will effect to all.

if any team member changes any object property in his/her local sytem,then it will not effect to all.

Is This Answer Correct ?    0 Yes 0 No

Question { IBM, 2948 }

We have a dynamic webtable where rows keep on adding.I have to click on particular row where the status changes to Update or Save.How do you click on Status(either it can be Update or save)


Answer

'Get Column number of Status from table eg: it is 5
intColNumber=5

set objTable=Browser("index:=0").page("index:=0").Webtable("index:=0")
intRowNumber=objTable.getRowWithCellText("Update") ' i have taken example of update
set objChildObject=objTable.ChildItem(intRowNumber,intColNumber,"WebElement",0)

objChildObject.click

Is This Answer Correct ?    0 Yes 1 No

Prev    1    [2]