20 lines
933 B
Markdown
20 lines
933 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Debugger](./puppeteer.protocol.debugger.md) > [SetBreakpointRequest](./puppeteer.protocol.debugger.setbreakpointrequest.md)
|
||
|
|
||
|
## Protocol.Debugger.SetBreakpointRequest interface
|
||
|
|
||
|
<b>Signature:</b>
|
||
|
|
||
|
```typescript
|
||
|
export interface SetBreakpointRequest
|
||
|
```
|
||
|
|
||
|
## Properties
|
||
|
|
||
|
| Property | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [condition](./puppeteer.protocol.debugger.setbreakpointrequest.condition.md) | string | Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true. |
|
||
|
| [location](./puppeteer.protocol.debugger.setbreakpointrequest.location.md) | [Location](./puppeteer.protocol.debugger.location.md) | Location to set breakpoint in. |
|
||
|
|