public void WhenIProvideTheSeverityHarwarePlatformSummaryAndDesc(Table table) { foreach (var row in table.Rows) { bPage.SelectFromCombo(row["Severity"], row["Harware"], row["Platform"]); bPage.TypeIn(row["Summary"], row["Desc"]); } }
public void WhenIProvideTheSeverityHarwarePlatformAndSummary() { bPage.SelectFromCombo("critical", "Macintosh", "Other"); bPage.TypeIn("Summary 1", "Desc - 1"); }
public void WhenIProvideTheAnd(string severity, string harware, string platform, string summary, string desc) { bPage.SelectFromCombo(severity, harware, platform); bPage.TypeIn(summary, desc); }