using chrome 78 and chromedriver78 When i click an audio file or try to stop an audio using selenium tests i am getting this error.
Error:
org.openqa.selen
I have also faced the same issue. In my case the problem was that the element I tried to move to wasn't visible yet in the browser.
So I used time.sleep(1)
time.sleep(1)
After that it worked.