All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.canoo.webtest.steps.mouse.MouseOut Maven / Gradle / Ivy

package com.canoo.webtest.steps.mouse;


/**
 * Triggers a mouseOut event on the HTML element determined by its id or xpath.
 *
 * @author Marc Guillemot
 * @webtest.step category="Extension"
 * name="mouseOut"
 * description="Triggers a mouseOut event on the HTML element identified by its
 * id or xpath. If this triggers the load of a new page, then this page becomes the current one."
 */
public class MouseOut extends MouseBaseStep
{
	public void doExecute() throws Exception
	{
		findElement().mouseOut();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy