# WebDriverAgent **Repository Path**: taylortaurus/WebDriverAgent ## Basic Information - **Project Name**: WebDriverAgent - **Description**: A WebDriver server for iOS that runs inside the Simulator. - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-26 - **Last Updated**: 2024-07-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # WebDriverAgent [![GitHub license](https://img.shields.io/badge/license-BSD-lightgrey.svg)](LICENSE) [![Build Status](https://travis-ci.org/appium/WebDriverAgent.svg?branch=master)](https://travis-ci.org/appium/WebDriverAgent) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) WebDriverAgent is a [WebDriver server](https://w3c.github.io/webdriver/webdriver-spec.html) implementation for iOS that can be used to remote control iOS devices. It allows you to launch & kill applications, tap & scroll views or confirm view presence on a screen. This makes it a perfect tool for application end-to-end testing or general purpose device automation. It works by linking `XCTest.framework` and calling Apple's API to execute commands directly on a device. WebDriverAgent is developed for end-to-end testing and is successfully adopted by [Appium](http://appium.io) via [XCUITest driver](https://github.com/appium/appium-xcuitest-driver). ## Features * Both iOS and tvOS platforms are supported with device & simulator * Implements most of [WebDriver Spec](https://w3c.github.io/webdriver/webdriver-spec.html) * Implements part of [Mobile JSON Wire Protocol Spec](https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md) * [USB support](https://github.com/facebook/WebDriverAgent/wiki/USB-support) for devices * Easy development cycle as it can be launched & debugged directly via Xcode * Unsupported yet, but works with OSX ## Getting Started On This Repository To get the project set up just run bootstrap script: ``` ./Scripts/bootstrap.sh ``` It will: * fetch all dependencies with [Carthage](https://github.com/Carthage/Carthage) After it is finished you can simply open `WebDriverAgent.xcodeproj` and start `WebDriverAgentRunner` test and start sending [requests](https://github.com/facebook/WebDriverAgent/wiki/Queries). More about how to start WebDriverAgent [here](https://github.com/facebook/WebDriverAgent/wiki/Starting-WebDriverAgent). ## Known Issues If you are having some issues please checkout [wiki](https://github.com/facebook/WebDriverAgent/wiki/Common-Issues) first. ## For Contributors If you want to help us out, you are more than welcome to. However please make sure you have followed the guidelines in [CONTRIBUTING](CONTRIBUTING.md). ## Creating Bundles Follow [this doc](docs/CREATING_BUNDLES.md) ## License [`WebDriverAgent` is BSD-licensed](LICENSE). We also provide an additional [patent grant](PATENTS). ## Third Party Sources WebDriverAgent depends on [CocoaHTTPServer](https://github.com/robbiehanson/CocoaHTTPServer) and [RoutingHTTPServer](https://github.com/mattstevens/RoutingHTTPServer). These projects haven't been maintained in a while. That's why the source code of these projects has been integrated directly in the WebDriverAgent source tree. You can find the source files and their licenses in the `WebDriverAgentLib/Vendor` directory. Have fun!