org.xpathqs.driver.cache.ICache.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.cache
import org.xpathqs.core.selector.base.BaseSelector
import org.xpathqs.core.selector.base.ISelector
interface ICache {
fun setXml(xml: String, clear: Boolean = true)
fun isVisible(selector: ISelector): Boolean
fun isVisible(selectorXpath: String): Boolean
fun getElementsCount(selectorXpath: String): Int
fun getAttribute(selectorXpath: String, attr: String, default: String = ""): String?
fun getAttributes(selectorXpath: String, attr: String): List
fun clear(clearXml: Boolean = true)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy