Uses of Class
org.openqa.selenium.devtools.debugger.model.Location
-
Packages that use Location Package Description org.openqa.selenium.devtools.debugger org.openqa.selenium.devtools.debugger.model org.openqa.selenium.devtools.profiler.model -
-
Uses of Location in org.openqa.selenium.devtools.debugger
Methods in org.openqa.selenium.devtools.debugger that return Location Modifier and Type Method Description Location
Debugger.SetBreakpointResponse. getActualLocation()
Location this breakpoint resolved into.Methods in org.openqa.selenium.devtools.debugger that return types with arguments of type Location Modifier and Type Method Description java.util.List<Location>
Debugger.SetBreakpointByUrlResponse. getLocations()
List of the locations this breakpoint resolved into upon addition.Methods in org.openqa.selenium.devtools.debugger with parameters of type Location Modifier and Type Method Description static Command<java.lang.Void>
Debugger. continueToLocation(Location location, java.util.Optional<Debugger.ContinueToLocationTargetCallFrames> targetCallFrames)
Continues execution until specific location is reached.static Command<java.util.List<BreakLocation>>
Debugger. getPossibleBreakpoints(Location start, java.util.Optional<Location> end, java.util.Optional<java.lang.Boolean> restrictToFunction)
Returns possible locations for breakpoint.static Command<Debugger.SetBreakpointResponse>
Debugger. setBreakpoint(Location location, java.util.Optional<java.lang.String> condition)
Sets JavaScript breakpoint at a given location.Method parameters in org.openqa.selenium.devtools.debugger with type arguments of type Location Modifier and Type Method Description static Command<java.util.List<BreakLocation>>
Debugger. getPossibleBreakpoints(Location start, java.util.Optional<Location> end, java.util.Optional<java.lang.Boolean> restrictToFunction)
Returns possible locations for breakpoint.Constructors in org.openqa.selenium.devtools.debugger with parameters of type Location Constructor Description SetBreakpointResponse(BreakpointId breakpointId, Location actualLocation)
Constructor parameters in org.openqa.selenium.devtools.debugger with type arguments of type Location Constructor Description SetBreakpointByUrlResponse(BreakpointId breakpointId, java.util.List<Location> locations)
-
Uses of Location in org.openqa.selenium.devtools.debugger.model
Methods in org.openqa.selenium.devtools.debugger.model that return Location Modifier and Type Method Description Location
Scope. getEndLocation()
Location in the source code where scope endsLocation
CallFrame. getFunctionLocation()
Location in the source code.Location
BreakpointResolved. getLocation()
Actual breakpoint location.Location
CallFrame. getLocation()
Location in the source code.Location
Scope. getStartLocation()
Location in the source code where scope startsConstructors in org.openqa.selenium.devtools.debugger.model with parameters of type Location Constructor Description BreakpointResolved(BreakpointId breakpointId, Location location)
CallFrame(CallFrameId callFrameId, java.lang.String functionName, Location functionLocation, Location location, java.lang.String url, java.util.List<Scope> scopeChain, RemoteObject _this, RemoteObject returnValue)
Scope(Scope.Type type, RemoteObject object, java.lang.String name, Location startLocation, Location endLocation)
-
Uses of Location in org.openqa.selenium.devtools.profiler.model
Methods in org.openqa.selenium.devtools.profiler.model that return Location Modifier and Type Method Description Location
ConsoleProfileFinished. getLocation()
Location of console.profileEnd().Location
ConsoleProfileStarted. getLocation()
Location of console.profile().Constructors in org.openqa.selenium.devtools.profiler.model with parameters of type Location Constructor Description ConsoleProfileFinished(java.lang.String id, Location location, Profile profile, java.lang.String title)
ConsoleProfileStarted(java.lang.String id, Location location, java.lang.String title)
-