Automation Testing, Manual Testing, QTP/UFT 11 , QC/ALM 11 ,SAP TAO, Unix, Selenium, Oracle SQL, Shell Scripting and For Online Trinings to contact me : Cell:+91-8897972059 , Email Id : quicktestprotech@gmail.com

Tuesday, February 25, 2014

How to Hide And/Or Remove a Test Set Test Status in ALM v11 using Workflow

Summary:  This workflow example demonstrates how to omit the Test Set Test status code “Blocked” from the list of available status values. This example assumes you are a Project Administrator proficient with programming skills, proficient in vbscript, Quality Center objects and methods. *** It is necessary to read and accept the ‘Disclaimer’ section at the end of this  notes. *** Business Rules 1) When a user enters the Test Lab module, the “CUST_Status” list is populated. 2) The “CUST_Status” list is populated from the “Status” list. 3)...

Wednesday, February 12, 2014

Different types of Frameworks used in QTP

Different types of Frameworks used in QTP ...

What is Test Automation Framework?

What is Test Automation Framework? Suppose you are given a task where you have to automate some test cases for an application. When you are finished automating the application, what would be your expectations from the scripts you have created? Wouldn’t you want that –  the scripts should run as intended without any issues.  the code and the flows should be easy to understand.  the scripts should be easy to maintain in case of any changes. All the above points can be achieved by using a proper Automation Framework. An Automation Framework...

Tuesday, February 11, 2014

Script to select a mail having subject 'hi' or 'HI'

Script to select a mail having subject 'hi' or 'HI' n=Browser("yahoo").Page("yahoo").WebTable("Inbox").RowCount For i=2 to n s=Browser("yahoo").Page("yahoo").WebTable("Inbox").GetCellData(i,7) If lcase(trim(s))="hi" Then Browser("yahoo").Page("yahoo").WebCheckBox("index:="&i-1).set "ON" End If Ne...

How to close all the browsers and open the specific browser

How to close all the browsers and open the specific browser Set objDesc=Description.Create objDesc("micclass").value="Browser" Set objColl=Desktop.ChildObjects(objDesc) For i=0 to objColl.count-1 step 1 'objColl(i).close 'or Browser("Creationtime:="&i).close Next systemutil.Run "iexplore","www.google.co...

How to close all the browsers

      How to close all the browsers Set objDesc=Description.Create objDesc.Add "micclass","Browser" set objColl=Desktop.ChildObjects(objDesc) msgbox objColl.count For i=0 to objColl.count-1 step 1 strBrname=objColl(i).GetRoproperty("name") ' to get the browser name msgbox strBrname objColl(i).close ' to close the browser Next &nbs...

How to delete cookies

How to delete cookies systemutil.Run "iexplore","http://www.google.com/" webutil.DeleteCookies 'To delete the cookies systemutil.CloseDescendentProcesses...

Loading...