Package | Description |
---|---|
com.jaunt |
Jaunt [website] is a web-scraping & automation library that provides a lightweight HTTP useragent (headless browser), including JSON parser.
|
com.jaunt.component |
Modifier and Type | Class and Description |
---|---|
class |
MultipleFound
Represents an error caused by an finding multiple search results where only one was expected.
|
class |
NotFound
Represents an error caused by an inability to locate the target of a search.
|
Modifier and Type | Method and Description |
---|---|
Document |
Document.submit()
Submits the active form by pressing the submit button, throws a MultipleFound exception if more than one submit button exists in the form.
|
Document |
Document.submit(String buttonLabelRegex)
Submits the active form using the submit button who's text matches the specified (case insensitive) regular expression, using Matcher.matches.
|
Modifier and Type | Method and Description |
---|---|
Document |
Form.submit(String valueRx)
Submits the the form by pressing the first submit button who's value (ie, text label) matches the specified (case-insensitive) regular expression (using Matcher.matches) and throws an Exception if the specified submitButton does not exist.
|