1
您好我正在自動化ios上的本機ios應用程序。我已經自動化了android原生應用程序,但是從Windows上運行的c#代碼啓動mac上的appium服務器,我需要知道如何爲ios平臺設置Desired功能。如何設置在真實設備上使用appium啓動ios應用程序所需的功能(c#)
您好我正在自動化ios上的本機ios應用程序。我已經自動化了android原生應用程序,但是從Windows上運行的c#代碼啓動mac上的appium服務器,我需要知道如何爲ios平臺設置Desired功能。如何設置在真實設備上使用appium啓動ios應用程序所需的功能(c#)
請找到的代碼C#語言以下和平:
DesiredCapabilities capabilities = new DesiredCapabilities();
TestCapabilities testCapabilities = new TestCapabilities();
testCapabilities.App = "";
testCapabilities.AutoWebView = true;
testCapabilities.AutomationName = "";
testCapabilities.BrowserName = String.Empty; // Leave empty otherwise you test on browsers
testCapabilities.DeviceName = "Needed if testing on IOS on a specific device. This will be the UDID";
testCapabilities.Platform = TestCapabilities.DevicePlatform.IOS; // Or Android
testCapabilities.PlatformVersion = String.Empty; // Not really needed
testCapabilities.AssignAppiumCapabilities(ref capabilities);
driver = new AppiumDriver(testServerAddress, capabilities, INIT_TIMEOUT_SEC);
driver.Manage().Timeouts().ImplicitlyWait(IMPLICIT_TIMEOUT_SEC);