UNPKG

protractor

Version:

Webdriver E2E test wrapper for Angular.

64 lines (45 loc) 2.28 kB
The WebDriver Control Flow ========================== The [WebDriverJS API](https://code.google.com/p/selenium/wiki/WebDriverJs#Understanding_the_API) is based on [promises](https://code.google.com/p/selenium/wiki/WebDriverJs#Promises), which are managed by a [control flow](https://code.google.com/p/selenium/wiki/WebDriverJs#Control_Flows) and adapted for [Jasmine](http://jasmine.github.io/1.3/introduction.html). A short summary about how Protractor interacts with the control flow is presented below. Promises and the Control Flow ----------------------------- WebDriverJS (and thus, Protractor) APIs are entirely asynchronous. All functions return promises. WebDriverJS maintains a queue of pending promises, called the control flow, to keep execution organized. For example, consider this test: ```javascript it('should find an element by text input model', function() { browser.get('app/index.html#/form'); var username = element(by.model('username')); username.clear(); username.sendKeys('Jane Doe'); var name = element(by.binding('username')); expect(name.getText()).toEqual('Jane Doe'); // Point A }); ``` At Point A, none of the tasks have executed yet. The `browser.get` call is at the front of the control flow queue, and the `name.getText()` call is at the back. The value of `name.getText()` at point A is an unresolved promise object. Protractor Adaptations ---------------------- Protractor adapts Jasmine so that each spec automatically waits until the control flow is empty before exiting. This means you don't need to worry about calling runs() and waitsFor() blocks. Jasmine expectations are also adapted to understand promises. That's why this line works - the code actually adds an expectation task to the control flow, which will run after the other tasks: ```javascript expect(name.getText()).toEqual('Jane Doe'); ``` Mocha Users ----------- If you are using Mocha as your test framework, the control flow will still automatically empty itself before each test completes. However, the `expect` function in Mocha is _not_ adapted to understand promises - that's why you'll need to use an assertion framework such as Chai as Promised. See [Choosing a Framework](/docs/frameworks.md) for more information.