OpenQA.Selenium.ClearTest.TextAreaShouldNotClearWhenReadOnly C# (CSharp) Méthode

TextAreaShouldNotClearWhenReadOnly() private méthode

private TextAreaShouldNotClearWhenReadOnly ( ) : void
Résultat void
        public void TextAreaShouldNotClearWhenReadOnly()
        {
            driver.Url = readOnlyPage;
            IWebElement element = driver.FindElement(By.Id("textAreaReadOnly"));
            element.Clear();
        }