本文整理汇总了C#中IApp.Query方法的典型用法代码示例。如果您正苦于以下问题:C# IApp.Query方法的具体用法?C# IApp.Query怎么用?C# IApp.Query使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IApp
的用法示例。
在下文中一共展示了IApp.Query方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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");
}
示例2: 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");
}
示例3: BeforeEachTest
public virtual void BeforeEachTest()
{
app = AppInitializer.StartApp(platform);
OnAndroid = app.GetType() == typeof(AndroidApp);
OniOS = app.GetType() == typeof(iOSApp);
if (app.Query("LoginPageIdentifier").Any())
{
new LoginPage().TapNotNow();
System.Threading.Thread.Sleep(2000);
}
if (app.Query("Push Notifications").Any())
app.Tap("Maybe Later");
}
示例4: BeforeEachTest
public virtual void BeforeEachTest()
{
App = AppInitializer.StartApp(platform);
OnAndroid = App.GetType() == typeof(AndroidApp);
OniOS = App.GetType() == typeof(iOSApp);
if (App.Query("Login with Facebook").Any())
{
new LoginPage ()
.SkipAuthentication ();
Thread.Sleep(2000);
}
if (OniOS)
{
if (App.Query("Allow").Any())
App.Tap("Allow");
if (App.Query("Dismiss").Any())
App.Tap("Dismiss");
}
}