当前位置: 首页>>代码示例>>C#>>正文


C# IApp.Screenshot方法代码示例

本文整理汇总了C#中IApp.Screenshot方法的典型用法代码示例。如果您正苦于以下问题:C# IApp.Screenshot方法的具体用法?C# IApp.Screenshot怎么用?C# IApp.Screenshot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IApp的用法示例。


在下文中一共展示了IApp.Screenshot方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: BeforeEachTest

        public virtual void BeforeEachTest()
        {
            app = AppInitializer.StartApp(platform);

            Thread.Sleep(TimeSpan.FromSeconds(5));

//            int count = 0;
            if (app.Query("SIGN IN").Any())
            {
                new SplashScreenPage(app, platform)
                        .ExitSplashScreen();
            }

            //waiting for next screen to load
            Thread.Sleep(TimeSpan.FromSeconds(5));

            if (app.Query("Sign in").Any())
            {
                LogIn();
            }

            //Refreshing the data on home page
//            new GlobalPage(app, platform)
//                .navigateToProducts();
//
//            new GlobalPage(app, platform)
//                .navigateToSales();
//
            app.Screenshot("On Home Page");
        }
开发者ID:kirillg,项目名称:demo-xamarincrm,代码行数:30,代码来源:AbstractSetup.cs

示例2: BeforeEachTest

        public virtual void BeforeEachTest()
        {
            app = AppInitializer.StartApp(platform);

            Thread.Sleep(TimeSpan.FromSeconds(5));

            if (app.Query("SIGN IN").Any())
            {
                new SplashScreenPage(app, platform)
                        .ExitSplashScreen();
            }

            //waiting for next screen to load to 
            Thread.Sleep(TimeSpan.FromSeconds(5));

            if (app.Query(x => x.WebView()).Any())
            {
                LogIn();
            }

            Thread.Sleep(TimeSpan.FromSeconds(5));
            app.WaitForNoElement("Loading sales data...");
            //Refreshing the data on home page
//            new GlobalPage(app, platform)
//                .navigateToProducts();
//
//            new GlobalPage(app, platform)
//                .navigateToSales();
//
            app.Screenshot("On Home Page");
        }
开发者ID:nikhil-rajan,项目名称:XamarinCRM,代码行数:31,代码来源:AbstractSetup.cs

示例3: FeedbackPage

        public FeedbackPage(IApp app, Platform platform)
            : base(app, platform, "Leave Feedback", "Leave Feedback")
        {
            if (OnAndroid)
            {
                StoreField = x => x.Class("EditText").Index(0);
                ServiceField = x => x.Class("EditText").Index(1);
                DateField = x => x.Class("EditText").Index(2);
                RatingField = x => x.Class("EditText").Index(3);
                NameField = x => x.ClassFull("EntryEditText").Index(0);
                PhoneField = x => x.ClassFull("EntryEditText").Index(1);
                RequestCallBack = x => x.Class("Switch");
                RatingDetailField = x => x.Marked("custom");
                FeedbackField = x => x.Class("EditorEditText");
            }

            if (OniOS)
            {
                StoreField = x => x.ClassFull("_UITextFieldRoundedRectBackgroundViewNeue").Index(0);
                ServiceField = x => x.Class("UITextFieldLabel").Index(1);
                DateField = x => x.Class("UITextFieldLabel").Index(2);
                RatingField = x => x.Class("UITextFieldLabel").Index(3);
                NameField = x => x.Marked("First and Last");
                PhoneField = x => x.Marked("555-555-5555");
                DoneButton = x => x.Marked("Done");
                RatingDetailField = x => x.Class("UIPickerTableViewTitledCell").Index(2);
                RequestCallBack = x => x.Class("UISwitch");
                FeedbackField = x => x.ClassFull("_UITextContainerView");
            }

            Thread.Sleep(5000);
            app.Screenshot("On Feedback Page");
        }
开发者ID:xamarin-automation-service,项目名称:MyShoppe,代码行数:33,代码来源:FeedbackPage.cs

示例4: BeforeEachTest

		public void BeforeEachTest ()
		{
			app = AppInitializer.StartApp (platform);
			app.Screenshot("App Initialized");

			FirstPage = new FirstPage(app, platform);
			ListViewPage = new ListViewPage(app, platform);
		}
开发者ID:ChandrakanthBCK,项目名称:customer-success-samples,代码行数:8,代码来源:AbstractSetup.cs

示例5: BasePage

        protected BasePage(IApp app, Platform platform, Func<AppQuery, AppQuery> androidTrait, Func<AppQuery, AppQuery> iOSTrait)
            : this(app, platform)
        {
            if (OnAndroid)
                Assert.DoesNotThrow(() => app.WaitForElement(androidTrait), "Unable to verify on page: " + this.GetType().Name);
            if (OniOS)
                Assert.DoesNotThrow(() => app.WaitForElement(iOSTrait), "Unable to verify on page: " + this.GetType().Name);

            app.Screenshot("On " + this.GetType().Name);
        }
开发者ID:XnainA,项目名称:app-crm,代码行数:10,代码来源:BasePage.cs

示例6: CustomerSalesPage

        public CustomerSalesPage(IApp app, Platform platform)
            : base(app, platform)
        {
            if (OnAndroid)
                app.WaitForElement("WEEKLY AVERAGE", timeout: TimeSpan.FromMinutes(2));
            if (OniOS)
                app.WaitForElement("WEEKLY AVERAGE");

            app.Screenshot("On " + this.GetType().Name);
        }
开发者ID:XnainA,项目名称:app-crm,代码行数:10,代码来源:CustomerSalesPage.cs

示例7: BasePage

        protected BasePage(IApp app, Platform platform, Func<AppQuery, AppQuery> androidTrait, Func<AppQuery, AppQuery> iOSTrait)
            : this(app, platform)
        {
            if (OnAndroid)
                Trait = androidTrait;
            if (OniOS)
                Trait = iOSTrait;

            AssertOnPage(TimeSpan.FromSeconds(30));

            app.Screenshot("On " + this.GetType().Name);
        }
开发者ID:xamarin-automation-service,项目名称:app-crm,代码行数:12,代码来源:BasePage.cs


注:本文中的IApp.Screenshot方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。