AndroidエミュレーターでXamarin UIテストを実行するには? 常に実際のデバイスでテストを実行しますが、CI の場合はエミュレーターでテストする必要がありますが、方法がわからず、Google から具体的な回答が得られませんでした
public class AppInitializer
{
private const string ApkPath = @"..\..\..\mob\mob.Droid\bin\Release\myApp.apk";
private const string AppPath = "mob.iOS.app";
public static IApp StartApp(Platform platform)
{
if (platform == Platform.Android)
{
return ConfigureApp
.Android
.EnableLocalScreenshots()
.ApkFile(ApkPath)
.StartApp();
}
return ConfigureApp
.iOS
.EnableLocalScreenshots()
.StartApp();
}
}