https://github.com/browserstack/fast-selenium-scripts
https://github.com/browserstack/fast-selenium-scripts
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/browserstack/fast-selenium-scripts
- Owner: browserstack
- Created: 2018-03-15T10:27:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-07-03T12:23:41.000Z (over 2 years ago)
- Last Synced: 2025-04-22T21:06:03.690Z (11 months ago)
- Language: Python
- Size: 16.6 KB
- Stars: 3
- Watchers: 8
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fast-selenium-scripts
This repository contains scripts of `fast-selenium` add-on Browserstack provides to speed up your tests.
### Usage
All you have to do is download it as per your language, and include it in your code.
#### Ruby
```
require './fast-selenium'
```
Note: To run this patch, the [Curb gem](http://rubygems.org/gems/curb) has to be included in the project Gemfile.
#### Node
```
require('./fast-selenium.js');
```
#### Python
##### Note: In Python 3, some modules has been renamed. Use accordingly from `python2` or `python3` folder in this repository
```
import fast_selenium
```