You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Im trying to click on an element in this app that uses transparent overlays. Its essentially a toolbar that sits at the side of your desktop. you can expand it and navigate different menus ect. I can click on the expand button without any issues, but if i try and click on any elements once its expanded. the mouse click will happen somewhere else on the desktop.
this is the piece of code ive got that tries to click on the element, im using action chains to give it the coordinates of the element
Hi,
Im trying to click on an element in this app that uses transparent overlays. Its essentially a toolbar that sits at the side of your desktop. you can expand it and navigate different menus ect. I can click on the expand button without any issues, but if i try and click on any elements once its expanded. the mouse click will happen somewhere else on the desktop.
this is the piece of code ive got that tries to click on the element, im using action chains to give it the coordinates of the element
def click_on_remote_sources():
remoteSources = driver.find_element(By.ID, 'ExpandAllFolders')
action.move_to_element_with_offset(to_element=remoteSources, xoffset=149, yoffset=384).click().perform()
The text was updated successfully, but these errors were encountered: