Objectivity.Test.Automation.Tests.PageObjects.PageObjects.Kendo.KendoTreeViewPage.Open C# (CSharp) Method

Open() public method

public Open ( ) : KendoTreeViewPage
return KendoTreeViewPage
        public KendoTreeViewPage Open()
        {
            this.Driver.NavigateTo(this.url);
            return this;
        }
    }

Usage Example

 public void KendoTreeViewSelectTest()
 {
     var text = "logo.png";
     var homePage = new KendoTreeViewPage(this.DriverContext);
     homePage.Open().CollapseTreeView().SelectElementByText(text);
     Assert.AreEqual(text, homePage.SelectedOption);
 }
All Usage Examples Of Objectivity.Test.Automation.Tests.PageObjects.PageObjects.Kendo.KendoTreeViewPage::Open