Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.2 KB

Selenium 101

Use these as examples for teaching yourselves Selenium.

Open as Issue to discuss additions or improvements. PR's also welcome.

Windows & Git

If you have not done so already, follow these instructions to install git:

  • Download and install git for Windows from https://git-scm.com/download/win.
  • Use all installation default settings, but for the Adjusting your PATH environment option – select the second option: Use Git from the Windows Command Prompt
  • You are now able to access git from both the standard Windows cmd or from the newly installed Git Bash.
  • After installation, run the following commands to set your git config file (insert your information):
$ git config --global user.name "your_lastname, your_firstname"
$ git config --global user.email "[email protected]"

Links to Useful Resources