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

Method newOutput

java/src/org/openqa/selenium/json/Json.java:233–235  ·  view source on GitHub ↗

Create a new JsonOutput object to produce a serialized JSON string in the specified Appendable. @param to Appendable that consumes a serialized JSON string @return JsonOutput object to product a JSON string in [to] @throws UncheckedIOException if an I/O exception occ

(Appendable to)

Source from the content-addressed store, hash-verified

231 * @throws UncheckedIOException if an I/O exception occurs
232 */
233 public JsonOutput newOutput(Appendable to) throws UncheckedIOException {
234 return new JsonOutput(to);
235 }
236}

Calls

no outgoing calls