com.testvagrant.ekam.atoms.mobile.ios.IOSDeviceDriver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ekam-atoms Show documentation
Show all versions of ekam-atoms Show documentation
Ekam atoms for all common driver actions
package com.testvagrant.ekam.atoms.mobile.ios;
import com.google.inject.Inject;
import com.testvagrant.ekam.atoms.mobile.DeviceDriver;
import io.appium.java_client.ios.IOSDriver;
import org.openqa.selenium.WebDriver;
public class IOSDeviceDriver extends DeviceDriver {
@Inject
public IOSDeviceDriver(WebDriver driver) {
super(driver);
}
public void hideKeyBoard() {
getDriver().hideKeyboard();
}
public IOSDriver getDriver(){
return getDriver(IOSDriver.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy