Class Location
- java.lang.Object
-
- org.openqa.selenium.devtools.debugger.model.Location
-
public class Location extends java.lang.Object
Location in the source code.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Integer
getColumnNumber()
Column number in the script (0-based).java.lang.Integer
getLineNumber()
Line number in the script (0-based).ScriptId
getScriptId()
Script identifier as reported in the `Debugger.scriptParsed`.
-
-
-
Constructor Detail
-
Location
public Location(ScriptId scriptId, java.lang.Integer lineNumber, java.lang.Integer columnNumber)
-
-
Method Detail
-
getScriptId
public ScriptId getScriptId()
Script identifier as reported in the `Debugger.scriptParsed`.
-
getLineNumber
public java.lang.Integer getLineNumber()
Line number in the script (0-based).
-
getColumnNumber
public java.lang.Integer getColumnNumber()
Column number in the script (0-based).
-
-