Skip to content

Instantly share code, notes, and snippets.

View rcasady616's full-sized avatar

Rick Casady rcasady616

View GitHub Profile
@rcasady616
rcasady616 / FullDevloperBox.ps1
Created November 9, 2018 21:59
required tools for a dev environment
# FullDevloperBox.ps1 will setup a all tools for a dev environment
# Author: Rick Casady
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
# start http://boxstarter.org/package/nr/url?<URL-TO-RAW-GIST>
@rcasady616
rcasady616 / WebdriverDisposePattern
Created August 15, 2014 03:57
Ensure that WebDriver is disposed after each test even if the test fails
public IWebDriver Driver;
[SetUp]
public void SetupTest()
{
Driver = WebDriverFactory.GetSauceDriver();
}
[TearDown]
public void TearDown()