English 中文(简体)
WebdriverIO Tutorial

Selected Reading

Running Tests from command-line parameters
  • 时间:2024-03-18 17:57:01

Running Tests from command-pne parameters


Previous Page Next Page  

成员:星期二 内容提要

成员:星期二 内容提要

Command-Line Parameters

成员:星期二 内容提要

成员:星期二 内容提要

成员:星期二 内容提要


suites: {
   group1: [ test/specs/testcase1.js ,  test/specs/testcase2.js ],
   group2: [ test/specs/testcase3.js ,  test/specs/testcase4.js ]
},

成员:星期二 内容提要

Test specs

成员:星期二 内容提要


npx wdio run wdio.conf.js --suite group1

成员:星期二 内容提要

Testcase2.js

成员:星期二 内容提要

成员:星期二 内容提要


npx wdio run wdio.conf.js --spec test/specs/testcase3.js

成员:星期二 内容提要

Testcase3.js

成员:星期二 内容提要

成员:星期二 内容提要


npx wdio run wdio.conf.js --spec test/specs/testcase3.js, test/specs/testcase4.js

成员:星期二 内容提要


exclude: [
   //  path/to/excluded/files 
    test/specs/testcase4.js 
],

成员:星期二 内容提要

Testcase4.js

成员:星期二 内容提要


npx wdio run wdio.conf.js 

成员:星期二 内容提要

Executed Successfully Screen

成员:星期二 内容提要

Advertisements