This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This script will search 4chan (need to specify a board unfortunately) and then | |
search all comments on Reddit for specific keywords. If found, it will then send | |
an email with the links to any matching posts. | |
Because 4chan posts are archived after ~48 hours I would recommend setting this up | |
to run on that cadence as well. | |
Sender email will need "Allow less secure apps" to ON or similar setting. | |
I followed these instructions for setting that up: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For Europe (in Russian): | |
http://rinauzhevko.blogspot.ru/2014/06/software-testing-world-cup-2014.html | |
####TEAM#### | |
http://dnlkntt.wordpress.com/2014/06/14/short-summary-about-the-software-testing-world-cup-2014-europe-competition/ | |
http://about98percentdone.blogspot.com/2014/05/software-test-world-cup-2014-part-1.html | |
http://about98percentdone.blogspot.de/2014/05/software-test-world-cup-2014-part-2.html | |
http://www.rajsubra.com/2014/05/09/our-software-testing-world-cup-2014-story-the-four-musketeers/ | |
http://isitgoodenoughyet.com/2014/05/17/judging-the-software-testing-world-cup-oceania-2014/ | |
http://www.iteststuff.ca/2014/05/reflecting-on-my-software-testing-world.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'selenium-webdriver', '~> 2.45.0' | |
gem 'eyes_selenium', '~> 2.15.0' | |
gem 'rspec', '~> 3.2.0' | |
gem 'rake', '~> 10.4.2' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pages/top-nav-widget.rb | |
module PageObject | |
module TopNavWidget | |
FORK_LINK = { css: 'img' } | |
end | |
end | |
# pages/login-page.rb | |
module PageObject | |
class LoginPage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Use Selenium to Measure Web Timing | |
Performance Timing Events flow | |
navigationStart -> redirectStart -> redirectEnd -> fetchStart -> domainLookupStart -> domainLookupEnd | |
-> connectStart -> connectEnd -> requestStart -> responseStart -> responseEnd | |
-> domLoading -> domInteractive -> domContentLoaded -> domComplete -> loadEventStart -> loadEventEnd |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import junit.framework.Assert; | |
import junit.framework.TestCase; | |
import org.openqa.selenium.*; | |
import org.openqa.selenium.remote.*; | |
import java.net.URL; | |
import java.util.concurrent.TimeUnit; | |
public class TestingUploadSe2Sauce extends TestCase { | |
private RemoteWebDriver driver; |