How to use the wdio.run function in wdio

To help you get started, we’ve selected a few wdio examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github nacimgoura / instagram-profilecrawl / crawl.js View on Github external
function initBrowser() {
  wdio.run(initCrawlProfile, err => {
    if (err) {
      spinnerCrawl.fail(chalk.red(err.message));
    }
    while (listProfileName.length) {
      loadProfile();
    }
    browser.end();
    process.exit();
  });
}

wdio

Install WebdriverIO with all its dependencies in a single run

MIT
Latest version published 3 years ago

Package Health Score

51 / 100
Full package analysis

Popular wdio functions