Exemple #1
0
        public void should_select_by_value()
        {
            var radio = new RadioButtons(_driver, By.Name("gender"));

            radio.SelectByValue("female");

            Assert.AreEqual("female", radio.SelectedOption.Element.GetAttribute("value"));
        }