https://github.com/me-io/appium-selenium-starter
Open source, complete and easy to use QA Automation platform
https://github.com/me-io/appium-selenium-starter
appium automation automation-test codeception qa-automation-test selenium
Last synced: about 1 month ago
JSON representation
Open source, complete and easy to use QA Automation platform
- Host: GitHub
- URL: https://github.com/me-io/appium-selenium-starter
- Owner: me-io
- License: mit
- Created: 2017-11-11T18:58:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-01T11:05:58.000Z (over 6 years ago)
- Last Synced: 2024-04-15T17:25:00.341Z (about 1 year ago)
- Topics: appium, automation, automation-test, codeception, qa-automation-test, selenium
- Language: PHP
- Homepage: https://me.io
- Size: 2.66 MB
- Stars: 31
- Watchers: 8
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Appium Selenium StarterSimple and easy to use boilerplate for writing tests for mobile or web.
[![Build Status][build-badge]][build]
[![downloads][downloads-badge]][downloads]
[![MIT License][license-badge]][license]
[![Donate][donate-badge]][donate][](#contributors)
[![PRs Welcome][prs-badge]][prs]
[![Code of Conduct][coc-badge]][coc]
[![Watch on GitHub][github-watch-badge]][github-watch]
[![Star on GitHub][github-star-badge]][github-star]
[![Tweet][twitter-badge]][twitter]## Requirements
1. PHP >= 7.0
2. Appium - For Mobile Testing
3. Selenium - For Web application testing## Installation
You can install this `appium-selenium-starter` using the following methods:
### Cloning the repo
Run the following command to configure the boilerplate on your machine:
```bash
git clone [email protected]:me-io/appium-selenium-starter.git
```### Via composer create-project
Alternatively, you may also install `appium-selenium-starter` by issuing the Composer create-project command in your
terminal:```bash
composer create-project --prefer-dist me-io/appium-selenium-starter
```## Installing Dependencies
Now run the following command to install required dependencies:
```bash
composer install
```## Configuring Environment
There are two cli applications included in starter. To view a list of all commands in these cli applications inside your terminal run the following commands one by one:
```bash
composer run appium
composer run selenium
```### Appium
Lets configure your environment for running mobile application testing. Open your terminal and run the following command:
```bash
composer run appium configure
```### Selenium
To configure your environment for running selenium server run the below command:
```bash
composer run selenium configure
```## Running Example Tests
> **Note:** For running example tests you need to have installed and configured the android emulator or iOS simulator on your machine.
Before running the mobile tests we need to start the appium server. To start appium server run the following command inside your terminal:
```bash
composer run appium start
```We need to move everything from `example` directory to the root folder of the project. Run the following command inside your terminal:
```bash
mv example/* .
```You can find the android and ios example tests inside `/tests` directory. We also put some example apps for android and ios inside `/tests/_data/test-apps` directory.
## Android Tests
For running android emulator we are using genymotion. Follow this [guide](https://shankargarg.wordpress.com/2016/02/25/setup-genymotion-android-emulators-on-mac-os/)
if you do not know how to install and run android emulator. You also need to install the application that you want to test inside android emulator.### Update Suite
Now you need to update the `android.suite.yml` you can find this filw inside `tests` directory. And also update the `deviceName` to your android emulator device name. If you have genymotion installed you can find the device name from the devices list.

### Running Tests
To run the android tests run the following codecept command inside your terminal:
```bash
./vendor/bin/codecept -c example/codeception.yml run android --steps
```
> **Note:** Make sure appium server is running before running the android tests.
## iOS Tests
First you need to run the appium server than you need to start the iOS simulator. Use the following if you do not know how to run iOS sumulator http://www.macinstruct.com/node/494.
### Update Suite
Now you need to update the `ios.suite.yml` you can find this file inside `tests` directory. Open `ios.suite.yml` file and update `xcodeOrgId` and `udid` to your running simulator `identifier` string. You can find your `identifier` string by opening the simulator then `Hardware > Device > Manage Devices > Simulators`. You will find a list of iOS devices now open the device that you are running and after clicking on the device name you will find the `identifier` string.

### Running Tests
To run the ios tests run the following codecept command inside your terminal:
```bash
./vendor/bin/codecept -c example/codeception.yml run ios --steps
```
## Contributors
A huge thanks to all of our contributors:
| [
Mohamed Meabed](https://github.com/Meabed)
[💻](https://github.com/me-io/appium-selenium-starter/commits?author=Meabed "Code") [📢](#talk-Meabed "Talks") | [
Zeeshan Ahmad](https://github.com/ziishaned)
[💻](https://github.com/me-io/appium-selenium-starter/commits?author=ziishaned "Code") [🐛](https://github.com/me-io/appium-selenium-starter/issues?q=author%3Aziishaned "Bug reports") [⚠️](https://github.com/me-io/appium-selenium-starter/commits?author=ziishaned "Tests") [📖](https://github.com/me-io/appium-selenium-starter/commits?author=ziishaned "Documentation") |
| :---: | :---: |## License
The code is available under the [MIT license](LICENSE.md).
[build-badge]: https://img.shields.io/travis/me-io/appium-driver-codeception.svg?style=flat-square
[build]: https://travis-ci.org/me-io/appium-driver-codeception
[downloads-badge]: https://img.shields.io/packagist/dm/me-io/appium-selenium-starter.svg?style=flat-square
[downloads]: https://packagist.org/packages/me-io/appium-selenium-starter/stats
[license-badge]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[license]: https://github.com/me-io/appium-selenium-starter/blob/master/LICENSE.md
[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square
[prs]: http://makeapullrequest.com
[coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square
[coc]: https://github.com/me-io/appium-selenium-starter/blob/master/CODE_OF_CONDUCT.md
[github-watch-badge]: https://img.shields.io/github/watchers/me-io/appium-selenium-starter.svg?style=social
[github-watch]: https://github.com/me-io/appium-selenium-starter/watchers
[github-star-badge]: https://img.shields.io/github/stars/me-io/appium-selenium-starter.svg?style=social
[github-star]: https://github.com/me-io/appium-selenium-starter/stargazers
[twitter]: https://twitter.com/intent/tweet?text=Check%20out%20appium-selenium-starter!%20https://github.com/me-io/appium-selenium-starter%20%F0%9F%91%8D
[twitter-badge]: https://img.shields.io/twitter/url/https/github.com/me-io/appium-selenium-starter.svg?style=social
[donate-badge]: https://img.shields.io/badge/paypal-donate-179BD7.svg?style=flat-squares
[donate]: https://www.paypal.me/meabed