Skip to content

Instantly share code, notes, and snippets.

View abhayathapa's full-sized avatar

Abhaya Thapa abhayathapa

  • Kathmandu, Nepal
View GitHub Profile
@abhayathapa
abhayathapa / ember_examples.md
Last active September 1, 2015 06:04 — forked from rwjblue/ember_examples.md
Ember Examples
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')