Skip to content

Commit

Permalink
Fix element automation id
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth committed Jun 17, 2024
1 parent 0f51eba commit 2063ef8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void SingleTap()
App.WaitForElement("SingleTapSurface");
App.Tap("SingleTapSurface");

var result = App.FindElement("SingleTapResults").GetText();
var result = App.FindElement("SingleTapGestureResults").GetText();
ClassicAssert.AreEqual("Success", result);
}

Expand All @@ -79,7 +79,7 @@ public void DisabledSingleTap()
App.WaitForElement("DisabledTapSurface");
App.Tap("DisabledTapSurface");

var result = App.FindElement("DisabledTapResults").GetText();
var result = App.FindElement("DisabledTapGestureResults").GetText();
ClassicAssert.AreNotEqual("Success", result);
}
}
Expand Down

0 comments on commit 2063ef8

Please sign in to comment.