Skip to content

Instantly share code, notes, and snippets.

@frnkst
frnkst / protractor_test.js
Last active July 24, 2017 10:38
Delay protractor clicks
// put it on top of the file, not in a describe block
// it delays protractor actions by 100ms so you can see
// what's happening
var origFn = browser.driver.controlFlow().execute;
browser.driver.controlFlow().execute = function() {
var args = arguments;
// queue 100ms wait
origFn.call(browser.driver.controlFlow(), function() {
@frnkst
frnkst / online.sh
Last active July 24, 2017 10:36
Check if you are online or not
#!/bin/bash
wget -q --spider http://google.com
if [ $? -eq 0 ]; then
echo "Online"
else
echo "Offline"
fi