Skip to content

Instantly share code, notes, and snippets.

View RMajewski's full-sized avatar

René Majewski RMajewski

  • LeanERA GmbH
  • Leipzig, Germany
View GitHub Profile
@RMajewski
RMajewski / PythonUnitTestCheatSheet.md
Last active June 28, 2019 13:19 — forked from mogproject/PythonUnitTestCheatSheet.md
Python unittest Cheat Sheet

Python unittest Cheat Sheet

Skeleton

@RMajewski
RMajewski / Capybara.md
Created May 12, 2018 13:33 — forked from tomas-stefano/Capybara.md
Capybara cheatsheet

Capybara Actions

# Anchor
click_link 'Save'

# Button
click_button 'awesome'

# Both above

Keybase proof

I hereby claim:

  • I am rmajewski on github.
  • I am terrarlx (https://keybase.io/terrarlx) on keybase.
  • I have a public key ASDjRuBTAdAk2wLob2oPwlIpCnodoQvlYY0geIEs55ObhQo

To claim this, I am signing this object:

@RMajewski
RMajewski / capybara cheat sheet
Created October 2, 2017 10:42 — forked from zhengjia/capybara cheat sheet
capybara cheat sheet
=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')
import static org.hamcrest.MatcherAsserts.*;
import static org.hamcrest.Matchers.*;