Hello, I have a box with a text value inside. So I want to call it using
.clearValue(element.durInput)
but it's not clearing the value and so when I use .setValue it appends the new value instead of replacing. I wanted to instead use the code for keypress to press ctrl-a and then backspace to clear it. I'm using the code
browser.keys([browser.Keys.CONTROL, "a"])
browser.keys("8")
but I'm sure it's wrong since it's not working. Any idea how to make it work? Thanks in advance