Nightwatch.js中的文件上传测试

Nightwatch.js中的文件上传测试,第1张

Nightwatch.js中的文件上传测试

我的

setValue()
方法实现有两个单独的问题。

  1. 在nightwatch命令中使用–verbose标记导致我遇到一个问题,即在期间实际上找不到输入标签

    setValue()
    ,而在期间发现了输入标签
    waitForElementVisible()
    。改变
    input[type="file"]
    input#fileUpload
    解决这个问题。

  2. 其次,以下描述路径的方法不起作用…

    • 'textfile.txt'
    • 'http://localhost:3000/testfile.txt'
      (如果在文件上传窗口中手动输入,将可以使用)

工作正在使用什么

require('path').resolve(__dirname + '/testfile.txt')

在这里
看一看,以了解导致该修复程序的讨论。感谢Richardard-
flosi。

工作代码:

module.exports = {  "Standard File Upload" : function (browser) {    browser      .url("http://localhost:3000")      .waitForElementVisible('body', 1000)      .waitForElementVisible('input#fileUpload', 1000)      .pause(1000)      .setValue('input#fileUpload', require('path').resolve(__dirname + '/testfile.txt')) // Works//      .setValue('input#fileUpload', "testfile.txt") // Will not work//      .setValue('input#fileUpload', "http://localhost:3000/testfile.txt") // Will not work//      .setValue('input[type="file"]', require('path').resolve(__dirname + '/testfile.txt')) // Will not work      .click('#submit')      .pause(1000)      .assert.containsText('h3', 'File Uploaded Successfully')      .end();  }};


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4900189.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存