Commit b1f9fcf2 authored by aniket-engg's avatar aniket-engg

linting fixed

parent 510cccff
......@@ -155,7 +155,7 @@ module.exports = {
.debugTransaction(6)
.waitForElementVisible('*[data-id="slider"]')
// .setValue('*[data-id="slider"]', '5000') // Like this, setValue doesn't work properly for input type = range
.execute(function(){ document.getElementById('slider')['value'] = "7450";}) // It only moves slider to 7450 but vm traces are not updated
.execute(function () { document.getElementById('slider').value = '7450' }) // It only moves slider to 7450 but vm traces are not updated
.setValue('*[data-id="slider"]', new Array(3).fill(browser.Keys.RIGHT_ARROW)) // This will press NEXT 3 times and will update the trace details
.waitForElementPresent('*[data-id="treeViewDivtreeViewItemarray"]')
.click('*[data-id="treeViewDivtreeViewItemarray"]')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment