0.0.2 • Published 11 years ago

q-step v0.0.2

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

QStep

A simple control flow function for JavaScript promises, similar to creationix/step

Example

Using the wd WebDriver library with QProxy in CoffeeScript:

browser = QProxy(wd.promiseRemote("localhost", 4444))
loginFacebook = (credentials) ->
  QStep(
    -> browser.init(browserName: "firefox")
    -> browser.get("https://www.facebook.com/")
    -> browser.elementById("email").type(credentials.email)
    -> browser.elementById("pass").type(credentials.password)
    -> browser.elementById("u_0_b").click()
  )

Errors are propagated to the promise returned from QStep, unless they're handled within one of the steps:

loginFacebook(credentials).then ->
  console.log "success!"
, (err) ->
  console.log "error :(", err
0.0.2

11 years ago

0.0.1

11 years ago