So, I have looked at some very old questions but none of them answer my question, i want to click an absolute x y position but no DOMs no XPATHs nothing. Just x and y positions that need to be clicked. Thank you in advanced!
I already tried this and a lot more, but that linked above is the closest to what I want.
According to the Selenium documentation.
You can click anywhere within the viewport using ActionBuilder
In the following code,
You will not see your mouse icon move to the location on the screen, however, the mouse pointer does actually move to that position.
from time import sleep
from selenium import webdriver
from selenium.webdriver import ActionChains
from selenium.webdriver.common.actions.action_builder import ActionBuilder
# Open Webpage
driver = webdriver.Chrome()
driver.get('https://selenium.dev/selenium/web/mouse_interaction.html')
# Sleep for 5 seconds before clicking on the link at position (64,60)
sleep(5)
# Move to position (64,60) and click() at that position (Note: you will not see your mouse move)
action = ActionBuilder(driver)
action.pointer_action.move_to_location(64, 60)
action.pointer_action.click()
action.perform()