Styrow.dev
Question 73 of 99

How can mouse hover on a control in selenium?

Question

How can mouse hover on a control in selenium?

Answer

act=ActionChains(driver) act.move_to_element(element) with the above method we mouse hover on element, element argument is web element where we need to mouse hover.