Skip to content

Commit

Permalink
renamed NavigateBack as TapBackArrow
Browse files Browse the repository at this point in the history
  • Loading branch information
anandhan-rajagopal committed Nov 7, 2024
1 parent f1ff61a commit 841d199
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void Bugzilla1024Test()
App.Tap("Push");

App.WaitForElement("ListView");
App.NavigateBack();
App.TapBackArrow();

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public Issue12126(TestDevice testDevice) : base(testDevice)
public void NavigatingBackFromMultiplePushPagesChangesTabVisibilityCorrectly()
{
App.WaitForElement("TestReady");
App.NavigateBack();
App.TapBackArrow();
#if WINDOWS
App.WaitForElement("navViewItem");
#else
Expand Down
2 changes: 1 addition & 1 deletion src/TestUtils/src/UITest.Appium/HelperExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1661,7 +1661,7 @@ public static IList<object> GetPerformanceData(this IApp app, string performance
/// Navigates back in the application by simulating a tap on the platform-specific back navigation button.
/// </summary>
/// <param name="app">Represents the main gateway to interact with an app.</param>
public static void NavigateBack(this IApp app)
public static void TapBackArrow(this IApp app)
{
if (app is AppiumAndroidApp)
{
Expand Down

0 comments on commit 841d199

Please sign in to comment.