I trying to send a URL with Selenium send_keys(url)
For example, the URL parsed to the script is https://www.test.com/downloads/myfile.zip
URL sent by selenium to my application then become https:www.test.comdownloadsmyfile.zip
i tried url.replace('/', '\/') and url.replace('/', '\\/'), but still not getting the correct URL.
