How to click in a place on chrome opened window with exaxt coordination in selenium python?

14 views Asked by At

I want to click in exactly pointed place in the image below. I tried this methods:

actions.move_by_offset(element, 91, 114).click().perform()

actions.move_to_element_with_offset(element,91 ,114).click().perform()

Also I tried by pyautogui library but I didn't get success.

0

There are 0 answers