KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
selenium-mock
★ 9
Open GitHub ↗
Selenium Hub emulator
Download README (.md)
Explore Similar Repositories
Cocos-Creator-Snippet
:
cocos creator snippet for sublime
Material-design-Math-Teacher
:
This is a simple software with a friendly UI to teach kids some basic mental calculations and it includes a scoring and stage system, made with JavaFX.
sexec
:
No description available.
junos-pyez-examples
:
Some examples of how to use Junos PyEZ.
toloko
:
A command line tool for translating words.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
selenium-mock
?
Download (.md)
# Selenium Mock [](https://travis-ci.org/aerokube/selenium-mock) [](https://github.com/aerokube/selenium-mock/releases/latest) This repository contains a small binary emulating real Selenium Hub responses. The main application - load testing of Selenium proxies like [Gridrouter](http://github.com/aandryashin/ggr). ## Running Run the following command to obtain running selenium-mock on port 4444: ``` # docker run --rm -it --name selenium-mock -p 4444:4444 aerokube/selenium-mock:1.0.0 ``` ## Building To build install [Govendor](https://github.com/kardianos/govendor) and type: ``` $ go get github.com/aerokube/selenium-mock $ cd $GOPATH/src/github.com/aerokube/selenium-mock $ govendor sync $ go build ``` Then run: ``` $ ./selenium-mock -port 4444 ``` To create Docker container type: ``` $ docker build -t selenium-mock:latest . ```