Class Scope
java.lang.Object
org.openqa.selenium.devtools.v115.debugger.model.Scope
Scope description.
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionScope
(Scope.Type type, RemoteObject object, Optional<String> name, Optional<Location> startLocation, Optional<Location> endLocation) -
Method Summary
-
Constructor Details
-
Scope
public Scope(Scope.Type type, RemoteObject object, Optional<String> name, Optional<Location> startLocation, Optional<Location> endLocation)
-
-
Method Details
-
getType
Scope type. -
getObject
Object representing the scope. For `global` and `with` scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties. -
getName
-
getStartLocation
Location in the source code where scope starts -
getEndLocation
Location in the source code where scope ends
-