Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
it.skrape.selects.html5.FormSelectors.kt Maven / Gradle / Ivy
Go to download
A Kotlin-based testing/scraping/parsing library providing the ability to analyze and extract data from HTML (server & client-side rendered). It places particular emphasis on ease of use and a high level of readability by providing an intuitive DSL. First and foremost it aims to be a testing lib, but it can also be used to scrape websites in a convenient fashion.
package it.skrape.selects.html5
import it.skrape.selects.CssSelectable
import it.skrape.selects.CssSelector
/**
* Will define a -tags css query selector.
* By default it will just be the specific tag-name.
* It is possible to define a more concrete selector by using the provided fields of the CssSelector object or
* by passing a raw css query selector as parameter.
* If a selector is passed as parameter as well as be defined via CssSelector fields, they will be merged.
* @see CssSelector
* @param cssSelector
* @return T
*/
public fun CssSelectable.button(cssSelector: String = "", init: CssSelector.() -> T): T =
selection("button$cssSelector", init)
/**
* Will define a -tags css query selector.
* By default it will just be the specific tag-name.
* It is possible to define a more concrete selector by using the provided fields of the CssSelector object or
* by passing a raw css query selector as parameter.
* If a selector is passed as parameter as well as be defined via CssSelector fields, they will be merged.
* @see CssSelector
* @param cssSelector
* @return T
*/
public fun CssSelectable.datalist(cssSelector: String = "", init: CssSelector.() -> T): T =
selection("datalist$cssSelector", init)
/**
* Will define a -tags css query selector.
* By default it will just be the specific tag-name.
* It is possible to define a more concrete selector by using the provided fields of the CssSelector object or
* by passing a raw css query selector as parameter.
* If a selector is passed as parameter as well as be defined via CssSelector fields, they will be merged.
* @see CssSelector
* @param cssSelector
* @return T
*/
public fun CssSelectable.fieldset(cssSelector: String = "", init: CssSelector.() -> T): T =
selection("fieldset$cssSelector", init)
/**
* Will define a