
Loading ...
When launching the Siebel application with SWECmd=AutoOn parameter in the URL you might get a “Failed to connect to Siebel” error message. This error message indicates that the Siebel client package is corrupt and needs to be repaired. Corruption of Siebel packages can also cause QTP to stops identifying any of the Siebel objects even [...]
Register or Login to read the full article...
Tags used -
cannot, corruption, Error, Fialed to connect to Siebel, identification, identify, Object, Repair, Siebel, Unable

Loading ...
This article would go over some common mistakes people make while using Descriptive Programming (DP) in QTP.
Using strings with Pattern
Let’s assume we want to click a link “Logout (Tarun)” on my web page. Two possible methods that can be used are
Method 1
Browser("miccclass:=Browser").Page("micclass:=Page").Link("text:=Logout (Tarun)").Click
Method 2
Set oDesc = Description.Create
oDesc("text").Value = "Logout (Tarun)"
Browser("miccclass:=Browser").Page("micclass:=Page").Link(oDesc).Click
Now both the above methods will [...]
Register or Login to read the full article...
Tags used -
cannot, Class, Class Name, Common, Descriptive, Descriptive Programming, identify, micclass, Object