:) 我选择了 Cypress.io 进行自动化测试工具。我需要对我的 sitemap.xml 文档进行一些测试,但我不知道该怎么做:(
我试过安装一个 npm 包 libxmljs
npm install libxmljs --save
并将其作为插件加载到 cypress/plugins/index.js
const libxmljs = require('libxmljs');
但这有一个问题。它显示一个错误
The plugins file is missing or invalid.
Your pluginsFile is set to /home/my-app/cypress/plugins/index.js, but
either the file is missing,
it contains a syntax error, or threw an error when required.
The pluginsFile must be a .js or .coffee file.
Please fix this, or set pluginsFile to false if a plugins file is not
necessary for your project.
Error: The module '/home/my-app/node_modules/libxmljs/build/Release/xmljs.node'
请帮助我,我如何在 Cypress.io 中使用 libxmljs,或者我应该如何在这个端到端测试工具中为 Sitemap.xml 编写测试。
谢谢你的时间!:)