Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View jwill9999's full-sized avatar
💭
working

Jason Williams jwill9999

💭
working
View GitHub Profile

Locators

element(by.<...>)

  • id
  • js
  • css
  • className
  • name
@jwill9999
jwill9999 / .gitconfig
Created December 10, 2019 08:31 — forked from Vadorequest/.gitconfig
My own Git config
[push]
default = current
[alias]
fetch = git fetch --tags
st = status
ci = commit
co = checkout
br = branch
rz = reset --hard HEAD
unwip = reset HEAD^
@jwill9999
jwill9999 / vim_cheatsheet.md
Created October 8, 2018 17:40 — forked from awidegreen/vim_cheatsheet.md
Vim shortcuts

Introduction

  • C-a == Ctrl-a
  • M-a == Alt-a

General

:q        close
:w        write/saves
:wa[!]    write/save all windows [force]
:wq       write/save and close
@jwill9999
jwill9999 / npmcrashcourse.txt
Created December 8, 2017 01:34 — forked from bradtraversy/npmcrashcourse.txt
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)