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

Method nextBoolean

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

Read the next element of the JSON input stream as a boolean value. @return true or false @throws JsonException if the next element isn't the expected boolean @throws UncheckedIOException if an I/O exception is encountered

()

Source from the content-addressed store, hash-verified

181 * @throws UncheckedIOException if an I/O exception is encountered
182 */
183 public boolean nextBoolean() {
184 expect(JsonType.BOOLEAN);
185 return read(input.peek() == 't' ? "true" : "false", Boolean::valueOf);
186 }
187
188 /**
189 * Read the next element of the JSON input stream as an object property name.

Callers 4

skipValueMethod · 0.95
applyMethod · 0.80
applyMethod · 0.80

Calls 3

expectMethod · 0.95
readMethod · 0.95
peekMethod · 0.45

Tested by 1