Winium.Mobile is an open source test automation tool for both Windows StoreApps and Windows Silverlight apps tested on Windows Phone or Windows Mobile emulators.
Supported Platforms
StoreApps and Silverlight
Windows Phone 8.1
Windows 10 Mobile
For Windows Desktop (WPF, WinForms) test automation tool see Winium Desktop.
Why Winium?
You have Selenium WebDriver for testing of web apps, Appium for testing of iOS and Android apps. And now you have Selenium-based tools for testing of Windows apps too. What are some of the benefits? As said by Appium:
You can write tests with your favorite dev tools using any WebDriver-compatible language such as Java, Objective-C, JavaScript with Node.js (in promise, callback or generator flavors), PHP, Python, Ruby, C#, Clojure, or Perl with the Selenium WebDriver API and language-specific client libraries.
You can use any testing framework.
Requirements
Windows 8 or higher
Visual Studio 2013 with Update 2 or higher
Windows phone 8.1 SDK and/or Windows 10 SDK
You can get Visual Studio and SDK from Microsoft here.
Quick Start
App under test (AUT) is application that you would like to test.
In your AUT's source code add following lines to be called on UI thread after visual root is initialized (usually in MainPageOnLoaded for vanilla app or PrepareApplication if you use Caliburn.Micro)
// For StoreAppsAutomationServer.Instance.InitializeAndStart();
// For Silverlight appsAutomationServer.Instance.InitializeAndStart(RootFrame);
or (will include driver only for debug build)
#ifDEBUG// For StoreAppsAutomationServer.Instance.InitializeAndStart();
// For Silverlight appsAutomationServer.Instance.InitializeAndStart(RootFrame);
#endif// DEBUG
Assure that Internet (Client & Server) capability is enabled in package manifest of your AUT. It should be enabled by default for Windows 8.1 apps. In UWP (Windows Mobile 10) it is disabled by default (only Internet (Client) is enabled).
Write your tests using your favorite language. In your tests use appdesired capability to set path to tested app's appx/xap file. Here is python example:
# put it in setUpapp_path='C:\\path\\to\\testApp.appx'# For StoreAppsapp_path='C:\\path\\to\\testApp.xap'# For Silverlight appsself.driver=webdriver.Remote(
command_executor='http://localhost:9999',
desired_capabilities={'app': app_path}
)
# put it in test method bodyelement=self.driver.find_element_by_id('SetButton')
element.click()
assert'CARAMBA'==self.driver.find_element_by_id('MyTextBox').text
Make sure to set deviceName capability to Emulator to run on Windows Phone 8.1 if you are using the driver on a system where Visula Studio 2015 or Winodws 10 SDK is installed.
Winium.Mobile.Driver implements Selenium Remote WebDriver and listens for JsonWireProtocol commands. It is responsible for launching emulator, deploying AUT, simulating input, forwarding commands to Winium.StoreApps.InnerServer, etc.
Winium.StoreApps.InnerServer / Winium.Silverlight.InnerServer (the one that should be embedded into AUT) communicates with Winium.Mobile.Driver.exe and executes different commands, like finding elements, getting or setting text values, properties, etc., inside your application.
Contributing
Contributions are welcome!
Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug.
Fork the repository to start making your changes to the master branch (or branch off of it).
We recommend to write a test which shows that the bug was fixed or that the feature works as expected.
Send a pull request and bug the maintainer until it gets merged and published.
请发表评论