When there is a long string value need to paste, it takes lot of time. Instead of send keys to input data to a text field, can we use like element.value = "sss"?
How long is that taking? Should be fast enough. There are a few workarounds though but not recommended in some cases. You can modify element attributes using the javascript executor. driver.ExecuteScript()
When there is a long string value need to paste, it takes lot of time. Instead of send keys to input data to a text field, can we use like element.value = "sss"?