当前位置: 首页>>代码示例>>Java>>正文


Java Actions.perform方法代码示例

本文整理汇总了Java中org.openqa.selenium.interactions.Actions.perform方法的典型用法代码示例。如果您正苦于以下问题:Java Actions.perform方法的具体用法?Java Actions.perform怎么用?Java Actions.perform使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.openqa.selenium.interactions.Actions的用法示例。


在下文中一共展示了Actions.perform方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: scrollGameIntoView

import org.openqa.selenium.interactions.Actions; //导入方法依赖的package包/类
private void scrollGameIntoView() {
	/*
	 * Bellow code doesn't work well (it does not scroll horizontally):
	 * 
	 * ((JavascriptExecutor)driver).executeScript("arguments[0].scrollIntoView(true);", game);
	 */
	Actions actions = new Actions(driver);
	actions.moveToElement(game);
	actions.perform();
}
 
开发者ID:Betalord,项目名称:BHBot,代码行数:11,代码来源:MainThread.java

示例2: hoverOverElement

import org.openqa.selenium.interactions.Actions; //导入方法依赖的package包/类
@Deprecated
protected void hoverOverElement(WebElement webElement) {
    maximizeWindow();
    Actions builder = new Actions(getDriver());
    Actions hoverOverWebElement = builder.moveToElement(webElement);
    hoverOverWebElement.perform();
}
 
开发者ID:WileyLabs,项目名称:teasy,代码行数:8,代码来源:AbstractPageElement.java

示例3: moveMouseAway

import org.openqa.selenium.interactions.Actions; //导入方法依赖的package包/类
/** Moves mouse to position (0,0) in the 'game' element (so that it doesn't trigger any highlight popups or similar */
private void moveMouseAway() {
	try {
		Actions act = new Actions(driver);
		act.moveToElement(game, 0, 0);
		act.perform();
	} catch(Exception e) {
		// do nothing
	}
}
 
开发者ID:Betalord,项目名称:BHBot,代码行数:11,代码来源:MainThread.java

示例4: clickOnSeg

import org.openqa.selenium.interactions.Actions; //导入方法依赖的package包/类
/** Performs a mouse click on the center of the given segment */
private void clickOnSeg(MarvinSegment seg) {
	Actions act = new Actions(driver);
	act.moveToElement(game, getSegCenterX(seg), getSegCenterY(seg));
	act.click();
	act.moveToElement(game, 0, 0); // so that the mouse doesn't stay on the button, for example. Or else button will be highlighted and cue won't get detected!
	act.perform();
}
 
开发者ID:Betalord,项目名称:BHBot,代码行数:9,代码来源:MainThread.java

示例5: clickInGame

import org.openqa.selenium.interactions.Actions; //导入方法依赖的package包/类
private void clickInGame(int x, int y) {
	Actions act = new Actions(driver);
	act.moveToElement(game, x, y);
	act.click();
	act.moveToElement(game, 0, 0); // so that the mouse doesn't stay on the button, for example. Or else button will be highlighted and cue won't get detected!
	act.perform();
}
 
开发者ID:Betalord,项目名称:BHBot,代码行数:8,代码来源:MainThread.java


注:本文中的org.openqa.selenium.interactions.Actions.perform方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。