new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Playwright · API reference · all subjects

debugger/methods

5 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

Debugger.pausedDetails method

The pausedDetails method returns details about the currently paused call and returns null if the debugger is not paused. It returns an object with a location property (containing file, line, and column fields) and a title property (string). Available since v1.59.

Debugger.requestPause method

The async requestPause method configures the debugger to pause before the next action is executed. It throws if the debugger is already paused. Use Debugger.next or Debugger.runTo to step while paused. Note that Page.pause is equivalent to a debugger statement (pauses immediately at call site), while Debugger.requestPause is equivalent to pause on next statement. Available since v1.59.

Debugger.resume method

The async resume method resumes script execution. Throws if the debugger is not paused. Available since v1.59.

Debugger.next method

The async next method resumes script execution and pauses again before the next action. Throws if the debugger is not paused. Available since v1.59.

Debugger.runTo method

The async runTo method resumes script execution and pauses when an action originates from the given source location. It takes a location parameter (an object with file, line, and column properties) specifying the source location to pause at. Throws if the debugger is not paused. Available since v1.59.

Give your agent this brain