- Error enums which can be accessed using
Root.Error.(soup.Error).Type
. Refer toexamples/errors
.
- Cookies can be added to the HTTP request, either via the
Cookies
map or theCookie()
function - Function
GetWithClient()
provides the ability to send the request with a custom HTTP client - Function
FindStrict()
finds the first instance of the mentioned tag with the exact matching values of the provided attribute (previouslyFind()
) - Function
FindAllStrict()
finds all the instances of the mentioned tag with the exact matching values of the attributes (previouslyFindAll()
)
- Function
Find()
now finds the first instance of the mentioned tag with any matching values of the provided attribute. - Function
FindAll()
now finds all the instances of the mentioned tag with any matching values of the provided attribute.