comparison core/tests/Drupal/Nightwatch/Tests/exampleTest.js @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents a9cd425dd02b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
13 .drupalRelativeURL('/test-page') 13 .drupalRelativeURL('/test-page')
14 .waitForElementVisible('body', 1000) 14 .waitForElementVisible('body', 1000)
15 .assert.containsText('body', 'Test page text') 15 .assert.containsText('body', 'Test page text')
16 .drupalLogAndEnd({ onlyOnError: false }); 16 .drupalLogAndEnd({ onlyOnError: false });
17 }, 17 },
18 'Page objects test page': browser => {
19 const testPage = browser.page.TestPage();
20
21 testPage
22 .drupalRelativeURL('/test-page')
23 .waitForElementVisible('@body', testPage.props.timeout)
24 .assert.containsText('@body', testPage.props.text)
25 .drupalLogAndEnd({ onlyOnError: false });
26 },
18 }; 27 };