Vue app, Nightwatch tests are running locally with docker rights, how should I point my file in local file system? As:
.setValue(
'input#front',
require('path').resolve(...),
function (result) { this.assert.equal(result.status, 0) })
where ...
- location of my file, as: /home/user/projects/myproject/src/assets/temp.jpg
also, will setValue catch this listener?:
document.getElementById('front').addEventListener('change', this.readFront)