You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/api/params.md
-37Lines changed: 0 additions & 37 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -370,40 +370,6 @@ It makes the execution of the tests non-deterministic.
370
370
Emulates consistent window screen size available inside web page via `window.screen`. Is only used when the
371
371
[`option: viewport`] is set.
372
372
373
-
## context-option-agent
374
-
-`agent` <[Object]>
375
-
-`api` ?<[string]> API to use, `openapi`, `google` or `anthropic`. Required in non-cache mode.
376
-
-`apiEndpoint` ?<[string]> Endpoint to use if different from default.
377
-
-`apiKey` ?<[string]> API key for the LLM provider.
378
-
-`model` ?<[string]> Model identifier within the provider. Required in non-cache mode.
379
-
-`cacheFile` ?<[string]> Cache file to use/generate code for performed actions into. Cache is not used if not specified (default).
380
-
-`cacheOutFile` ?<[string]> When specified, generated entries are written into the `cacheOutFile` instead of updating the `cacheFile`.
381
-
-`secrets` ?<[Object]<[string], [string]>> Secrets to hide from the LLM.
382
-
-`maxTurns` ?<[int]> Maximum number of agentic turns to take per call. Defaults to 10.
383
-
-`maxTokens` ?<[int]> Maximum number of tokens to consume per call. The agentic loop will stop after input + output tokens exceed this value. Defaults on unlimited.
384
-
385
-
Agent settings for [`property: Page.agent`].
386
-
387
-
## page-agent-api
388
-
* since: v1.58
389
-
-`api` <[string]>
390
-
391
-
API to use, `openapi`, `google` or `anthropic`. Required in non-cache mode.
392
-
393
-
## page-agent-api-endpoint
394
-
* since: v1.58
395
-
-`apiEndpoint` <[string]>
396
-
397
-
Endpoint to use if different from default.
398
-
399
-
## page-agent-api-key
400
-
* since: v1.58
401
-
-`apiKey` <[string]>
402
-
403
-
API key for the LLM provider.
404
-
405
-
API version if relevant.
406
-
407
373
## page-agent-cache-key
408
374
* since: v1.58
409
375
-`cacheKey` <[string]>
@@ -425,9 +391,6 @@ Defaults to context-wide value specified in `agent` property.
425
391
Maximum number of agentic turns during this call, defaults to context-wide value specified in `agent` property.
Copy file name to clipboardExpand all lines: docs/src/test-api/class-fixtures.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,10 @@ Given the test above, Playwright Test will set up the `page` fixture before runn
18
18
19
19
Playwright Test comes with builtin fixtures listed below, and you can add your own fixtures as well. Playwright Test also [provides options][TestOptions] to configure [`property: Fixtures.browser`], [`property: Fixtures.context`] and [`property: Fixtures.page`].
0 commit comments