gpt4 book ai didi

c# - 使用 Xamarin Test Cloud 打开 REPL 的问题

转载 作者:行者123 更新时间:2023-11-28 21:27:06 25 4
gpt4 key购买 nike

我是 Xamarin Test Cloud 的初学者,我想为 Xamarin Test Cloud 编写测试。

我的解决方案中有 Xamarin UITests,我尝试启动 REPL,但 UITest REPL 窗口没有打开。

using System;
using System.IO;
using System.Linq;
using NUnit.Framework;
using Xamarin.UITest;
using Xamarin.UITest.Android;
using Xamarin.UITest.Queries;

namespace MurakamiKiev.UITests
{
[TestFixture]
public class Tests
{
AndroidApp app;

[SetUp]
public void BeforeEachTest ()
{
app = ConfigureApp.Android.StartApp ();
}

[Test]
public void TestLaunch ()
{
app.Repl();
}
}
}

哪里出错了?

另外,我需要写什么来启动指定的事件?

最佳答案

如果您在同一解决方案中没有应用程序源代码,则需要通过完整路径指向它来指定预构建的应用程序。

[SetUp]
public void BeforeEachTest ()
{
app = ConfigureApp.Android.ApkFile("<path-as-string>").StartApp ();
}

关于c# - 使用 Xamarin Test Cloud 打开 REPL 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37542005/

25 4 0
文章推荐: python - 在 BeautifulSoup 中查找不同的字符串并返回包含标签
文章推荐: javascript - 在动态
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com