Class DOMSnapshot.CaptureSnapshotResponse
- java.lang.Object
-
- org.openqa.selenium.devtools.v112.domsnapshot.DOMSnapshot.CaptureSnapshotResponse
-
- Enclosing class:
- DOMSnapshot
public static class DOMSnapshot.CaptureSnapshotResponse extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description CaptureSnapshotResponse(java.util.List<DocumentSnapshot> documents, java.util.List<java.lang.String> strings)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<DocumentSnapshot>
getDocuments()
The nodes in the DOM tree.java.util.List<java.lang.String>
getStrings()
Shared string table that all string properties refer to with indexes.
-
-
-
Constructor Detail
-
CaptureSnapshotResponse
public CaptureSnapshotResponse(java.util.List<DocumentSnapshot> documents, java.util.List<java.lang.String> strings)
-
-
Method Detail
-
getDocuments
public java.util.List<DocumentSnapshot> getDocuments()
The nodes in the DOM tree. The DOMNode at index 0 corresponds to the root document.
-
getStrings
public java.util.List<java.lang.String> getStrings()
Shared string table that all string properties refer to with indexes.
-
-