ruby - What is the difference between using finders and actions to interact with a element? -


when looking element there functional difference between:

find('somelocator').click() 

and

click_link('somelocator') 

does find method point in time inspection looking supplied element or wait exist of action methods??

click_link('somelocator') implemented find(:link, 'somelocator').click no there's no real difference, both use capybara's waiting behavior matching element


Comments