All Projects → xilution → xilution-selenium-grid

xilution / xilution-selenium-grid

Licence: other
A Selenium Grid that Runs in AWS ECS Fargate.

Programming Languages

Makefile
30231 projects

Projects that are alternatives of or similar to xilution-selenium-grid

ecs-taskmetadata-cloudwatch
An example sidecar container for Amazon ECS and AWS Fargate to enable task/container-level metrics on CloudWatch
Stars: ✭ 17 (-22.73%)
Mutual labels:  ecs, fargate
fargate-game-servers
This repository contains an example solution on how to scale a fleet of game servers on AWS Fargate on Elastic Container Service and route players to game sessions using a Serverless backend. Game Server data is stored in ElastiCache Redis. All resources are deployed with Infrastructure as Code using CloudFormation, Serverless Application Model,…
Stars: ✭ 30 (+36.36%)
Mutual labels:  ecs, fargate
terraform-aws-ecs-alb-service-task
Terraform module which implements an ECS service which exposes a web service via ALB.
Stars: ✭ 108 (+390.91%)
Mutual labels:  ecs, fargate
ddd-practitioners-ref
EventStorming workshop, this is a hands-on workshop. Contains such topics: DDD, Event storming, Specification by example. Including the AWS product : Serverless Lambda , DynamoDB, Fargate, CloudWatch.
Stars: ✭ 276 (+1154.55%)
Mutual labels:  ecs, fargate
terraform-ecs-fargate-nlb
A Terraform template used for provisioning network application stacks on AWS ECS Fargate
Stars: ✭ 50 (+127.27%)
Mutual labels:  ecs, fargate
selenium-grid-docker-swarm
web scraping in parallel with Selenium Grid and Docker
Stars: ✭ 32 (+45.45%)
Mutual labels:  selenium, selenium-grid
SeleniumDemo
Selenium automation test framework
Stars: ✭ 84 (+281.82%)
Mutual labels:  selenium, selenium-grid
Zalenium
A flexible and scalable container based Selenium Grid with video recording, live preview, basic auth & dashboard.
Stars: ✭ 2,381 (+10722.73%)
Mutual labels:  selenium, selenium-grid
selenium-grid-docker-swarm-test
Distribute automated tests with Selenium Grid and Docker Swarm
Stars: ✭ 28 (+27.27%)
Mutual labels:  selenium, selenium-grid
callisto
Callisto is an open-source Kubernetes-native implementation of Selenium Grid.
Stars: ✭ 83 (+277.27%)
Mutual labels:  selenium, selenium-grid
terraform-fargate-tutorial
A minimal set of Terraform to create a Fargate service
Stars: ✭ 32 (+45.45%)
Mutual labels:  ecs, fargate
kms-env
A tool to encrypt and decrypt environment variables using KMS
Stars: ✭ 16 (-27.27%)
Mutual labels:  kms, ecs
aws-ecs-orb
An orb that simplifies deployment to Amazon's Elastic Container Service (ECS). Supports both EC2 and Fargate launch types.
Stars: ✭ 48 (+118.18%)
Mutual labels:  ecs, fargate
container-demo
How can I manage microservices using ecs-cli?
Stars: ✭ 30 (+36.36%)
Mutual labels:  ecs, fargate
terraform-aws-fargate
Terraform module to provision a Fargate-ready AWS infrastructure 🚀
Stars: ✭ 77 (+250%)
Mutual labels:  ecs, fargate
selenified
The Selenified Test Framework provides mechanisms for simply testing applications at multiple tiers while easily integrating into DevOps build environments. Selenified provides traceable reporting for both web and API testing, wraps and extends Selenium calls to more appropriately handle testing errors, and supports testing over multiple browser…
Stars: ✭ 38 (+72.73%)
Mutual labels:  selenium, selenium-grid
Docker Selenium
Docker images for the Selenium Grid Server
Stars: ✭ 5,476 (+24790.91%)
Mutual labels:  selenium, selenium-grid
Selenoid
Selenium Hub successor running browsers within containers. Scalable, immutable, self hosted Selenium-Grid on any platform with single binary.
Stars: ✭ 2,065 (+9286.36%)
Mutual labels:  selenium, selenium-grid
Selenium-Foundation
Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).
Stars: ✭ 51 (+131.82%)
Mutual labels:  selenium, selenium-grid
ecsgo
Provides an interactive prompt to connect to ECS Containers using the ECS ExecuteCommand API.
Stars: ✭ 30 (+36.36%)
Mutual labels:  ecs, fargate

xilution-selenium-grid

  • Stand up a Selenium Grid in AWS ECS Fargate using Selenium Grid Host and Node Docker images.
  • A configurable CloudFormation template is provide along with a Makefile to simplify the provisioning and deprovisioning process.
  • Keeps your secrets safe with KMS.
  • Grid accessible through: http://selenium-grid.your-domain.com:4444
  • Simply follow the instructions below and you'll have a functioning Selenium Grid stood up in no time.

Inspiration

Assumptions

  • These instructions were created for a Mac environment, but could easily be ported to Linux or Windows.

Set Up

  1. Set up an AWS Account.
  2. Install the AWS CLI.
  3. Use AWS IAM to create an administrator identity. It's generally bad practice to use your AWS account's root user.
  4. Use AWS Route53 to create a Hosted Zone with a custom domain name. This step is optional.
  5. Use AWS Key Management System to create a dev ops key for encrypting secrets.
  6. Add export AWS_DEV_OPS_KEY_TOKEN=your-aws-dev-ops-kms-key-token to your .bash_profile. Run source ~/.bash_profile to add the new environment variable to your current terminal session. This only needs to be done once.
  7. Create a file named secrets.decrypted.json in ./aws/cloud-formation/ with the following contents. Replace your-domain.com. with your custom domain name. If you do not set up a custom domain name, remove the RecordSet resource from the CloudFormation template.
    [
      {
    	"ParameterKey": "DomainName",
    	"ParameterValue": "your-domain.com."
      }
    ]
  8. Run make secrets-devops-encrypt to encrypt the parameters with your key.

Operating your Selenium Grid

  1. Run make provision to stand up your Selenium Grid. Note that it could take up to 10 minutes to stand up the stack.
  2. Run make deprovision to tear down your Selenium Grid.

Warning! Only run the grid while needed. When not in use, I highly recommend that you run the deprovision step. Why pay for your new Selenium Grid when you don't need it. Isn't elasticity great!?!

Contributions

Pull requests are welcome. If you see an opportunity to improve this repo, please share.

Pay it Forward

If you find the contents of this repo useful, please share your experiences with the boarder community. Thanks!

Wish List

See repo Issues.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].