UNPKG

380 BMarkdownView Raw
1* [I refresh the page](i-refresh-the-page)
2 * [regex](regex)
3 * [execution](execution)
4# I refresh the page
5## regex
6 regex should match "I refresh the page"
7
8```
9verifyStepMatch('I refresh the page');
10```
11
12
13## execution
14 execution should refresh the page
15
16```
17return executeStep('I refresh the page', function() {
18 expect(browser.refresh).to.have.been.calledOnce;
19});
20```