org.xpathqs.driver.executor.IExecutor.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.executor
import org.xpathqs.core.selector.base.BaseSelector
import org.xpathqs.core.selector.base.ISelector
import org.xpathqs.driver.actions.IAction
interface IExecutor {
fun execute(action: IAction)
fun isPresent(selector: ISelector): Boolean
fun getAttr(selector: BaseSelector, attr: String): String
fun getAttrs(selector: BaseSelector, attr: String): Collection
fun beforeAction(action: IAction) {}
fun afterAction(action: IAction) {}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy