I trying to upload video file with selenium, it doesn't work
my code:
a = wait.until(EC.element_to_be_clickable((By.TAG_NAME, 'input'))) browser.execute_script("arguments[0].style.visibility = 'visible'", a) a.send_keys("C:/Users/NIKITA/Desktop/vk_clips/testvid.mp4")
This script works but doesn't load the file and doesn't throw an error. I tried searching for the element using XPath, it causes a timeout exception.
