JSPM

  • Created
  • Published
  • Downloads 207
  • Score
    100M100P100Q88800F
  • License MIT

steps to interact with wdio

Package Exports

  • @qavajs/steps-wdio
  • @qavajs/steps-wdio/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@qavajs/steps-wdio) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@qavajs/steps-wdio

Step library to work with webdriverio using DSL page object

const App = require('./page_object');
module.exports = {
    default: {
        require: [
            '@qavajs/steps-config-loader',
            '@qavajs/steps-wdio'
        ],
        browser: {
            timeout: {
                present: 10000,
                visible: 20000    
            },
            capabilities: {
                browserName: 'chrome'
            }
        },
        pageObject: new App()
    }
}

Parameter Types

types

Steps

action steps

validation steps

wait steps

memory steps