Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luisxiaomai/robotframework-anywherelibrary
AnywhereLibrary is a cross platform(desktop browser,Android,iOS) testing library for Robot Framework that leverages the [Selenium 2(WebDriver)] libraries internally to control a web browser and [appium] as mobile test automation framework for use with native and hybrid app.
https://github.com/luisxiaomai/robotframework-anywherelibrary
appium python robot-framework webdriver
Last synced: about 1 month ago
JSON representation
AnywhereLibrary is a cross platform(desktop browser,Android,iOS) testing library for Robot Framework that leverages the [Selenium 2(WebDriver)] libraries internally to control a web browser and [appium] as mobile test automation framework for use with native and hybrid app.
- Host: GitHub
- URL: https://github.com/luisxiaomai/robotframework-anywherelibrary
- Owner: luisxiaomai
- License: mit
- Created: 2014-04-14T10:32:04.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-07-18T08:03:03.000Z (over 2 years ago)
- Last Synced: 2024-02-15T12:34:18.180Z (9 months ago)
- Topics: appium, python, robot-framework, webdriver
- Language: Python
- Homepage:
- Size: 874 KB
- Stars: 66
- Watchers: 13
- Forks: 37
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-robotframework - AnywhereLibrary - Page Apps (SPA). Uses Selenium Webdriver and Appium internally. (Libraries)
README
# [AnywhereLibrary for robotframework](https://github.com/luisxiaomai/robotframework-anywherelibrary)
[![PyPI version](https://badge.fury.io/py/robotframework-anywherelibrary.svg)](https://badge.fury.io/py/robotframework-anywherelibrary)
[![Build status](https://travis-ci.org/luisxiaomai/robotframework-anywherelibrary.svg?branch=master)](https://travis-ci.org/luisxiaomai/robotframework-anywherelibrary)
[![codecov](https://codecov.io/gh/luisxiaomai/robotframework-anywherelibrary/branch/master/graph/badge.svg)](https://codecov.io/gh/luisxiaomai/robotframework-anywherelibrary)
[![Join the chat at https://gitter.im/anywherelibrary/Lobby](https://badges.gitter.im/anywherelibrary/Lobby.svg)](https://gitter.im/anywherelibrary/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![GitHub license](https://img.shields.io/badge/license-ApacheLicense2.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
## IntroductionAnywhereLibrary is a cross platform (desktop browser, Android, iOS) testing library for Robot Framework that leverages the [Selenium 2 (WebDriver)]() libraries internally to control a web browser and [Appium]() as mobile test automation framework for use with native and hybrid apps.
This library is especially suitable for handling [SPA (single-page apps)](http://en.wikipedia.org/wiki/Single-page_application) with responsive design patterns. With this you only need to generate a set of scripts to cover all platforms (desktop browser, Android, iOS).
On the other hand, not any UI test automation framework is made for your real business. If this library isn't suitable for your business, it's highly recommended that you fork this repository as a prototype for UI test automation. Customize your own AnywhereLibrary in accordance to your actual business requirements.
## Installation
```bash
python3 setup.py install
```
## Directory Layout#### doc/
> Keyword documentation.
#### sample-code/
> A sample test case which can run in desktop browser, sample Android and iOS webview apps with different platform parameter inputs.#### src/base
> Python source code.
#### src/cfg
> Configuration file which stores all parameters for initializing the driver.## Usage
To write tests with Robot Framework and AnywhereLibrary, AnywhereLibrary must be imported into your RF test suite. See [Robot Framework User Guide](https://code.google.com/p/robotframework/wiki/UserGuide) for more information.
As it uses Appium for its mobile solution, please make sure your Appium server is up and running. For how to use Appium, please refer to the [Appium Documentation](http://appium.io/getting-started.html).
##### Before Running the Test Case
You must use the *`Initial Driver`* keyword with platform value as the parameter input; after the test case you must use *`Tear Down Driver`* keyword to tear down the related driver. Also you need to do some modifications in *`configuration.xml`* file in *`/AnywhereLibrary/cfg`*.##### Locating elements
All keywords in AnywhereLibrary that need to find an element on the page take an argument, `locator`. AnywhereLibrary supports a subset of the WebDriver locator strategies. Currently available locator strategies are:
find by "class" (i.e., ui component type)
find by "xpath" (i.e., an abstract representation of a path to an element, with certain constraints)Supported strategies are:
| *Strategy* | *Example* | *Description* |
| ---------- | ------------------------------------------ | -------------------------------------------- |
| xpath | `Click` | `//div[@id='my_element']` | Matches with arbitrary XPath expression |
| xpath | `Click` | `xpath=//div[@id='my_element']` | Matches with arbitrary XPath expression |
| class | `Click` | `class=android.widget.Button` | Matches another element by their class name |
| ... | Coming soon... | Coming soon... | |## Running Sample Cases
```bash
pybot --variable platform:chrome webviewTest.txt
pybot --variable platform:firefox webviewTest.txt
pybot --variable platform:iphone webviewTest.txt
```
## DocumentationKeywords at a Glance:
- `Initial Driver`
- `Tear Down Driver`
- `Click`
- `Type`
- `Element Find`
- `Get Text`
- `Get Value`
- `Verify Text`
- `Verify Value`
- `Is Element Present`
- `Page Should Contain Element`
- `Page Should Not Contains Element`
- `Wait For Element Present`
- `Wait No Such Element Present`
- `Switch To Native`
- `Switch To Webview`
- `Capture Page Screenshot`
- `Execute Javascript`* mobile gestures
- Coming Soon...More details about keyword documentation could be found at [Keyword Documentation](http://luisxiaomai.github.io/robotframework-anywherelibrary/doc/AnywhereLibraryDocument.html)
## Plan
* Add more keywords.
## FAQ
TODO
## License
* [MIT](https://opensource.org/licenses/MIT)