public void ChangeMinChangeCount() { driver.Navigate().GoToUrl(URL); Polynom polynom = new Polynom(driver); polynom.MinChangeCountClick(); Assert.That(polynom.IsSelectedMinChangeCount(), Is.True); }
public void ExamlePolynomByMinChangeCount(string title, string polynomRes) { driver.Navigate().GoToUrl(URL); Polynom polynom = new Polynom(driver); polynom.SetExampleFunction(); polynom.MinChangeCountClick(); polynom.FindPolynomClick(); Assert.That(polynom.TitleResValue(), Is.EqualTo(title)); Assert.That(polynom.PolynomResValue, Is.EqualTo(polynomRes)); }