()
| 15 | } |
| 16 | |
| 17 | var TableExamplePage = function () { |
| 18 | this.get = function () { |
| 19 | browser.get(TABLE_EXAMPLE_URL); |
| 20 | }; |
| 21 | |
| 22 | this.getRootNodes = function () { |
| 23 | return element.all(by.repeater('node in data')); |
| 24 | }; |
| 25 | |
| 26 | this.getNodeAtPosition = function (position) { |
| 27 | return new TableExamplePageNode(position); |
| 28 | }; |
| 29 | }; |
| 30 | |
| 31 | module.exports = new TableExamplePage(); |
nothing calls this directly
no outgoing calls
no test coverage detected