Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
This repository was archived by the owner on Dec 17, 2024. It is now read-only.
/ggrPublic archive

A lightweight load balancer used to create big Selenium clusters

License

NotificationsYou must be signed in to change notification settings

aerokube/ggr

Repository files navigation

Build StatusCoverageGoReportReleaseDocker Pulls

UNMAINTAINED. Considerhttps://aerokube.com/moon/latest as alternative.

Go Grid Router (aka Ggr) is a lightweight active load balancer used to create scalable and highly-availableSelenium clusters.Ggr Animation

Articles

Quick Start Guide

To use Go Grid Router do the following:

  1. InstallDocker to host
  2. Create configuration directory:
$ mkdir -p /etc/grid-router/quota
  1. Createusers.htpasswd file:
$ htpasswd -bc /etc/grid-router/users.htpasswd test test-password
  1. Start Selenium standalone server on port 4445:
$ java -jar selenium-server-standalone.jar -port 4445

You can also startSelenoid instead.

  1. Create quota file (use correct browser name and version):
$ cat /etc/grid-router/quota/test.xml<qa:browsers xmlns:qa="urn:config.gridrouter.qatools.ru"><browser name="firefox" defaultVersion="59.0">    <version number="59.0">        <region name="1">            <host name="localhost" port="4445" count="1"/>        </region>    </version></browser></qa:browsers>

Note: file name should correspond to username you added to htpasswd file. For usertest we added on previous steps you should createtest.xml.

  1. Start Ggr container:
# docker run -d --name ggr -v /etc/grid-router/:/etc/grid-router:ro --net host aerokube/ggr:latest-release
  1. Access Ggr on port 4444 in the same way you do for Selenium Hub but using the following url:
http://test:test-password@localhost:4444/wd/hub

Complete Guide & Build Instructions

Complete reference guide (including build instructions) can be found at:http://aerokube.com/ggr/latest/


[8]ページ先頭

©2009-2025 Movatter.jp