本文介绍了使用 Nightwatch 测试图像上传的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在想办法用 Nightwatch 测试图片上传时遇到了麻烦.一旦我点击('.image-upload-button'),我就在浏览器之外进入操作系统,似乎无法控制.

I am having trouble figuring out a way to test image upload with Nightwatch. Once I click('.image-upload-button') I am outside the browser into the OS and seem to have no control.

最好的方法是什么?

推荐答案

在文件顶部添加 const path = require('path');.

您需要 .setValue,作为第二个参数介绍 SO 中文件的路径.这样就可以了.

You need .setValue, as second argument introduce the path to the file in your SO. That will make it.

.setValue('.selector', path.resolve('path/to/file.jpg'))

这篇关于使用 Nightwatch 测试图像上传的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 03:28