本文整理汇总了Java中org.openqa.selenium.interactions.HasTouchScreen类的典型用法代码示例。如果您正苦于以下问题:Java HasTouchScreen类的具体用法?Java HasTouchScreen怎么用?Java HasTouchScreen使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
HasTouchScreen类属于org.openqa.selenium.interactions包,在下文中一共展示了HasTouchScreen类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getTouch
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
@Override
public TouchScreen getTouch()
{
setLastAction();
if ( webDriver instanceof HasTouchScreen )
return ((HasTouchScreen) webDriver).getTouch();
else
return null;
}
示例2: _moveTo
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
public boolean _moveTo()
{
WebElement webElement = getElement();
if ( webElement != null && webElement.getSize().getHeight() > 0 && webElement.getSize().getWidth() > 0 )
{
if ( getWebDriver() instanceof HasInputDevices )
{
if ( isTimed() )
getActionProvider().startTimer( (DeviceWebDriver) getWebDriver(), this, getExecutionContext() );
if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof AppiumDriver )
{
new TouchAction( (AppiumDriver) ((DeviceWebDriver) getWebDriver()).getNativeDriver() ).moveTo( webElement ).perform();
}
else if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof RemoteWebDriver )
{
if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof HasTouchScreen )
new TouchActions( getWebDriver() ).moveToElement( webElement ).build().perform();
else
new Actions( getWebDriver() ).moveToElement( webElement ).build().perform();
}
return true;
}
}
return false;
}
示例3: _press
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
public boolean _press()
{
WebElement webElement = getElement();
if ( webElement != null && webElement.getSize().getHeight() > 0 && webElement.getSize().getWidth() > 0 )
{
if ( getWebDriver() instanceof HasInputDevices )
{
if ( isTimed() )
getActionProvider().startTimer( (DeviceWebDriver) getWebDriver(), this, getExecutionContext() );
if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof AppiumDriver )
{
new TouchAction( (AppiumDriver) ((DeviceWebDriver) getWebDriver()).getNativeDriver() ).press( webElement ).perform();
}
else if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof RemoteWebDriver )
{
if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof HasTouchScreen )
new TouchActions( getWebDriver() ).clickAndHold( webElement ).build().perform();
else
new Actions( getWebDriver() ).clickAndHold( webElement ).build().perform();
}
return true;
}
}
return false;
}
示例4: _mouseDoubleClick
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
public boolean _mouseDoubleClick()
{
WebElement webElement = getElement();
if ( webElement != null && webElement.getSize().getHeight() > 0 && webElement.getSize().getWidth() > 0 )
{
if ( getWebDriver() instanceof HasInputDevices )
{
if ( isTimed() )
getActionProvider().startTimer( (DeviceWebDriver) getWebDriver(), this, getExecutionContext() );
if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof AppiumDriver )
{
new TouchAction( (AppiumDriver) ((DeviceWebDriver) getWebDriver()).getNativeDriver() ).tap( webElement ).tap( webElement ).perform();
}
else if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof RemoteWebDriver )
{
if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof HasTouchScreen )
new TouchActions( getWebDriver() ).doubleClick().build().perform();
else
new Actions( getWebDriver() ).doubleClick( webElement ).build().perform();
}
return true;
}
}
return false;
}
示例5: _release
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
public boolean _release()
{
WebElement webElement = getElement();
if ( webElement != null && webElement.getSize().getHeight() > 0 && webElement.getSize().getWidth() > 0 )
{
if ( getWebDriver() instanceof HasInputDevices )
{
if ( isTimed() )
getActionProvider().startTimer( (DeviceWebDriver) getWebDriver(), this, getExecutionContext() );
if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof AppiumDriver )
{
new TouchAction( (AppiumDriver) ((DeviceWebDriver) getWebDriver()).getNativeDriver() ).release().perform();
}
else if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof RemoteWebDriver )
{
if ( ((DeviceWebDriver) getWebDriver()).getNativeDriver() instanceof HasTouchScreen )
new TouchActions( getWebDriver() ).release().build().perform();
else
new Actions( getWebDriver() ).release().build().perform();
}
return true;
}
}
return false;
}
示例6: clickAt
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
private void clickAt( WebElement webElement, WebDriver webDriver, int x, int y )
{
if ( webElement != null )
{
Dimension elementSize = webElement.getSize();
int useX = (int) ((double) elementSize.getWidth() * ((double) x / 100.0));
int useY = (int) ((double) elementSize.getHeight() * ((double) y / 100.0));
if ( ((DeviceWebDriver) webDriver).getNativeDriver() instanceof AppiumDriver )
{
new TouchAction( (AppiumDriver) ((DeviceWebDriver) webDriver).getNativeDriver() ).moveTo( webElement ).tap( webElement, useX, useY ).perform();
}
else if ( ((DeviceWebDriver) webDriver).getNativeDriver() instanceof RemoteWebDriver )
{
if ( ((DeviceWebDriver) webDriver).getNativeDriver() instanceof HasTouchScreen )
new TouchActions( webDriver ).moveToElement( webElement, useX, useY ).click().build().perform();
else
new Actions( webDriver ).moveToElement( webElement, useX, useY ).click().build().perform();
}
}
}
示例7: call
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
@Override
public Void call() throws Exception {
TouchScreen touchScreen = ((HasTouchScreen) getDriver()).getTouch();
WebElement element = getKnownElements().get(elementId);
Coordinates elementLocation = ((Locatable) element).getCoordinates();
touchScreen.singleTap(elementLocation);
return null;
}
示例8: call
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
@Override
public Void call() throws Exception {
TouchScreen touchScreen = ((HasTouchScreen) getDriver()).getTouch();
touchScreen.down(x, y);
return null;
}
示例9: call
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
@Override
public Void call() throws Exception {
TouchScreen touchScreen = ((HasTouchScreen) getDriver()).getTouch();
if (elementId != null) {
WebElement element = getKnownElements().get(elementId);
Coordinates elementLocation = ((Locatable) element).getCoordinates();
touchScreen.flick(elementLocation, xOffset, yOffset, speed);
} else {
touchScreen.flick(xSpeed, ySpeed);
}
return null;
}
示例10: call
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
@Override
public Void call() throws Exception {
TouchScreen touchScreen = ((HasTouchScreen) getDriver()).getTouch();
touchScreen.up(x, y);
return null;
}
示例11: call
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
@Override
public Void call() throws Exception {
TouchScreen touchScreen = ((HasTouchScreen) getDriver()).getTouch();
WebElement element = getKnownElements().get(elementId);
Coordinates elementLocation = ((Locatable) element).getCoordinates();
touchScreen.doubleTap(elementLocation);
return null;
}
示例12: call
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
@Override
public Void call() throws Exception {
TouchScreen touchScreen = ((HasTouchScreen) getDriver()).getTouch();
WebElement element = getKnownElements().get(elementId);
Coordinates elementLocation = ((Locatable) element).getCoordinates();
touchScreen.longPress(elementLocation);
return null;
}
示例13: call
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
@Override
public Void call() throws Exception {
TouchScreen touchScreen = ((HasTouchScreen) getDriver()).getTouch();
touchScreen.move(x, y);
return null;
}
示例14: call
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
@Override
public Void call() throws Exception {
TouchScreen touchScreen = ((HasTouchScreen) getDriver()).getTouch();
if (elementId != null) {
WebElement element = getKnownElements().get(elementId);
Coordinates elementLocation = ((Locatable) element).getCoordinates();
touchScreen.scroll(elementLocation, xOffset, yOffset);
} else {
touchScreen.scroll(xOffset, yOffset);
}
return null;
}
示例15: getDescription
import org.openqa.selenium.interactions.HasTouchScreen; //导入依赖的package包/类
private DesiredCapabilities getDescription(WebDriver instance, Capabilities capabilities) {
DesiredCapabilities caps = new DesiredCapabilities(capabilities.asMap());
caps.setJavascriptEnabled(instance instanceof JavascriptExecutor);
if (instance instanceof TakesScreenshot) {
caps.setCapability(CapabilityType.TAKES_SCREENSHOT, true);
}
if (instance instanceof LocationContext) {
caps.setCapability(CapabilityType.SUPPORTS_LOCATION_CONTEXT, true);
}
if (instance instanceof ApplicationCache) {
caps.setCapability(CapabilityType.SUPPORTS_APPLICATION_CACHE, true);
}
if (instance instanceof NetworkConnection) {
caps.setCapability(CapabilityType.SUPPORTS_NETWORK_CONNECTION, true);
}
if (instance instanceof WebStorage) {
caps.setCapability(CapabilityType.SUPPORTS_WEB_STORAGE, true);
}
if (instance instanceof FindsByCssSelector) {
caps.setCapability(CapabilityType.SUPPORTS_FINDING_BY_CSS, true);
}
if (instance instanceof Rotatable) {
caps.setCapability(CapabilityType.ROTATABLE, true);
}
if (instance instanceof HasTouchScreen) {
caps.setCapability(CapabilityType.HAS_TOUCHSCREEN, true);
}
return caps;
}