예제 #1
0
 public void Bugzilla49069Test()
 {
     RunningApp.WaitForElement(q => q.Marked("lblLong"));
 }
예제 #2
0
 public void Issue3292Test()
 {
     RunningApp.WaitForElement(q => q.Marked("Hello World Changed"));
 }
예제 #3
0
 public void CollectionShouldInvalidateOnVisibilityChange()
 {
     RunningApp.WaitForElement(Success);
 }
예제 #4
0
 public void AddingItemsToGroupedCollectionViewShouldNotCrash()
 {
     RunningApp.WaitForElement(Success, timeout: TimeSpan.FromSeconds(30));
 }
예제 #5
0
파일: Issue6334.cs 프로젝트: tytok/maui
 public void Issue6334Test()
 {
     RunningApp.WaitForElement(q => q.Marked("IssuePageLabel"));
     RunningApp.WaitForElement(q => q.Marked(Success));
     RunningApp.Screenshot("I see the gradient");
 }
 float GetFlyoutHeight() =>
 RunningApp.WaitForElement("FlyoutHeaderId")[0].Rect.Height;
예제 #7
0
 public void GestureBubblingInStackLayout()
 {
     RunningApp.WaitForElement(StackLabelId);
     RunningApp.Tap(StackLabelId);
     RunningApp.WaitForElement(Success);
 }
 public void Bugzilla29247Test()
 {
     RunningApp.WaitForElement(q => q.Marked("btnOpenUri1"));
     RunningApp.Tap(q => q.Marked("btnOpenUri1"));
 }
 public void Bugzilla29247EncodedParamsTest()
 {
     RunningApp.WaitForElement(q => q.Marked("btnOpenUri2"));
     RunningApp.Tap(q => q.Marked("btnOpenUri2"));
 }
예제 #10
0
 public void NullItemSourceDoesNotCrash()
 {
     // If we can see the Success label, it means we didn't crash.
     RunningApp.WaitForElement(Success);
 }
예제 #11
0
 public void Issue342NoSourceTestsLablePresentNoImage()
 {
     RunningApp.WaitForElement(q => q.Marked("Uninitialized image"), "Cannot see label");
     RunningApp.Screenshot("All elements present");
 }
예제 #12
0
 public void Issue12777Test()
 {
     RunningApp.WaitForElement("TestCarouselView");
     RunningApp.Screenshot("Test passed");
 }
 public void DisabledButtonTest()
 {
     TapInFlyout("Disabled Button Test");
     RunningApp.WaitForElement("If either button looks odd this test has failed.");
     RunningApp.Screenshot("If either button looks off (wrong shadow, border drawn inside button) the test has failed.");
 }
 public void LoadingVisualGalleryPageDoesNotCrash()
 {
     RunningApp.WaitForElement("Activity Indicators");
 }
예제 #15
0
 public void Bugzilla53834Test()
 {
     RunningApp.WaitForElement("TestReady");
     RunningApp.Screenshot("incorrect row heights test");
 }
예제 #16
0
 public void Issue9355Test()
 {
     RunningApp.WaitForElement(TestOk);
 }
예제 #17
0
 public void Bugzilla51173_ValidImage()
 {
     RunningApp.WaitForElement(q => q.Marked(ValidImage));
     RunningApp.Tap(ValidImage);
     RunningApp.WaitForElement(q => q.Marked(NotLoading));
 }
예제 #18
0
 public void CanStillNavigateToContentNotPresentInFlyout()
 {
     RunningApp.Tap("GoToNoFlyoutItem");
     RunningApp.WaitForElement("Success");
 }
예제 #19
0
파일: GitHub1648.cs 프로젝트: gywerd/CPUI
 public void GitHub1648Test()
 {
     RunningApp.WaitForElement("Reload");
     RunningApp.Tap("Reload");
     RunningApp.WaitForElement("Success");
 }
예제 #20
0
 public void BasicFlyoutItemIsVisibleValidate()
 {
     ShowFlyout();
     RunningApp.WaitForNoElement("Failure");
     RunningApp.WaitForElement("FlyoutItemShowing");
 }
예제 #21
0
 public void GestureBubblingInGrid()
 {
     RunningApp.WaitForElement(GridLabelId);
     RunningApp.Tap(GridLabelId);
     RunningApp.WaitForElement(Success);
 }
예제 #22
0
 public void TestDoesntCrashWithCachingDisable()
 {
     RunningApp.WaitForElement("ImageLoaded");
     RunningApp.ScrollDown();
     RunningApp.ScrollDown();
 }
예제 #23
0
 public void ListViewScrollTest()
 {
     RunningApp.Tap(ListViewTest);
     RunningApp.WaitForElement("Item0");
 }
예제 #24
0
 public void NonAppCompatBasicSwitchTest()
 {
     RunningApp.WaitForElement("Success");
 }
예제 #25
0
 public void Issue3413Test()
 {
     RunningApp.WaitForElement(q => q.Marked("srb_vertical"));
     RunningApp.WaitForElement(q => q.Marked("srb_horizontal"));
     RunningApp.Screenshot("Please verify we have 2 SearchBars. One below the label, other side by side with the label");
 }
예제 #26
0
파일: Issue11769.cs 프로젝트: lhx11187/maui
 public void DelayedAddingOfShellSectionDoesntCrash()
 {
     RunningApp.WaitForElement("Success");
 }
예제 #27
0
 public void Bugzilla56771Test()
 {
     RunningApp.WaitForElement(q => q.Marked(BtnAdd));
     RunningApp.Tap(q => q.Marked(BtnAdd));
     RunningApp.WaitForElement(q => q.Marked(Success));
 }
예제 #28
0
 public void Issue3001Test()
 {
     RunningApp.WaitForElement(q => q.Marked(ButtonId));
     RunningApp.Tap(q => q.Marked(ButtonId));
     RunningApp.WaitForElement(q => q.Marked(ReadyId), timeout: TimeSpan.FromSeconds(5));
 }
예제 #29
0
 public void SwipeBackNavCrashTestsAllElementsPresent()
 {
     RunningApp.WaitForElement(q => q.Marked("Page One"));
     RunningApp.WaitForElement(q => q.Button("Go to second page"));
 }
예제 #30
0
 public void EmptyViewShouldNotCrash()
 {
     RunningApp.WaitForElement("Success");
 }