Skip to content

Instantly share code, notes, and snippets.

@testautomationtribe
testautomationtribe / .bashrc
Created November 11, 2021 13:38 — forked from KaMeHb-UA/.bashrc
Beautiful and useful .bashrc example for TRUECOLOR terminals
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
@testautomationtribe
testautomationtribe / Instructions
Created September 21, 2021 05:44 — forked from c3s4r/Instructions
Install Selenium grid node as a windows service
Copy both files in a folder like c:\Selenium-install
Modify the selenium_node_install.bat accordingly
If you want to use MicrosoftEdge, before running the script you must install the webDriver: https://www.microsoft.com/en-us/download/details.aspx?id=48212
If you want to use IE11, you must follow this instructions, for it to work: http://www.michael-whelan.net/selenium-webdriver-and-ie11/
You could also modify the selenium_node_install.bat if needed
Once ready, run the selenium_node_install.bat file, run it as Administrator
A service will be created.
@testautomationtribe
testautomationtribe / docker-compose.yml
Last active October 9, 2016 15:19
docker-compose file to create selenium hub and register two nodes from containers. port is mapped HOST:CONTAINER. we communicated from outside world through Host IP and port
hub:
image: selenium/hub
ports:
- "4444:4444"
chrome:
image: selenium/node-chrome-debug
links:
- hub
ports: