MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / nextString

Method nextString

java/src/org/openqa/selenium/json/JsonInput.java:318–321  ·  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

316 * @throws UncheckedIOException if an I/O exception is encountered
317 */
318 public String nextString() {
319 expect(JsonType.STRING);
320 return readString();
321 }
322
323 /**
324 * Read the next element of the JSON input stream as an instant.

Calls 2

expectMethod · 0.95
readStringMethod · 0.95