Похоже, что он показывает координаты X / Y (271,705) в сообщении об ошибке. Я бы попробовал такой макропродукт, как AppRobotic, чтобы найти координаты X / Y элементов, которые у вас возникают при поиске в XPATH, перемещении мыши или отправке TABS при нажатии клавиши и нажатии на нее. Простой пример:
import win32com.client
x = win32com.client.Dispatch("AppRobotic.API")
from selenium import webdriver
# navigate to Yahoo
driver = webdriver.Firefox()
driver.get('https://www.yahoo.com')
# sleep 1 second
x.Wait(1000)
link = driver.find_element_by_link_text('Mail')
if len(link) > 0
link[0].click()
else
x.Wait(3000)
# use UI Item Explorer to get X,Y coordinates of Mail box
x.MoveCursor(271,705)
# click inside Search box
x.MouseLeftClick
# could also try tabbing over and pressing Enter
x.Type("{TAB}")
x.Type("{ENTER}")
Другая идея состоит в том, чтобы сначала попробовать перейти к элементу с помощью Selenium:
from selenium.webdriver.common.action_chains import ActionChains
element = driver.find_element_by_xpath('//[@action="/battle/"]/div/input[2]')
actionchains = ActionChains(driver)
actionchains.move_to_element(element).perform()