상속: ProjectPageBase
 public void KendoDropDownListSelectedOptionTest()
 {
     var option = "Black";
     var homePage = new KendoDropDownListPage(this.DriverContext);
     homePage.Open();
     Assert.AreEqual(option, homePage.CapColorSelectedOption);
 }
 public void KendoDropDownListOptionsTest()
 {
     var options = new Collection<string> { "Black", "Orange", "Grey" };
     var homePage = new KendoDropDownListPage(this.DriverContext);
     homePage.Open();
     CollectionAssert.AreEqual(options, homePage.CapColorOptions);
 }