You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.IsTrue(carouselAutomationPeer.GetName().Contains(automationName),"Verify that the UIA name contains the given AutomationProperties.Name of the Carousel.");
32
39
33
-
Assert.IsTrue(carouselPeer.GetName().Contains(nameof(Carousel)),"Verify that the UIA name contains the class name of the Carousel.");
34
-
carousel.Name="TextItems";
35
-
Assert.IsTrue(carouselPeer.GetName().Contains(carousel.Name),"Verify that the UIA name contains the given name of the Carousel.");
40
+
carousel.Name=name;
41
+
Assert.IsTrue(carouselAutomationPeer.GetName().Contains(name),"Verify that the UIA name contains the given Name of the Carousel.");
0 commit comments