CodeceptJS学习笔记-入门03-使用nodejs运行

 
 

新建 run.js

const {codecept: Codecept,container} = require('codeceptjs');
 
 
const config = {
    helpers:{
        Puppeteer:{
            url: 'https://github.com',
            show: true,
            windowSize: '1920x1080'
        }
    }
}
 
const opts = {
    steps: true,
}
 
const codecept = new Codecept(config,opts);
 
 
 
 
 

运行 

node run.js
posted @ 2020-07-03 17:03  沙鸥ing  阅读(311)  评论(0编辑  收藏  举报