Skip to content

Instantly share code, notes, and snippets.

@demisx
demisx / protractor-cheatsheet.coffee
Last active September 27, 2020 00:03
Protractor e2e Cheatsheet (CoffeeScript)
browser.get "/phones" # navigate to /phones URL
input.clear() # clear text input field
expect(browser.getTitle()).toMatch 'My Google Photo Gallery'
expect(browser.getCurrentUrl()).toMatch "/phones$"
# Find by...
# --------------