Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. step.add_first_product = function(response)
  2. return add_product(cleanup(config.first_variant_ids))
  3. end
  4.  
  5. step.browse_first_other_product = function(response)
  6. return visit_product_page(sample(other_product_handles))
  7. end
  8.  
  9. step.visit_second_product = function(response)
  10. return visit_product_page(config.second_product_handle)
  11. end
  12.  
  13. step.add_second_product = function(response)
  14. return add_product(cleanup(config.second_variant_ids))
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement