I have been trying to send a URL link to a text area. I am using python3 and Chrome Version 109.0.5414.119. It worked fine on my local OSX machine but when I tried to automate it on a Linux Machine. It started behaving weirdly. So I have this feeling that It can be a Chrome Driver-related issue.
When I send a URL like this:
l.send_keys("https://google.com")
But becomes:
/google.comhttps:
Then I tried to debug this behavior by sending the following:
>>> l.send_keys("/") # /|
>>> l.send_keys("/") # |/
So the position of the cursor is going ahead of the line for the second /
. I was not expecting this. I wonder if you can shed light on how to solve this?