I'm trying to get as many easymc.io accounts keys as I can, I tried to get the value of a button but it doesn't and when I'm trying to find the element_by_xpath it says that the xpath does not exist
#from bs4 import BeautifulSoup
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
CHROMEDRIVER_PATH = 'C:\\Users\\Downloads\chromedriver_win\chromedriver.exe'
options = Options()
options.headless = False
driver = webdriver.Chrome(CHROMEDRIVER_PATH, options=options)
driver.get('https://easymc.io/get?new')
element = driver.find_element_by_xpath('//*[@id="root"]/div[2]/div[1]/div[2]/div/div[2]/div[2]/div/div[2]/div[2]/div/input')