hpsqtp.blogspot.com hpsqtp.blogspot.com

hpsqtp.blogspot.com

HP's QTP

This blog contains QTP FAQs and QTP & Testing Interview Questions.

http://hpsqtp.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR HPSQTP.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

October

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 2.7 out of 5 with 6 reviews
5 star
1
4 star
0
3 star
3
2 star
0
1 star
2

Hey there! Start your review of hpsqtp.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.7 seconds

FAVICON PREVIEW

  • hpsqtp.blogspot.com

    16x16

  • hpsqtp.blogspot.com

    32x32

CONTACTS AT HPSQTP.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
HP's QTP | hpsqtp.blogspot.com Reviews
<META>
DESCRIPTION
This blog contains QTP FAQs and QTP &amp;amp; Testing Interview Questions.
<META>
KEYWORDS
1 hp's qtp
2 print retval
3 set obj=nothing
4 else retval=0
5 12 comments
6 simagefilepath= d tempimage png
7 captureprintscreen simagefilepath
8 sub captureprintscreen sfilepath
9 end sub
10 set oword=createobject word application
CONTENT
Page content here
KEYWORDS ON
PAGE
hp's qtp,print retval,set obj=nothing,else retval=0,12 comments,simagefilepath= d tempimage png,captureprintscreen simagefilepath,sub captureprintscreen sfilepath,end sub,set oword=createobject word application,owordvisible=true,odocsave,set oword=nothing
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

HP's QTP | hpsqtp.blogspot.com Reviews

https://hpsqtp.blogspot.com

This blog contains QTP FAQs and QTP &amp;amp; Testing Interview Questions.

INTERNAL PAGES

hpsqtp.blogspot.com hpsqtp.blogspot.com
1

HP's QTP: May 2011

http://hpsqtp.blogspot.com/2011_05_01_archive.html

This blog contains QTP FAQs and QTP and Testing Interview Questions. Tuesday, May 17, 2011. Error handling in QTP using On Error. By using QTP recovery scenario, we can handle errors. The other way around handling Errors is using "On Error" statements. Following code throws an Exception at Line 6, and the execution cannot proceed further. Msgbox "after function call". Here the output is "hello", the script never reaches to the second output statement. Msgbox "after function call". On Error Resume Next.

2

HP's QTP: QTP unables to identify pop up window

http://hpsqtp.blogspot.com/2013/02/qtp-unables-to-identify-pop-up-window.html

This blog contains QTP FAQs and QTP and Testing Interview Questions. Thursday, February 7, 2013. QTP unables to identify pop up window. There are couple of scenarios where we perform some operations in a application, where a pop up window will appear like:. 1 When you delete a user/emp, it will display a pop up saying "Do you want to Delete the user? 2 You choose some pop up menu option, then a pop up window may be displayed with the selected items functionality. How to overcome this error? How to get QT...

3

HP's QTP: July 2011

http://hpsqtp.blogspot.com/2011_07_01_archive.html

This blog contains QTP FAQs and QTP and Testing Interview Questions. Sunday, July 24, 2011. How to select a check box click a link in a web table with text. This is one of the most common interview question. The first column of a web table contains checkboxs, and in the second column have some text. If any row in the second column contains a text say "uday", then the corresponding checkbox in the first column should be selected. How can we do that? It is pretty simple: :). Posted by Anem Udaya Kumar.

4

HP's QTP: June 2011

http://hpsqtp.blogspot.com/2011_06_01_archive.html

This blog contains QTP FAQs and QTP and Testing Interview Questions. Sunday, June 26, 2011. Swap two numbers without using any other parameter. Swap two numbers using some extra parameter. Posted by Anem Udaya Kumar. Different Test Case design techniques. 4 State Transition graphs Cause -Effect graphs. 5 Error guessing etc. Posted by Anem Udaya Kumar. Examples for High Severity and Low priority and Low Severity and High Priority. High Severity and Low Priority. A Any out of scope items. For i=1 to noItems.

5

HP's QTP: July 2012

http://hpsqtp.blogspot.com/2012_07_01_archive.html

This blog contains QTP FAQs and QTP and Testing Interview Questions. Saturday, July 28, 2012. How to activate, minimize, maximize a browser using QTP. You can use below code to active, minimize, maximize a browser. I put all these three methods in a single function, but you need to tweek this code as per your needs. HWnd = Object.GetROProperty("hwnd") 'First get the window handle. On Error Resume Next. Window("hwnd:=" and hWnd).Activate 'Put fouse on the window. If Err.Number 0 Then. On Error Goto 0.

UPGRADE TO PREMIUM TO VIEW 14 MORE

TOTAL PAGES IN THIS WEBSITE

19

LINKS TO THIS WEBSITE

qtpnovice.blogspot.com qtpnovice.blogspot.com

My QTP notes: Function GetElementsByClassName

http://qtpnovice.blogspot.com/2008/09/getelementsbyclassname.html

Monday, September 15, 2008. Recently I faced with problem that in DOM model there is no function GetElementsByClassName like functions GetElementById or GetElementsByName, so I searched on web for this custom function and found some examples, then I modified it a bit and got such code:. This function returns all elements found in opened IE page with specified className. IE - Internet Explorer object. Function GetElementsByClassName(IE, className). Set tags = IE.document.all. For Each tag In tags. Easy Wa...

qtpnovice.blogspot.com qtpnovice.blogspot.com

My QTP notes: Compare two text files using standart Windows utility

http://qtpnovice.blogspot.com/2008/12/i-faced-situation-when-i-need-compare.html

