<xamarin>如何关闭在Test Cloud上制作屏幕截图(app.Screenshot())?

时间:2016-12-01 12:09:23

标签: c# testing xamarin command-line xamarin-test-cloud

有没有办法在不删除代码的情况下关闭Test Cloud上的屏幕截图(app.Screenshot())?

我想按需关闭屏幕截图,最好使用一些命令行参数,即“testcloud.exe --someparameter”。

有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

AppInitializer文件中,您可以为每个平台删除 .EnableLocalScreenshots()

    if (platform == Platform.Android)
    {
        return ConfigureApp.Android
            .EnableLocalScreenshots()
            .StartApp();
    }