I am trying to run this code to print labels for things that have sold on ebay:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
PATH = "C:\src\chromedriver.exe"
driver = webdriver.Chrome(PATH)
driver.get("https://www.ebay.co.uk/sh/ord/?filter=status%3AAWAITING_SHIPMENT")
title = driver.title
if title == "Sign in or Register | eBay":
username = driver.find_element_by_id("userid")
username.send_keys("username")
username.send_keys(Keys.RETURN)
However, the username does not get submitted in the text box and i can see errors in chromedriver.exe:
[9496:19816:0710/133749.738:ERROR:ssl_client_socket_impl.cc(959)] handshake failed; returned -1, SSL error code 1, net_error -200
[9496:19816:0710/133751.420:ERROR:ssl_client_socket_impl.cc(959)] handshake failed; returned -1, SSL error code 1, net_error -100
[9496:19816:0710/133751.433:ERROR:ssl_client_socket_impl.cc(959)] handshake failed; returned -1, SSL error code 1, net_error -100
[1716] shell_ipc_client.cc:116:Connect Can't connect to socket at: \\.\Pipe\GoogleDriveFSPipe_User_shell
How do i fix this and why is this happening?
Edit: This is only the sign in part of my program, i still have to find a way to print the labels.