Tuesday, December 2, 2008. Compare two text files using standart Windows utility. I faced situation when in my QTP test I need compare two html pages to find out what changed in this HTML code. I searched some time in Google and tried to find some tool with command line or ActiveX interface,. So I can use it for my test needs. But my efforts did not give acceptable results. Finally, I decided to use standard Windows utility named fc.exe (abbreviation from 'File Compare'). Maybe it helps someone. Subscrib...

qtpnovice.blogspot.com qtpnovice.blogspot.com

My QTP notes: December 2008

http://qtpnovice.blogspot.com/2008_12_01_archive.html

Tuesday, December 2, 2008. Compare two text files using standart Windows utility. I faced situation when in my QTP test I need compare two html pages to find out what changed in this HTML code. I searched some time in Google and tried to find some tool with command line or ActiveX interface,. So I can use it for my test needs. But my efforts did not give acceptable results. Finally, I decided to use standard Windows utility named fc.exe (abbreviation from 'File Compare'). Maybe it helps someone. Easy Way...

qtpnovice.blogspot.com qtpnovice.blogspot.com

My QTP notes: My first post

http://qtpnovice.blogspot.com/2008/09/my-first-post.html

Monday, September 15, 2008. Subscribe to: Post Comments (Atom). Easy Way to Automate Testing by Motevich. HP QTP FAQ on Blogspot. HP's QTP on Blogspot. IT Knowledge Exchange QA Focus. KnowledgeInbox (By Tarun Lalwani). Learn QTP by Ankur. QTP Tutorials and Interview Questions. Quick Test Professional by Ankur. Quick Test Professional on Wordpress by Mohan Kumar Kakarla. Stefan Thelenius about Software Testing. My QTP web-resources list. View my complete profile.

qtpnovice.blogspot.com qtpnovice.blogspot.com

My QTP notes: Function ClickLinkByClass

http://qtpnovice.blogspot.com/2008/09/function-clicklinkbyclass.html

Monday, September 15, 2008. Also, if link was successfully found function returns it's value, in other case - returns False. This function used to click on link by indicating class of element, that contains this link. When there are more than one element with specified class, you should specify keyword by which needed element can be identified (for example, ProductName for link to installer on CP). Function ClickLinkByClass(IE, ClassName, keyword). ClassArray = GetElementsByClassName(IE, ClassName).

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL LINKS TO THIS WEBSITE

5

OTHER SITES

hpsq.org hpsq.org

homestead power squadron

This page uses frames, but your browser doesn't support them.

hpsq.tvsc.cn hpsq.tvsc.cn

404 Not Found

hpsqc.blogspot.com hpsqc.blogspot.com

HP's Quality Center

Monday, May 10, 2010. What are the disadvantages of Quality Center. I think the strengths outweight the weaknesses, but wish something could be done to improve these items. 1 If I had to pick any weaknesses, I'd say that customization is too rigid. 2 Workflow script code allows you to customize a lot of what happens in the system, but not enough events are exposed to provide full control. 4 Not all modules provide customization or workflow handling. This is something people seldom take into account and f...

hpsqld.com.au hpsqld.com.au

HPS Contractors

71 Aumuller Street, Cairns, QLD, 4870, Australia. HPS Construction & Project Management. HPS Contractors are the proud winners of multiple HIA and Master Builders Awards, including recognition for our work on AFL Cape York House, which won the 'Sporting and Community Service Facilities up to $5 million' award. Welcome to the HPS Group. Providers of Contract Services. HPS Contractors are North Queensland’s leading providers of contract services in construction and project management, plumbing, roofing, gl...

hpsqtp.blogspot.com hpsqtp.blogspot.com

HP's QTP

This blog contains QTP FAQs and QTP and Testing Interview Questions. Sunday, March 17, 2013. How to compare two images using QTP. We know by using Bitmap checkpoint, we can compare two images. But is there a other way we can compare? Yes, we can use "IsEqualBin" method from Mercury.FileCompare. SImgPath1="C: Users user Downloads SAI 01461 exposure.JPG". SImgPath2="C: Users user Downloads SAI 01462 exposure.JPG". SImgPath2="C: Users user Downloads SAI 0175 exposure.JPG". Posted by Anem Udaya Kumar. For so...

hpsquare.com hpsquare.com

Registrant WHOIS contact information verification

You have reached a domain that is pending ICANN verification. As of January 1, 2014 the Internet Corporation for Assigned Names and Numbers (ICANN) will mandate that all ICANN accredited registrars begin verifying the Registrant WHOIS contact information for all new domain registrations and Registrant contact modifications. Why this domain has been suspended. Email address has not been verified. This is a new domain registration and the Registrant email address has not been verified. Wenn Sie Inhaber der...

hpsquare.net hpsquare.net

Index of /

hpsquared.wordpress.com hpsquared.wordpress.com

Brainstorming Data Management | Offering Points of View on Contemporary Information Management Practices

124; Comments RSS. Welcome to HPSquared’s Blog! Our blog offers lively and at times controversial perspectives on key issues within information management and related domains. We encourage posts and comments from our visitors! HPSquared provides advisory services in areas such as: data governance, master data management, information management strategy, enterprise data management and architecture. Contact marc.hurst@hpsquaredllc.com. Website: www.hpsquaredllc.com. Join 11 other followers. Nor is it unusu...

hpsquaredllc.com hpsquaredllc.com

HPSquared Home Page

Visit the HPSquared Blog:. The stone age was marked by man's clever use of. Crude tools; the information age, to date, has been. Marked by man's crude use of clever tools. Experienced Based Solutions Focused Results Driven. A Well Qualified Boutique Management. Which focuses on information. Management and data solutions. Senior Executive Level Advisors and. With business and technology expertise. Disciplined with a Problem Solving. Practice leadership and C level backgrounds.