Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions eng/pipelines/common/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,27 @@ parameters:
# we might want to improve this somehow depending on how much the categories change over time
- 'Accessibility,ActionSheet,ActivityIndicator,Animation,AppLinks'
- 'Border,BoxView,Brush,Button'
- 'Cells,CheckBox,ContextActions,CustomRenderers'
- 'CarouselView'
- 'Cells,CheckBox,ContextActions,CustomRenderers,DatePicker,Dispatcher,DisplayAlert,DisplayPrompt,DragAndDrop'
- 'CollectionView'
- 'DatePicker,Dispatcher,DisplayAlert,DisplayPrompt,DragAndDrop'
- 'Entry'
- 'Editor,Effects,FlyoutPage,Focus,Fonts,Frame,Gestures,GraphicsView'
- 'Image,ImageButton,IndicatorView,InputTransparent,IsEnabled,IsVisible'
- 'Label,Layout,Lifecycle,ListView'
- 'ManualReview,Maps'
- 'Label'
- 'Layout'
- 'Lifecycle,ManualReview,Maps'
- 'ListView'
- 'Navigation'
- 'Page,Performance,Picker,ProgressBar'
- 'RadioButton,RefreshView'
- 'SafeAreaEdges'
- 'ScrollView,SearchBar,Shape,Slider,SoftInput,Stepper,Switch,SwipeView'
- 'SafeAreaEdges,Shadow'
- 'ScrollView'
- 'SearchBar,Shape,Slider'
- 'SoftInput,Stepper,Switch,SwipeView'
- 'Shell'
- 'TabbedPage,TableView,TimePicker,TitleView,ToolbarItem'
- 'Shadow,ViewBaseTests,Visual,WebView,Window'
- 'ViewBaseTests,Window'
- 'WebView'

projects:
- name: name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public Issue17884(TestDevice device)
public override string Issue => "[Android] Entire words omitted & letters truncated from Label display";

[Test]
[Category(UITestCategories.Visual)]
[Category(UITestCategories.Label)]
public void VerifyTextIsNotMissing()
{
App.WaitForElement("StubLabel");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public Issue24414(TestDevice device)
public override string Issue => "Shadows not rendering as expected on Android and iOS";

[Test]
[Category(UITestCategories.Visual)]
[Category(UITestCategories.Shadow)]
public void Issue24414Test()
{
App.WaitForElement("TheLabel");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public Issue24847(TestDevice testDevice) : base(testDevice)
public override string Issue => "[iOS] Background layer frame mapping has poor performance";

[Test]
[Category(UITestCategories.Visual)]
[Category(UITestCategories.Brush)]
public void BackgroundFrameResizesFastAndCorrectly()
{
App.WaitForElement("ChangeSizeBtn");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public Issue27730(TestDevice testDevice) : base(testDevice)
public override string Issue => "Shadow not updated when Clipping a View with a shadow";

[Test]
[Category(UITestCategories.Visual)]
[Category(UITestCategories.Shadow)]
public void ShadowShouldUpdateWhenClipping()
{
App.WaitForElement("ApplyShadowBtn");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public Issue27732(TestDevice testDevice) : base(testDevice)
const string ToggleShadowButton = "ToggleShadowButton";

[Test]
[Category(UITestCategories.Visual)]
[Category(UITestCategories.Shadow)]
public void ViewShouldNotShiftOnShadowChanged()
{
App.WaitForElement(ToggleShadowButton);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ internal static class UITestCategories
public const string Focus = "Focus";
public const string ManualReview = "ManualReview";
public const string Performance = "Performance";
public const string Visual = "Visual";

public const string AppLinks = "AppLinks";
public const string Shell = "Shell";
public const string TabbedPage = "TabbedPage";
Expand Down
Loading