I'm running Selenium using Python 3.6.4 and Pytest 6.1.1 on Ubuntu 20.04, when I run the below command to send keys the "/" are removed from the output. In Windows they are not removed.
element.send_keys("sudo /bin/bash")
The end result is: sudo binbash
Any ideas how to solve this problem? I've tried escaping them and no luck.
Thanks for your time.