(path)
| 3 | var |
| 4 | is_commons_js = typeof module !== "undefined" && module.exports, |
| 5 | getElementByXPath = function (path) { |
| 6 | result = document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null); |
| 7 | return result.singleNodeValue; |
| 8 | }, |
| 9 | expect = is_commons_js ? require('expect.js') : root.expect, |
| 10 | getElementXpath = is_commons_js ? require('./element-xpath.js') : root.getElementXpath; |
| 11 |