Minor update to the bug note. The proxy works against iOS7 as long as you click trust this machine first.
4.7 KiB
Automating mobile web apps
If you're interested in automating your web app in Mobile Safari on iOS or Chrome on Android, Appium can help you. Basically, you write a normal WebDriver test, and use Appium as the Selenium server with a special set of desired capabilities.
Mobile Safari on Simulator
First of all, make sure developer mode is turned on in your Safari preferences so that the remote debugger port is open.
If you are using the simulator or a real device, you MUST run Safari before attempting to use Appium.
Then, use desired capabilities like these to run your test in mobile Safari:
{
app: 'safari'
, device: 'iPhone Simulator'
, version: '6.1'
}
Mobile Safari on a Real iOS Device
To be able to run your tests against mobile Safari we use the SafariLauncher App to launch Safari. Once Safari has been launched the Remote Debugger automatically connects using the ios-webkit-webkit-proxy.
NOTE: There is currently a bug in the ios-webkit-debug-proxy. You have to trust the machine before you can run the ios-webkit-debug-proxy against your iOS device.
Setup
Before you can run your tests against Safari on a real device you will need to:
- Have the ios-webkit-debug-proxy installed and running (see the hybrid docs for instructions)
- Turn on web inspector on iOS device (settings > safari > advanced, only for iOS 6.0 and up)
- Create a provisioning profile that can be used to deploy the SafariLauncherApp.
To create a profile for the launcher go into the Apple Developers Member Center and:
- Step 1: Create a new App Id and select the WildCard App ID option and set it to "*"
- Step 2: Create a new Development Profile and for App Id select the one created in step 1.
- Step 3: Select your certificate(s) and device(s) and click next.
- Step 4: Set the profile name and generate the profile.
- Step 5: Download the profile and open it with a text editor.
- Step 6: Search for the UUID and the string for it is your identity code.
Now that you have a profile open a terminal and run the following commands:
$ git clone https://github.com/appium/appium.git
$ cd appium
# Option 1: You dont define any parameters and it will set the code signing identity to 'iPhone Developer'
$ ./reset.sh --ios --real-safari
# Option 2: You define the code signing identity and allow xcode to select the profile identity code (if it can).
$ ./reset.sh --ios --real-safari --code-sign '<code signing idendity>'
# Option 3: You define both the code signing identity and profile identity code.
$ ./reset.sh --ios --real-safari --code-sign '<code signing idendity>' --profile '<retrieved profile identity code>'
# Once successfully configured and with the safari launcher built, start the server as per usual
$ node /lib/server/main.js -U <UDID>
Running your test
To configure you test to run against safari simpley set the "app" to be "safari".
Java Example
//setup the web driver and launch the webview app.
DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
desiredCapabilities.setCapability("app", "safari");
URL url = new URL("http://127.0.0.1:4723/wd/hub");
RemoteWebDriver remoteWebDriver = new RemoteWebDriver(url, desiredCapabilities);
// Navigate to the page and interact with the elements on the guinea-pig page using id.
remoteWebDriver.get("http://saucelabs.com/test/guinea-pig");
WebElement div = remoteWebDriver.findElement(By.id("i_am_an_id"));
Assert.assertEquals("I am a div", div.getText()); //check the text retrieved matches expected value
remoteWebDriver.findElement(By.id("comments")).sendKeys("My comment"); //populate the comments field by id.
//close the app.
remoteWebDriver.quit();
Mobile Chrome on Emulator or Real Device
Pre-requisites:
- Make sure Chrome (an app with the package
com.android.chrome) is installed on your device or emulator. Getting Chrome for the x86 version of the emulator is not currently possible without building Chromium, so you may want to run an ARM emulator and then copy a Chrome APK from a real device to get Chrome on an emulator. - Make sure ChromeDriver, version >= 2.0 is on your system and that the
chromedriverbinary is on your$PATH.
Then, use desired capabilities like these to run your test in Chrome:
{
app: 'chrome'
, device: 'Android'
};