-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Testing] Enabling ported UITests from Xamarin.UITests to Appium - 17 #26081
base: main
Are you sure you want to change the base?
[Testing] Enabling ported UITests from Xamarin.UITests to Appium - 17 #26081
Conversation
* Migrated Flyout related Issues * Revert "Migrated Flyout related Issues" This reverts commit 8fbf985. * Migrate the Flyout Issues into Appium * Modify Issue 6184 and Issue 7856 * Updated the migrated code changes * Addressed the review changes * Added one more tab to ensure the more button visibility on windows * Addressed the review changes * Updated the comments --------- Co-authored-by: NafeelaNazhir <[email protected]>
Hey there @anandhan-rajagopal! Thank you so much for your PR! Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
},new Tab { | ||
Title = "notme", | ||
Items = { | ||
new ContentPage { Title = "notme", Content = new Label { Text = "Click More, then choose the target. If it does not crash, this test has passed." } } | ||
} | ||
},new Tab { | ||
Title = "notme", | ||
Items = { | ||
new ContentPage { Title = "notme", Content = new Label { Text = "Click More, then choose the target. If it does not crash, this test has passed." } } | ||
} | ||
},new Tab { | ||
Title = "notme", | ||
Items = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it's not that important in this case but why not just put it in a loop?
AddBottomTab("Tab 3"); | ||
AddBottomTab("Tab 4").AutomationId = "Tab 4 Content"; | ||
var contentPage5 = AddBottomTab("Tab 5"); | ||
AddBottomTab("Tab 5"); | ||
AddBottomTab("Tab 6"); | ||
AddBottomTab("Tab 7"); | ||
AddBottomTab("Tab 8"); | ||
AddBottomTab("Tab 9"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
Description of Change
This PR focuses on re-enabling and updating following tests from the Xamarin.UITest framework to be compatible with Appium. The tests, previously commented out, are reviewed, and modified to ensure they are functional with the Appium framework. We are going to enable tests in blocks in different PRs. This is the 17th group of tests enabled.
Add Helper Extension Methods for Flyout Navigation
Description
This PR introduces two new helper extension methods to simplify Flyout navigation in UI tests across different platforms:
TapFlyoutIcon
: Simulates tapping the Flyout icon to open the Flyout page.TapInFlyout
: Combines opening the Flyout and tapping a specific item within it.TestCases