Example usage for org.jsoup.select Elements val

List of usage examples for org.jsoup.select Elements val

Introduction

In this page you can find the example usage for org.jsoup.select Elements val.

Prototype

public String val() 

Source Link

Document

Get the form element's value of the first matched element.

Usage

From source file:cd.go.contrib.elasticagents.dockerswarm.elasticagent.executors.AgentStatusReportExecutorTest.java

private void assertServiceLog(Document document, String logs) {
    final Elements logDetails = document.select(".service-logs").select("textarea");
    assertThat(logDetails.val(), is(logs));
}