Selenium Action Class
Selenium WebDriver – Handle Keyboard And Mouse Events
Keyboard action such as key press is a must have action in some automation test cases. And sometimes you even need to press different keys in your selenium webdriver automation test scripts to make a menu popup. Or you need to simulate click Enter key to submit a form. And the mouse events such as …
Selenium WebDriver – Handle Keyboard And Mouse Events Read More »
Selenium WebDriver – How To Perform Right Click
In some web pages, function menus is not directly shown on the page. Sometimes you need to right click a button or something else to make the menu list show up, then you can click the menu item in the popup list. Test this kind of function is easy in manual test, but how to …