Ejemplo n.º 1
0
 public void Scientific_GetAnAttribute_02()
 {
     Driver.StartApp();
     ScientificPage.GoTo();
     Assert.IsTrue(ScientificPage.VerifyReciprocalDoesNotHaveKeyboardFocus());
     Driver.Shutdown();
 }
Ejemplo n.º 2
0
 public void Scientific_GetAnAttribute_01()
 {
     Driver.StartApp();
     ScientificPage.GoTo();
     Assert.IsFalse(ScientificPage.VerifyReciprocalHasKeyboardFocus());
     Driver.Shutdown();
 }
Ejemplo n.º 3
0
 public void ScientificCalculator_VerifyRecipricalDoesNotHaveKeyboardFocus_version2()
 {
     Driver.StartApp();
     ScientificPage.GoTo();
     Assert.IsTrue(ScientificPage.VerifyReciprocalDoesNotHaveKeyboardFocus());
     Driver.Shutdown();
 }
Ejemplo n.º 4
0
 public void Scientific_SquareNumber()
 {
     Driver.StartApp();
     ScientificPage.GoTo();
     ScientificPage.Square(4);
     Assert.IsTrue(ScientificPage.VerifyResultDisplayedIs(16));
     Driver.Shutdown();
 }