I have edited the value of an input text like below:
document.body.querySelectorAll("*[id$='WE0234']")[0].value = '30000'
Then, How can I simulate event to SELECT and then to press ENTER on this input text? I want to do it in 2 lines like below.
I want to do something like this..
document.body.querySelectorAll("*[id$='WE0234']")[0].SELECT_TEXT
document.body.querySelectorAll("*[id$='WE0234']")[0].PRESS_ENTER