Blog
Categories
- Agile
- Best Practices
- Center of Excellence
- Cloud
- Featured
- Functional Testing and Automation
- Giveaway
- Healthcare IT
- HP
- HP Discover Conference
- HP Software Patches
- Latest News
- LoadRunner
- Methodology
- Mobile
- Northway Navigator Club News
- Operating Systems
- Performance Testing and Automation
- Quality Assurance
- Security
- Service Virtualization
- SiteScope
- Training
- TweakLR
- Uncategorized
- VuGen Code
Archives
- April 2019
- September 2018
- July 2018
- June 2018
- October 2017
- August 2016
- April 2015
- February 2015
- September 2014
- August 2014
- May 2014
- April 2014
- March 2014
- October 2013
- September 2013
- August 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- February 2011
- July 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- September 2007
- August 2007
- July 2007
- October 2006
- April 2006
- March 2005
- October 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- April 2003
-
Service Test 11: Programmatically Set and Get Test Variable Values
Posted on July 11, 2012 by Admin
Test Variables in Service Test 11 are global variables that can be accessed later in the test script, either by linking to the variable in the GUI (Link to a Data Source) or by setting the variable in the GUI (Set Test Variable activity). Both can also be done programmatically using C#. For example, it may be necessary to set a Test Variable inside an activity Event (instead of using the Set Test Variable activity). In this post, we cover the methods available within Service Test to set and retrieve Test Variables.
Create Read Entire Entry -
QuickTest Pro: Working with the Windows Clipboard (Clear, Copy and Paste Text)
Posted on July 10, 2012 by Admin
QuickTest Pro can interface directly with the Windows OS clipboard during replay using the VBScript “Mercury.Clipboard” object built in to QTP. This object can be used to validate clipboard data if the AUT programmatically manipulates the clipboard (and your test case requires validation of this functionality).
Some of the more common methods supported in the “Mercury.Clipboard” object include:Clear – clear the clipboard contents
SetText – write text to the clipboard
GetText – retrieve text from the Read Entire Entry -
Vugen: Will This Code Remove Trailing Spaces?
Posted on July 9, 2012 by Admin
Let’s have a little fun today – and hopefully I can get some interaction from you C Guru’s out there. How about something cryptic in C? Let’s say I wanted to remove some trailing spaces with as few lines of C code as possible. Will the example below work?
static char* rtrim( char* s)
{
int i;
if (s){i = strlen(s); while ((–i)>0 && isspace(s[i]) ) s[i]=0;}
return s;
};
Why or why not? Care to explain what this code is doing? Comments are open and welcome. Read Entire Entry -
Our HP Discover Presentation Is Now Online!
Posted on July 6, 2012 by Admin
For those of you who missed our presentation at HP Discover, we were able to get a recording of it from the audience perspective. We now have it online for you to watch at your convenience.
Here is Part One:HP Discover Presentation Part 1 from Scott Moore on Vimeo.
And here is Part Two:
HP Discover Presentation Part 2 from Scott Moore on Vimeo.
Enjoy!
-
Open Multiple Windows System Files With One Click
Posted on July 5, 2012 by Admin
Assumptions:
1. You are on a windows platform.
2. You have Windows Scripting (WSH) enabled.
3. You have no security issues running VBS scripts.The following code will pull up several system files in notepad all in one place. Save this code into a text file and then rename the extension to .vbs for it to become executable. Modify it to take out or add more by changing what is in the array. For example, taking out everything except the hosts file from the array will mean only the hosts file will be opened in notepad:
Set Sh Read Entire Entry -
Mobile Testing Challenges – Jailbreaking & Rooting
Posted on July 3, 2012 by Admin
On July 22, 2010 – The U.S. Copyright Office, a division of the Library of Congress, authorized several new exemptions to the Digital Millennium Copyright Act (DMCA), one of which allowed mobile phone users to “jailbreak” their devices to use apps not authorized by the phone’s manufacturer.
While this move was heralded by niche application development shops and iPhone users, Apple was not so thrilled with what they perceived as giving carte blanche freedom to users to “hack” into their tightly controlled Apple devices and Read Entire Entry
-
HP LoadRunner 11.50 and HP Performance Center 11.50 Tutorials (Technical videos)
Posted on July 3, 2012 by Admin
From Silvia Siqueira – Sr Product Marketing for HP LoadRunner
After launching the new version of HP LoadRunner 11.5 and HP Performance Center 11.5, we are pleased to provide a list of great recorded tutorials that describe the new features and enhancements. See the list below for tutorial videos title and URLs:
HP LoadRunner 11.50 – Tutorial: Web Async (HP Videos)
HP LoadRunner 11.50 – Tutorial: GTW DFE (HP Videos)
HP LoadRunner 11.50 – Tutorial: Flex protocol (HP Videos)
HP LoadRunner 11.50 – Tutorial: Truclient Firef Read Entire Entry -
Vugen: Gracefully Handle Various HTTP Return Codes
Posted on July 2, 2012 by Admin
There may be times where you want to build in logic for how your Vuser reacts to the various types of HTTP status return codes received throughout a script. For example, as web servers get overloaded, they may start sending 503 return codes. If you wanted to try and resubmit and finish out the transaction, this might be a more graceful way to handle the occasional 503 than just giving up and killing the iteration immediately. Of course, as the load continues to increase, the 503’s will become more frequent and eventually you will Read Entire Entry
-
Implement HP ALM and Quality Center Right The First Time With 6D
Posted on June 29, 2012 by Admin
As an HP Elite partner, Northway Solutions Group has the opportunity to do implementations of HP ALM and QC 11.X for our clients. One of the biggest challenges that any company has when implementing is a new tool is leveraging the tool in a way that optimizes the value that the tool brings to the organization. The company often struggles to learn how best to use the tool, and many times lacks the basic organizational “best practices” that would enable them to be effective right out of the gate with the new solution. Members Read Entire Entry
-
LoadRunner 11.5 VuGen – Why SharpDevelop?
Posted on June 28, 2012 by Admin
Many folks are probably wondering why HP decided to change the engine for VuGen to the SharpDevelop platform in LoadRunner 11.5. I recently posed this question to Shane Evans, the product manager for LoadRunner:
“There were a lot of reasons for the decision. We looked at Visual Studio and Eclipse as options, among others, but each had challenges. Eclipse would have been nice, [but] the whole Java thing was a deal breaker…The team was able to build in SharpDevelop in just 2 months… We also had the experience of our Servic Read Entire Entry -