Commit 89ac4fe9 authored by aniket-engg's avatar aniket-engg

debugger locals array e2e test fixed

parent f5abff56
......@@ -154,8 +154,9 @@ module.exports = {
.pause(2000)
.debugTransaction(6)
.waitForElementVisible('*[data-id="slider"]')
.click('*[data-id="slider"]')
.setValue('*[data-id="slider"]', '5000')
// .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
.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"]')
.waitForElementPresent('*[data-id="treeViewDivtreeViewLoadMore"]')
......
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