Mercurial > hg > cmmr2012-drupal-site
view core/tests/Drupal/Nightwatch/Tests/exampleTest.js @ 4:a9cd425dd02b
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:11:55 +0000 |
parents | |
children | 12f9dff5fda9 |
line wrap: on
line source
module.exports = { '@tags': ['core'], before(browser) { browser.drupalInstall({ setupFile: 'core/tests/Drupal/TestSite/TestSiteInstallTestScript.php', }); }, after(browser) { browser.drupalUninstall(); }, 'Test page': browser => { browser .drupalRelativeURL('/test-page') .waitForElementVisible('body', 1000) .assert.containsText('body', 'Test page text') .drupalLogAndEnd({ onlyOnError: false }); }, };