module SfHelper
Constants
- VERSION
Public Instance Methods
login_user(username,password)
click to toggle source
# File lib/sf_helper.rb, line 5 def login_user username,password visit "https://login.salesforce.com" fill_in "username", with: username fill_in "password", with: password click_button "Login" end