Sha256: 59070aa4a00400b1a569925e80be4a0565ccc759d2df8a0b773473f9a068da8a
Contents?: true
Size: 1.34 KB
Versions: 6
Compression:
Stored size: 1.34 KB
Contents
module RSpectacular Selectors = {} Selectors.merge!( /the Facebook application/ => lambda do frame_element = find 'html#facebook div#pagelet_app_runner iframe' frame_element[:id] end, /the flash(.*)/ => lambda do flash_type_class = $1.strip flash_type_class = flash_type_class.empty? ? '' : ".#{flash_type_class}" ".flash#{flash_type_class} p" end, ### # Facebook # /the Facebook login form/ => 'html#facebook form#login_form', /the Facebook page timeline nav bar/ => 'html#facebook #fbTimelineNavTopRow', /the Facebook account menu/ => '#navAccountLink', ### # PayPal # /the "Pay with PayPal" button/ => 'input[alt="Check out with PayPal"]', ### # Forms # /the errors for (.*)/ => lambda { "#{sf $1}+div.error" }, ### # Windows # /the most recently opened window/ => lambda { page.driver.browser.window_handles.last }, /the alert dialog/ => lambda { page.driver.browser.switch_to.alert }, ### # Date Picker Buttons # /the date picker button for today/ => '.ui-datepicker-today', ### # Model Links # /the (.*) button for/ => lambda { "##{$1.gsub(/ /, '_')}_#{args[0].class.name.underscore}_#{args[0].id}_link" } ) end
Version data entries
6 entries across 6 versions & 1 rubygems