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

com.testvagrant.ekam.atoms.mobile.ios.IOSDeviceDriver Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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