While working with Selenium and IEDriverServer, I have encountered an issue where the keys are being sent to the input at a very slow pace.
After conducting some research, many websites recommend ensuring that the Browser and IEDriverServer are of the same bit (which is already the case in my situation), but I am still facing the problem of slow key input.
I have come across a potential solution involving using JavaScript to set the value of the input field, however, I am unsure if this is the most effective approach to resolving the slow keys bug.
Are there any disadvantages to using JavaScript instead of Selenium's sendkeys method?