origin

Visit multiple domains of different origin in a single test.

In normal use, a single Cypress test may only run commands in a single origin, a limitation determined by standard web security features of the browser. The cy.origin() command allows your tests to bypass this limitation.

Syntax

cy.origin(url, callbackFn)
cy.origin(url, options, callbackFn)

Usage

Correct Usage

const hits = getHits() // Defined elsewhere
// Run commands in a secondary origin, passing in any serializable values we need
cy.origin('https://www.acme.com', { args: { hits } }, ({ hits }) => {
  // Inside callback baseUrl is https://www.acme.com
  cy.visit('/history/founder')
  // Commands are executed in secondary origin
  cy.get('h1').contains('About our Founder, Marvin Acme')
  // Passed in values are accessed via callback args
  cy.get('#hitcounter').contains(hits)
})
// Even though we are outside the secondary origin block, we are still on acme.com
// so return to baseUrl
cy.visit('/')
// Continue running commands on primary origin
cy.get('h1').contains('My cool site under test')

Incorrect Usage

const hits = 9000
// This should be inside the callback, Cypress needs to be injected before visit
cy.visit('https://www.acme.com/history/founder')
cy.origin('https://www.acme.com', () => {
  // Won't work because Cypress is not present on secondary origin
  cy.get('h1').contains('About our Founder, Marvin Acme')
  // Won't work because hits is not passed in via args
  cy.get('#hitcounter').contains(hits)
})
// Won't work because still on acme.com
cy.get('h1').contains('My cool site under test')

Arguments

url (String)

A URL specifying the secondary origin in which the callback is to be executed. This should at the very least contain a hostname, and may also include the protocol, port number & path. This argument will be used in two ways.

Firstly, it uniquely identifies a secondary origin in which the commands in the callback will be executed. The test-runner will inject the Cypress runtime into this origin, and then send it code to evaluate in that origin, without violating the browser's same-origin policy.

Secondly, it temporarily overrides the baseUrl configured in your global configuration whilst inside the callback. So cy.visit() will navigate relative to this URL, not the configured baseUrl.

options (Object)

Pass in an options object to control the behavior of cy.origin().

optiondescription
argsPlain JavaScript object which will be serialized and sent from the primary origin to the secondary origin, where it will be deserialized and passed into the callback function as its first and only argument.

callbackFn (Function)

The function containing the commands to be executed in the secondary origin.

This function will be stringified, sent to the Cypress instance in the secondary origin and evaluated. If the args option is specified, the deserialized args object will be passed into the function as its first and only argument.

There are a number of limitations placed on commands run inside the callback, please see Callback restrictions section below for a full list.

The function's return value is ignored. ???

Yields

  • cy.origin() yields null.
  • cy.origin() cannot be chained further.

Examples

Using dynamic data in a secondary origin

Callbacks are executed inside an entirely separate instance of Cypress, so arguments must be transmitted to the other instance by means of serialization & deserialization. The interface for this mechanism is the args option.

const sentArgs = { password: 'P@55w0rd!!!1!?!111one' }
cy.origin(
  'supersecurelogons.com',
  // Send the args here...
  { args: sentArgs },
  // ...and receive them at the other end here!
  (receivedArgs) => {
    const { password } = receivedArgs
    cy.visit('/login')
    cy.get('input#password').type(password)
    cy.contains('button', 'Login').click()
  }
)

Note: You can just replace sentArgs and receivedArgs with args if you want, the naming in this example is purely for clarity.

When navigating to a secondary origin using cy.visit(), it is essential to trigger the navigation after entering the origin callback, otherwise a cross-domain error will be thrown.

// Do things in primary domain...

cy.origin('acme.com', () => {
  // Visit https://www.acme.com/history/founder
  cy.visit('/history/founder')
  cy.get('h1').contains('About our Founder, Marvin Acme')
})
// TODO Example with onBeforeLoad...

TODO baseUrl

TODO default protocol

When navigating to a secondary origin by clicking a link or button in the primary origin, it is essential to trigger the navigation before entering the origin callback, otherwise a cross-domain error will be thrown.

// Click button in primary origin that navigates to https://acme.com
cy.contains('button', 'Go to Acme.com').click()

cy.origin('acme.com', () => {
  // No cy.visit is needed as the button brought us here
  cy.get('h1').contains('ACME CORP')
})

Callbacks may not themselves contain cy.origin() calls, so when visiting multiple origins, do so at the top level of the test.

cy.origin('foo.com', () => {
  cy.visit('/')
  cy.url().should('contain', 'foo.com')
})

cy.origin('bar.com', () => {
  cy.visit('/')
  cy.url().should('contain', 'bar.com')
})

cy.origin('baz.com', () => {
  cy.visit('/')
  cy.url().should('contain', 'baz.com')
})

TODO Stabilization?

Waiting to return to primary origin

Sometimes, a secondary origin returns to the primary origin as a result of user action (for example, by clicking a "Login" button on a syndicated login provider). In this situation, your test should wait for the navigation to complete before making further assertions, otherwise a cross-domain error will be thrown.

cy.visit('/home')
// This will take us to the secondary origin
cy.contains('button', 'Go to someothersite').click()

