0
我正在使用Xamrin.ui測試來測試ios IPA文件。 我沒有它的代碼。在xamrinui測試中給出ipa文件路徑的位置? 我嘗試搜索博客,但我無法找到該怎麼辦設置如何給xamrin ui測試中的ipa文件路徑
我正在使用Xamrin.ui測試來測試ios IPA文件。 我沒有它的代碼。在xamrinui測試中給出ipa文件路徑的位置? 我嘗試搜索博客,但我無法找到該怎麼辦設置如何給xamrin ui測試中的ipa文件路徑
如果你有.app
捆綁使用iOSAppConfigurator.AppBundle
分配應用程序的本地路徑:
[SetUp]
public void BeforeEachTest()
{
app = ConfigureApp.iOS.AppBundle("/your/local/Path/bundle.app").StartApp();
}
如果你有一個.ipa
安裝在設備上啓用蠡-,您可以使用iOSAppConfigurator.InstalledApp
來定義應用程序的包ID:
[SetUp]
public void BeforeEachTest()
{
app = ConfigureApp.iOS.InstalledApp("com.sushihangover.MyGreatApp").StartApp();
}