OpenQA.Selenium.ElementAttributeTest.ShouldGetNumericAtribute C# (CSharp) Method

ShouldGetNumericAtribute() private method

private ShouldGetNumericAtribute ( ) : void
return void
        public void ShouldGetNumericAtribute()
        {
            driver.Url = formsPage;
            IWebElement element = driver.FindElement(By.Id("withText"));
            Assert.AreEqual("5", element.GetAttribute("rows"));
        }