Skip to main content

Authentication


Authenticate your Cypress test runs in the following ways -

  1. Set up the environment variables. (or)
  2. Utilizing the CLI params. (or)
  3. Mention your username and access key in the lambdatest-config.json.

Utilizing CLI Params:


The following args can be used while running tests using the run command.

ArgShorthandAccepted values
--username--userYour TestMu AI username
--access_key--akYour TestMu AI access key

For example -

lambdatest-cypress run --username=undefined --ak=undefined

Using lambdatest-config.json:


The auth option will help you in specifying your username and access key. You can find your username and access key in the TestMu AI Automation Dashboard. Both, the auth credentials set in environment variables and the ones mentioned in the lambdatest-config.json file will get overridden.

cmd

The options supported in the auth are as follows:

ArgAccepted values
usernameYour TestMu AI username
access_keyYour TestMu AI access key

For example -

lambdatest-config.json
"lambdatest_auth": {
"username": "<your username>",
"access_key": "<your access key>"
},

Setup the Environment Variables:


While utilizing the CLI params, you can set up the following environment variables.

Env variableAccepted values
LT_USERNAMEYour TestMu AI username
LT_ACCESS_KEYYour TestMu AI access key

Or you can also set environment variables using following commands:

export LT_USERNAME="undefined" \
export LT_ACCESS_KEY="undefined"
Note

By doing so, the auth credentials you use in your lambdatest-config.json file will get overridden only if these options are not provided in lambdatest-config.json file.

Test across 3000+ combinations of browsers, real devices & OS.

Book Demo

Help and Support

Related Articles