net.ruippeixotog.scalascraper.browser
Closes the InputStream after reading
Closes the InputStream after reading
the user agent with which requests should be made
the user agent with which requests should be made
A Browser implementation based on jsoup, a Java HTML parser library.
JsoupBrowserprovides powerful and efficient document querying, but it doesn't run JavaScript in the pages. As such, it is limited to working strictly with the HTML send in the page source.Currently,
JsoupBrowserdoes not keep separate cookie stores for different domains and paths. In each request all cookies set previously will be sent, regardless of the domain they were set on. If you do requests to different domains and do not want this behavior, use differentJsoupBrowserinstances.As the documents parsed by
JsoupBrowserinstances are not changed after loading,DocumentandElementinstances obtained from them are guaranteed to be immutable.