因此,我目前正在尝试查看使用Node.js的非常基本的selenium设置,以便我们开始实施E2E测试。
所以我用快递
启动了一个基本的node.js服务器const express = require('express');
const path = require('path')
const app = express()
const PORT = 3000
app.use(express.static('public'))
app.get('/', (req,res) => res.status(200).end() );
app.listen(PORT, 'localhost', (req,res) => console.log(`port running on ${PORT}`))
为了测试,我创建了一个非常基本的html / css / js FE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<link rel="stylesheet" href="./styles.css">
<body>
<div id="testing-file">
This is a test
<span>
<p id="ryan">Ryan</p>
</span>
</div>
<script>
console.log('hello')
</script>
</body>
</html>
//样式
#testing-file {
color: red;
font-size: 2em;
}
#ryan {
color: blue;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
现在这里是测试设置,这是我第一次使用Selenium并且真的尝试从头开始设置E2E。因此,在我整个上午来到这里阅读文档之后。
Nightwatch.json文件
{
"src_folders" : ["tests"],
"output_folder" : "reports",
"custom_commands_path" : "",
"custom_assertions_path" : "",
"page_objects_path" : "",
"globals_path" : "",
"selenium" : {
"start_process" : false,
"server_path" : "",
"log_path" : "",
"port" : 9515,
"cli_args" : {
"webdriver.chrome.driver" : "./chromedriver/",
"webdriver.gecko.driver" : "",
"webdriver.edge.driver" : ""
}
},
"test_settings" : {
"default" : {
"launch_url" : "http://localhost:3000",
"selenium_port" : 9515,
"selenium_host" : "localhost",
"silent": true,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"browserName": "firefox",
"marionette": true
}
},
"chrome" : {
"desiredCapabilities": {
"browserName": "chrome"
}
},
"edge" : {
"desiredCapabilities": {
"browserName": "MicrosoftEdge"
}
}
}
}
nightwatch.js文件
module.exports = {
src_folders: ['test/e2e/']
}
test.js文件
module.exports = {
'step one' : browser => {
browser
.url('http://localhost:3000')
.waitForElementVisible('body', 200);
}
}
现在我已经掌握了基础知识,但是当我运行测试时,我收到错误:
[E2e\test] Test Suite
=========================
Running: step one
Error processing the server response:
unknown command: wd/hub/session
Error retrieving a new session from the selenium server
Connection refused! Is selenium server started?
{ value: -1, error: 'Unexpected token u in JSON at position 0' }
所以我的信念当然是我没有正确设置selenium web驱动程序,而且这很可能是我的问题,因为它很难。需要注意的是,我在窗户上。我确实将PATH变量设置为我在项目文件夹内部有selenium驱动程序的路径。它似乎试图进行测试,但问题似乎与硒驱动器没有关联。
我的节点服务器在3000上,只是提供静态文件和selenium如果我双击Windows web驱动程序应用程序说驱动程序在9515端口。现在我在网上看到的所有内容都显示端口在4444,但我真的不明白我现在读的是什么。所以基本上我需要在浏览器上运行一个简单的测试,chrome。如果需要任何其他信息,请告诉我
答案 0 :(得分:0)
您的nightatch.json中的服务器路径为空。
应该是这样的:
"selenium": {
"start_process": true,
"server_path": "./node_modules/selenium-server/lib/runner/selenium-server-standalone-2.53.0.jar",
"log_path": "reports",
"host": "127.0.0.1",
"port": 4444,
"cli_args": {
"webdriver.chrome.driver": "./node_modules/chromedriver/lib/chromedriver/chromedriver",
"webdriver.ie.driver": ""
}
},
路径是硒罐的实际位置。那个硒罐似乎被移动了,有时甚至在每次新的夜视仪转动时都会完全移除,所以你可能也必须安装它。