OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. |
| 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ |
| 17 |
| 18 /* eslint-env mocha */ |
| 19 |
| 20 "use strict"; |
| 21 |
| 22 const webdriver = require("selenium-webdriver"); |
| 23 const {By, until} = webdriver; |
| 24 const assert = require("assert"); |
| 25 |
| 26 exports.title = "qunit"; |
| 27 |
| 28 exports.it = function(driver, origin) |
| 29 { |
| 30 return driver.navigate().to(origin + "/qunit/index.html").then(() => |
| 31 // Wait for qunit-results to be present |
| 32 driver.wait(until.elementLocated(By.id("qunit-testresult"))) |
| 33 ).then(() => |
| 34 // Wait for tests to finish |
| 35 driver.wait(() => |
| 36 driver.findElement(By.id("qunit-testresult")) |
| 37 .getAttribute("innerHTML").then(data => |
| 38 data.includes("Tests completed"))) |
| 39 ).then(() => Promise.all([[true, ".pass"], [false, ".fail"]].map( |
| 40 ([success, sel]) => driver.findElements( |
| 41 By.css(`#qunit-tests ${sel} .test-name`) |
| 42 ).then(elements => Promise.all(elements.map(elem => |
| 43 elem.getAttribute("textContent").then(data => assert.ok(success, data)) |
| 44 ))) |
| 45 ))); |
| 46 }; |
OLD | NEW |