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
* add generic to cy.origin type
* fix log type, update/add comments
* fix comment indentation
* specific generic
* move RemoteState to internal types
* add on links to experimental flag descriptions
* chore: reduce nesting by flipping condition
* fix test title
* simplify failing log
* rename variable
* delete error property
* fix types
* fix type
* remove unnecessary todo
* update wait test
* jquery -> this
* update comment
* remove vestigial autoRun
* use finally
* re-throw non-security errors
* move back getting index
* add new state types
* remove unnecessary export
* startsWith -> includes
* it -> them
* update system test
* remove use of promise constructor
* Revert "remove use of promise constructor"
This reverts commit 35ccc28.
* log errors from Page.getFrameTree
* test if anything breaks when removing optional chaining operator
* remove vestigial file
* handle queue ending in cross-origin driver
* fix coordinates spec
* improve chrome/firefox check in extension
* improve secure cookie regex
* use production mode for cross-origin driver bundle
* adding remoteStates.getPrimary
* catch and ignore queue errors
* remove optional chaining in postMessage handler
* removed unnecessary async
* update frame tree on cri client reconnect
* fix formatting
* renaming remoteStates variable
* prevent requests from being paused if experimentalSessionAndOrigin flag is off
Co-authored-by: Matt Schile <[email protected]>
Copy file name to clipboardExpand all lines: cli/schema/cypress.schema.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -256,7 +256,7 @@
256
256
"experimentalSessionAndOrigin": {
257
257
"type": "boolean",
258
258
"default": false,
259
-
"description": "Enables cross-origin and improved session support, including the `cy.origin` and `cy.session` commands."
259
+
"description": "Enables cross-origin and improved session support, including the `cy.origin` and `cy.session` commands. See https://on.cypress.io/origin and https://on.cypress.io/session."
* Get the parent DOM element of a set of DOM elements.
@@ -2846,7 +2837,7 @@ declare namespace Cypress {
2846
2837
*/
2847
2838
experimentalInteractiveRunEvents: boolean
2848
2839
/**
2849
-
* Enables cross-origin and improved session support, including the `cy.origin` and `cy.session` commands.
2840
+
* Enables cross-origin and improved session support, including the `cy.origin` and `cy.session` commands. See https://on.cypress.io/origin and https://on.cypress.io/session.
2850
2841
* @default false
2851
2842
*/
2852
2843
experimentalSessionAndOrigin: boolean
@@ -2981,7 +2972,6 @@ declare namespace Cypress {
2981
2972
projectName: string
2982
2973
projectRoot: string
2983
2974
proxyUrl: string
2984
-
remote: RemoteState
2985
2975
report: boolean
2986
2976
reporterRoute: string
2987
2977
reporterUrl: string
@@ -5766,7 +5756,8 @@ declare namespace Cypress {
5766
5756
}
5767
5757
5768
5758
interfaceLogConfigextendsTimeoutable{
5769
-
id: number
5759
+
/** Unique id for the log, in the form of '<origin>-<number>' */
5760
+
id: string
5770
5761
/** The JQuery element for the command. This will highlight the command in the main window when debugging */
5771
5762
$el: JQuery
5772
5763
/** The scope of the log entry. If child, will appear nested below parents, prefixed with '-' */
@@ -5779,7 +5770,7 @@ declare namespace Cypress {
5779
5770
message: any
5780
5771
/** Set to false if you want to control the finishing of the command in the log yourself */
5781
5772
autoEnd: boolean
5782
-
/** Set to false if you want to control the finishing of the command in the log yourself */
5773
+
/** Set to true to immediately finish the log */
5783
5774
end: boolean
5784
5775
/** Return an object that will be printed in the dev tools console */
0 commit comments