Skip to content

Files

Latest commit

 

History

History
27 lines (17 loc) · 485 Bytes

Capybara-ClickLinkOrButtonStyle.md

File metadata and controls

27 lines (17 loc) · 485 Bytes

Pattern: Inconsistent button/link click style

Issue: -

Description

Checks for methods of button or link clicks.

This cop is deprecated. We plan to remove this in the next major version update to 3.0.

Examples

# bad
# bad
click_link('foo')
click_button('foo')

# good
click_link_or_button('foo')
click_on('foo')

Further Reading