0
I.attachFile('input[type=file]', 'test.txt');

我在 codeceptjs/protractor 中尝试 attachFile 函数。我得到这个错误。

TypeError:driver.execute 不是函数

chromeDriver:2.33
selenium-standalone:3.7.1
codeceptJS:1.0.3

"output": "./e2e/codeceptjs_tests/reports",
"helpers": {
  "Protractor": {
    "url": "http://localhost:4200/",
    "driver": "hosted",
    "browser": "chrome",
    "rootElement": "body",
    "smartWait":5000, 

错误图片

代码范围

4

2 回答 2

0

试试看I.attachFile('input[type=file]', 'lega-client/test.txt');

于 2019-02-08T07:36:28.053 回答
0

语法是正确的,但您必须选择第一个参数中的按钮而不是字段

I.attachFile('button','test.txt')
于 2020-02-11T12:48:49.250 回答