I am using this code but I cannot select the input field.
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Chrome()
driver.get("https://10fastfingers.com/multiplayer")
input("Start : ")
a = "b"
inputfield = driver.find_element_by_xpath("//input[@type='text']")
inputfield.click()
while a == "b":
try:
word = driver.find_element_by_xpath("//span[@class='highlight']")
inputfield.send_keys(word.text)
inputfield.send_keys(Keys.SPACE)
except:
print("Finish")
a = "c"
input field element;
<input type="text" autofocus="autofocus" autocapitalize="none" autocorrect="off">
