furoblog’s blog

妻と一緒にはじめました。1日1更新が目標です。

2022-05-05から1日間の記事一覧

【protractor】input type fileへファイル添付する

IT

var path = require('path'); it('should upload a file', function() { var fileToUpload = '../some/path/foo.txt', absolutePath = path.resolve(__dirname, fileToUpload); element(by.css('input[type="file"]')).sendKeys(absolutePath); element(by.i…