Helper functions for wait()ing with expected conditions using Protractor
npm install protractor-wait-helpersThese functions are an extremely small wrapper around Protractor ExpectedConditions.
##Arguments
* "el" is an protractor element()
* "text/value" are strings that the element will wait to have
* "timeout" is an integer length to wait in ms
##Functions
* waitForElementText: function (el, text, timeout)
* waitForElementValue: function (el, value, timeout)
* waitForElementVisible: function (el, timeout)
* waitForElementClickable: function (el, timeout)
* waitForElementSelected: function (el, timeout)
##TODO: Code Example