-
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 - 5 #25772
base: main
Are you sure you want to change the base?
[Testing] Enabling ported UITests from Xamarin.UITests to Appium - 5 #25772
Conversation
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). |
@@ -19,12 +18,11 @@ public Issue12642(TestDevice testDevice) : base(testDevice) | |||
[Category(UITestCategories.Compatibility)] | |||
public void ClickingQuicklyBetweenTopTabsBreaksContent() | |||
{ | |||
App.WaitForElement("AutomatedRun"); |
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.
Using the timeout
(TimeSpan) parameter, could help to wait during N seconds to the element and complete the Catalyst tab changing animation?
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.
@jsuarezruiz , Tried by adding timespan still getting OpenQA.Selenium.InvalidSelectorException on line no 25.
src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/XFIssue/Issue889.cs
Show resolved
Hide resolved
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/XFIssue/Issue889.cs
Show resolved
Hide resolved
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
// App.Screenshot("Navigate back"); | ||
[Test] | ||
[Category(UITestCategories.FlyoutPage)] | ||
public void Issue899TestsAppCrashWhenSwitchingTabs() |
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.
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 fifth group of tests enabled.
The Issue889 will pass when the PR was merged #25734
TestCases