gpt4 book ai didi

javascript - TravisCI 和 SauceLabs - 文件系统上不存在文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:44:15 25 4
gpt4 key购买 nike

我有一个项目有 Protractor 测试,由 TravisCI 通过 SauceLabs 执行。

其中一项测试涉及“上传”文件:

it('should not allow "image/jpeg" file', function () {
pathToFile = path.resolve(__dirname, 'file.jpg');
elem.sendKeys(pathToFile);
expect(elem.getAttribute('class')).toMatch('ng-invalid');
});

这在本地工作正常,但是 Travis 产生错误:

<强>。 . . ./file.jpg' 在文件系统上不存在

我认为这是因为 file.png 在 SauceLabs 上不存在。

我的问题是,我怎样才能让它发挥作用?

有问题的指令是这个:https://github.com/GrumpyWizards/ngValidation/blob/master/wizValidation/src/file/file.dir.js

最佳答案

这是一个UI测试,根本不需要解析路径名...

it('should not allow "image/jpeg" file', function () {
pathToFile = "path/is/not/important/file.jpg";
elem.sendKeys(pathToFile);
expect(elem.getAttribute('class')).toMatch('ng-invalid');
});

迈克尔

关于javascript - TravisCI 和 SauceLabs - 文件系统上不存在文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23247034/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com