playwright/package.json
2025-03-04 17:13:49 +08:00

37 lines
958 B
JSON

{
"name": "playwright-automation",
"version": "1.0.0",
"description": "基于Playwright的自动化测试工具",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"report": "playwright show-report",
"codegen": "playwright codegen",
"debug": "playwright test --debug",
"test:longi:check-normal:dev": "cross-env NODE_ENV=dev playwright test tests/longi-ibp/check-page-normal.test.js --headed --project=chromium"
},
"keywords": [
"playwright",
"automation",
"testing",
"e2e"
],
"author": "",
"license": "MIT",
"dependencies": {
"@playwright/test": "^1.40.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"faker": "^5.5.3"
},
"devDependencies": {
"allure-playwright": "^2.9.2",
"cross-env": "^7.0.3",
"dotenv-flow": "^4.1.0",
"eslint": "^8.54.0",
"eslint-plugin-playwright": "^0.18.0"
}
}