Ejemplo n.º 1
0
    public void Main()
    {
        Abstr abstr = new Concrete();

        abstr.Describe();
        Console.ReadLine();
    }
Ejemplo n.º 2
0
 public TChild Describe <TChild>(HP.LFT.SDK.Web.CSSDescription cssSelector)  where TChild : class, HP.LFT.SDK.Web.IWebElement
 {
     return(Concrete.Describe <TChild>(cssSelector));
 }
Ejemplo n.º 3
0
 public TChild Describe <TChild>(HP.LFT.SDK.Web.XPathDescription xpath)  where TChild : class, HP.LFT.SDK.Web.IWebElement
 {
     return(Concrete.Describe <TChild>(xpath));
 }
Ejemplo n.º 4
0
 public TChild Describe <TChild>(HP.LFT.SDK.IDescription description)  where TChild : class, HP.LFT.SDK.ITestObject
 {
     return(Concrete.Describe <TChild>(description));
 }