cy.origin('someothersite.com', () => {
  // Click button that takes us back to primary origin
  cy.contains('button', 'Go back').click()
)
// Wait until confirmation we are back at the primary origin before continuing
cy.url().should('contain', '/home')
// Do more things in primary domain...

SSO login custom command

A very common requirement is logging in to a site before running a test. If login itself is not the specific focus of the test, it's good to encapsulate this functionality in a login custom command so you don't have to duplicate this login code in every test. Here's an idealized example of how to do this with cy.origin().

Cypress.Commands.add('login', (username, password) => {
  // Remember to pass in dependencies via `args`
  const args = { username, password }
  cy.origin('auth-provider.com', { args }, ({ username, password }) => {
    // Go to https://auth-provider.com/login
    cy.visit('/login')
    cy.contains('Username').find('input').type(username)
    cy.contains('Password').find('input').type(password)
    cy.get('button').contains('Login').click()
  })
  // Wait until confirmation we are back at the primary origin before continuing
  cy.url().should('contain', '/home')
})

However, having to go through an entire login flow before every test is not very performant. Up until now you could get around this by putting login code in the first test of your file, then performing subsequent tests reusing the same session. However, once the experimentalSessionAndOrigin flag is activated this is no longer possible, as all session state is now cleared between tests. So to avoid this overhead we have added the cy.session() command, which allows you to easily cache session information and reuse it across not just tests, but test files too. So now let's enhance our custom login command with cy.session() for a complete syndicated login flow with session caching and validation. No mocking, no workarounds, no third-party plugins!

Cypress.Commands.add('login', (username, password) => {
  const args = { username, password }
  cy.session(
    // The username & password combination can be used as the cache key too
    args,
    () => {
      cy.origin('auth-provider.com', { args }, ({ username, password }) => {
        cy.visit('/login')
        cy.contains('Username').find('input').type(username)
        cy.contains('Password').find('input').type(password)
        cy.get('button').contains('Login').click()
      })
      cy.url().should('contain', '/home')
    },
    {
      validate() {
        cy.request('/api/user').its('status').should('eq', 200)
      },
    }
  )
})

Notes

Migrating existing tests

Enabling the experimentalSessionAndOrigin flag makes the test-runner work slightly differently, and some test suites that rely on the existing behaviour may have to be updated. The most important of these changes is test isolation. This means that after every test, the current page is reset to about:blank and all active session data (cookies, localStorage and sessionStorage) across all domains are cleared. This change is opt-in for now, but will be standardized in a future major release of Cypress, so eventually all tests will need to be isolated.

Before this change, it was possible to write tests such that you could, for example, login to a CMS in the first test, change some content in the second test, verify the new version is displayed on a different URL in the third, and logout in the fourth. Here's a simplified example of such a test strategy.

Before
Multiple small tests against different origins
it('logs in', () => {
  cy.visit('https"//supersecurelogons.com')
  cy.get('input#password').type('Password123!')
  cy.get('button#submit').click()
})

it('updates the content', () => {
  cy.get('#current-user').contains('logged in')
  cy.get('button#edit-1').click()
  cy.get('input#title').type('Updated title')
  cy.get('button#submit').click()
  cy.get('.toast').type('Changes saved!')
})

it('validates the change', () => {
  cy.visit('/items/1')
  cy.get('h1').contains('Updated title')
})

After switching on experimentalSessionAndOrigin, this flow would need to be contained within a single test. While this practice has always been discouraged we know some users have historically written tests this way, often to get around the same-origin restrictions. But with cy.origin() you no longer need these kind of brittle hacks, as your multi-origin logic can all reside in a single test, like the following.

After
One big test using cy.origin()
it('securely edits content', () => {
  cy.origin('supersecurelogons.com', () => {
    cy.visit('https"//supersecurelogons.com')
    cy.get('input#password').type('Password123!')
    cy.get('button#submit').click()
  })

  cy.origin('mycms.com', () => {
    cy.url().should('contain', 'cms')
    cy.get('#current-user').contains('logged in')
    cy.get('button#edit-1').click()
    cy.get('input#title').type('Updated title')
    cy.get('button#submit').click()
    cy.get('.toast').type('Changes saved!')
  })

  cy.visit('/items/1')
  cy.get('h1').contains('Updated title')
})

Always remember, Cypress tests are not unit tests.

Serialization

When entering a cy.origin() block, the test-runner injects the Cypress runtime, with all your configurations settings, into the requested origin, and sets up bidirectional communication with that instance. This coordination model requires that any data sent from one instance to another be serialized for transmission. It is very important to understand that variables inside the callback are not shared with the scope outside the callback. For example this will not work:

const foo = 1
cy.origin('somesite.com', () => {
  cy.visit('/')
  // This line will throw a ReferenceError because `foo` is not defined in the
  // scope of the callback
  cy.get('input').type(foo)
})

Instead, the variable must be explicitly passed into the callback using the args option:

const foo = 1
cy.origin('somesite.com', { args: { foo } }, ({ foo }) => {
  cy.visit('/')
  // Now it will pass
  cy.get('input').type(foo)
})

Underneath the hood, Cypress uses JSON.stringify() and JSON.parse() (or equivalent library functions, implementation details may change) to serialize and deserialize the args object. This introduces a number of restrictions on the data which may be transmitted:

  • Primitive values only: object, array, string, number, boolean, null
  • Date objects will be converted to strings
  • Inherited properties are not serialized
  • Circular references are not allowed and will throw an error

Callback restrictions

Because of the way in which the callback is transmitted and executed, there are certain limitations on what code may be run inside it. In particular, the following Cypress commands will throw errors if used in the callback:

TODO require

TODO maybe repeat the part about evaluation

Command log

TODO

See also