hide-elements and placeholders

This commit is contained in:
Laura Carvajal
2016-10-25 07:59:49 +01:00
committed by Rowan Manning
parent 36dad55bb8
commit 9df456c7c1
3 changed files with 4 additions and 4 deletions

View File

@@ -53,9 +53,9 @@ function route(app) {
timeout: req.body.timeout || undefined,
wait: req.body.wait || undefined,
username: req.body.username || undefined,
password: req.body.password || undefined
password: req.body.password || undefined,
headers: parsedHeaders || undefined,
hideElements: req.body.hide || undefined
hideElements: req.body['hide-elements'] || undefined
};
app.webservice.tasks.create(newTask, (err, task) => {