如何在Protractor中写入Excel文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Protractor中写入Excel文件相关的知识,希望对你有一定的参考价值。
我正在使用量角器5.2.2。我有一个需求 - 将数据写入excel文件(我需要将动态变量传递给同一个excel文件。也就是说,当我每次运行时,应该将不同的数据集输入到excel中,所以我使用过编辑XLSX)。我使用下面的代码。
var EditXlsx = require('edit-xlsx');
var xlsx = new EditXlsx('../files/exl.xlsx');
var sheet = xlsx.sheet(0);
var data = {
title: 'AKIRA'}
sheet.update('A1', 'Title');
但是当我运行量角器脚本时,它会显示“错误:无法找到模块'edit-xlsx'”。当我通过命令'npm install edit-xlsx'安装edit-xlsx时,它会给出错误及其下面的给出(I还成功安装了python 2.7)。
F:frx-automation>npm install edit-xlsx
> libxmljs@0.9.0 install F:frx-automation
ode_moduleslibxmljs
> node-gyp rebuild
F:frx-automation
ode_moduleslibxmljs>if not defined npm_config_node_gyp (node
"C:Program Files
odejs
ode_modules
pmin
ode-gyp-
bin\....
ode_modules
node-gypin
ode-gyp.js" rebuild ) else (node "" rebuild )
gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "C:Program Files
(x86)Python37-32python.EXE", you can set the PYTHON env variable.
gyp ERR! stack at PythonFinder.failNoPython (C:Program
Files
odejs
ode_modules
pm
ode_modules
ode-gyplibconfigure.js:483:19)
gyp ERR! stack at PythonFinder.<anonymous> (C:Program
Files
odejs
ode_modules
pm
ode_modules
ode-gyplibconfigure.js:508:16)
gyp ERR! stack at C:Program
Files
odejs
ode_modules
pm
ode_modulesgraceful-fspolyfills.js:284:29
gyp ERR! stack at FSReqWrap.oncomplete (fs.js:152:21)
gyp ERR! System Windows_NT 6.3.9600
gyp ERR! command "C:\Program Files\nodejs\node.exe" "C:\Program
Files\nodej
s\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" "rebuild"
gyp ERR! cwd F:frx-automation
ode_moduleslibxmljs
gyp ERR! node -v v8.9.3
gyp ERR! node-gyp -v v3.6.2
gyp ERR! not ok
npm WARN protractor-multiple-cucumber-html-reporter-plugin@1.7.0 requires a
peer of protractor@>= 4.0.0 but none is installed. You must install peer
dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4
(node_modulesfsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for
fsevents@
1.2.4: wanted {"os":"darwin","arch":"any"}
(current{"os":"win32","arch":"x64"})
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! libxmljs@0.9.0 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the libxmljs@0.9.0 install script.
npm ERR! This is probably not a problem with npm. There is likely additional
logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:UsersCS1027CAppDataRoaming
pm-cache\_logs2018-
020T03_43_13_721Z-debug.log
我错了吗?先谢谢
答案
edit-xlsx需要2.5到3.0之间的python版本
如果没有安装,请使用以下命令将npm设置为指向版本2.7,然后从here安装正确的版本
npm install --python=python2.7
然后使用安装edit-xlsx
npm install edit-xlsx
以上是关于如何在Protractor中写入Excel文件的主要内容,如果未能解决你的问题,请参考以下文章
java将画面中输入的内容,写入到指定的Excel文件的指定的行列中(具体实例)
如何不使用 Python 将第一列写入 Excel 文件? [复制]