org.xpathqs.driver.IDriver.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpathqs-driver Show documentation
Show all versions of xpathqs-driver Show documentation
Framework for the interaction with drivers for the xpathqs-core
package org.xpathqs.driver
import org.xpathqs.core.selector.base.ISelector
interface IDriver {
fun click(x: Int, y: Int)
fun click(selector: ISelector)
fun clear(selector: ISelector)
fun input(selector: ISelector, value: String)
val pageSource: String
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy