Skip to content

Instantly share code, notes, and snippets.

View rajanverma-me's full-sized avatar
🎯
Focusing

Rajan Verma rajanverma-me

🎯
Focusing
View GitHub Profile
@ziadoz
ziadoz / install.sh
Last active April 20, 2024 10:18
Install Chrome, ChromeDriver and Selenium on Ubuntu 16.04
#!/usr/bin/env bash
# https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/
# https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c
# https://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver
# https://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception
# https://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal
# https://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04
# Versions
CHROME_DRIVER_VERSION=`curl -sS https://chromedriver.storage.googleapis.com/LATEST_RELEASE`
@travismillerweb
travismillerweb / snap-to-section.js
Created March 4, 2014 09:56
JS - Snap To Section
/*
JS - Snap To Section
Snaps elements to the section as users scroll
Reference Link: http://stackoverflow.com/questions/6800404/scrollable-panel-snap-to-elements-on-scroll
*/
@ematta
ematta / ubuntu-ruby-gem-watir-install
Created May 12, 2011 13:51
Ubuntu Installation of Ruby, Gems, and WATIR
sudo apt-get install ruby
wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
tar xvzf rubygems-1.7.2.tgz
cd rubygems-1.7.2
sudo ruby setup.rb
ln -s /usr/bin/gem1.8 /usr/bin/gem
sudo gem update --system
sudo gem install watir