Exemplo n.º 1
0
 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"]);
     }
 }
Exemplo n.º 2
0
 public void WhenIProvideTheSeverityHarwarePlatformAndSummary()
 {
     bPage.SelectFromCombo("critical", "Macintosh", "Other");
     bPage.TypeIn("Summary 1", "Desc - 1");
 }
Exemplo n.º 3
0
 public void WhenIProvideTheAnd(string severity, string harware, string platform, string summary, string desc)
 {
     bPage.SelectFromCombo(severity, harware, platform);
     bPage.TypeIn(summary, desc);
 }