Export Test Cases from Quality Center (QC) to excel-with design steps
I have been looking for this since very long. I thought this cannot be done till i learned excel reports in quality center.So, follow the following steps to export test cases…
I have been looking for this since very long. I thought this cannot be done till i learned excel reports in quality center.So, follow the following steps to export test cases…
While running quality center for the first time on a windows 7 machine, following error is displayed stating that some client components were not downloaded sucessfully:-Following client components were not…
Following VB script can be used to launch QTP. 1: Dim QTPObj 2: Dim QTPTest 3: Set QTPObj=CreateObject("QuickTest.Application") 4: If Not QTPObj.Launched then 5: QTPObj.Launch 6: End if 7: QTPObj.Visible=True…
Software Test Automation is often associated with some common misconceptions and myths. These myths generally lead to Failure of automation processes:-It's magic vielTime is an important factor when it comes to automation.…
We can use the following code to convert system date to other formats:- 1: MyDate = Date 2: msgbox MyDate 3: MyDay = day(MyDate) 4: MyMonth = Month(MyDate) 5: MyYear…
I had a scenario where i had to display the message as - The operaration cannot be performed because "xyz" field is blank. To include double quotes in the…
To concatenate two strings, there is no separate function in QTP/VbScript. ‘+’ operator is used for concatenation of two strings.For example, run the below code. 1: string1 = "String" 2:…
Right click My computer and click Properties. System Properties window would open. Click on Advanced tab. Click on Environment Variables tab. Environment Variables window would be opened. Scroll down the…
GetToPropertyGetRoPropertyGetToProperty returns the value of a test object which was recorded by QTP.GetRoProperty returns the current value of test object property.GetToProperty returns the value from the test object's description.GetRoProperty returns…
Keyword Driven framework is also known as table-driven or action-word driven framework. In this framework, an application map is defined including it’s objects, components, actions and an expected value for…