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: packages/playwright/src/mcp/config.d.ts
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,18 @@ export type Config = {
124
124
blockedOrigins?: string[];
125
125
};
126
126
127
+
timeouts?: {
128
+
/*
129
+
* Configures default action timeout: https://playwright.dev/docs/api/class-page#page-set-default-timeout. Defaults to 5000ms.
130
+
*/
131
+
action?: number;
132
+
133
+
/*
134
+
* Configures default navigation timeout: https://playwright.dev/docs/api/class-page#page-set-default-navigation-timeout. Defaults to 60000ms.
135
+
*/
136
+
navigation?: number;
137
+
};
138
+
127
139
/**
128
140
* Whether to send image responses to the client. Can be "allow", "omit", or "auto". Defaults to "auto", which sends images if the client can display them.
0 commit comments