12345678910111213141516171819 |
- module.exports = {
- 'default e2e tests': function (browser) {
-
-
-
- const devServer = browser.globals.devServerURL
- browser
- .url(devServer)
- .waitForElementVisible('#app', 5000)
- .assert.elementPresent('.hello')
- .assert.containsText('h1', 'Welcome to Your Vue.js App')
- .assert.elementCount('img', 1)
- .end()
- }
- }
|