MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / nextString

Method nextString

java/src/org/openqa/selenium/json/JsonInput.java:279–282  ·  view source on GitHub ↗

Read the next element of the JSON input stream as a string. @return String object @throws JsonException if the next element isn't a string @throws UncheckedIOException if an I/O exception is encountered

()

Source from the content-addressed store, hash-verified

277 * @throws UncheckedIOException if an I/O exception is encountered
278 */
279 public String nextString() {
280 expect(JsonType.STRING);
281 return readString();
282 }
283
284 /**
285 * Read the next element of the JSON input stream as an instant.

Calls 2

expectMethod · 0.95
readStringMethod · 0.95