3

我正在为我当前的项目使用CucumberJS. 该测试将使用Selenium Server + WebDriverIO. 现在我坚持测试,我必须选择一个图像文件上传到服务器。我正在使用这个 WebDriverIO 的功能:

chooseFile(String selector, String localFilePath, Function callback)
Given a selector corresponding to an <input type=file>, will upload the local file to the browser machine and fill the form accordingly. It does not submit the form for you.

事情是这样的,因为我希望测试可以在每台计算机上运行,​​所以我预先上传了一些测试图像文件到服务器的root文件夹。因为不知道这个root文件夹会放在其他电脑的什么位置,所以我想一定有办法给chooseFile函数提交相对文件路径。我尝试过这种方式,但没有用(这是我在下面提到的文件中的代码uploadImg.coffee

@Given /^user attemp to upload his first avatar$/, (callback) ->
    @browser
    .click ".change-avatar"
    .chooseFile "input[name=avatarFile]", "/imgForTesting/spiderman.png"
    .click "#saveAvatarButton"
    .call callback
    return

这是我的项目文件夹结构(我正在使用MeteorJS):

public/ (root)
---imgForTesting/
------spiderman.png
packages/
---test-cucumber/
------features/
---------uploadImg.feature
---------step_definitions/
------------uploadImg.coffee
4

1 回答 1

2

我找到了这个节点命令:(process.cwd()http://nodejs.org/api/process.html#process_process_cwd 这将有助于获取当前工作目录的绝对路径。

更多阅读:process.cwd() 与 __dirname 有什么区别?

于 2014-11-03T15:16:07.363 回答