Make assertions by calling any LLM's API inside tests.
Install using npm:
npm install --save-dev @noredink/cypress-ai-assertRequire from commands.js
require('@noredink/cypress-ai-assert')Or ES module syntax:
import '@noredink/cypress-ai-assert'For TypeScript, add to tsconfig.json
{
"compilerOptions": {
"types": ["cypress", "@noredink/cypress-ai-assert"]
}
}Other than the mock provider used in the package's tests, you need an API key for an LLM to use the package. To use one of the two built-in LLM providers, make sure to set Cypress.env('ANTHROPIC_API_KEY') or Cypress.env('OPENAI_API_KEY') to a valid Anthropic or OpenAI API key.
Basic (defaults to Anthropic)
cy.get('#definition-container').aiAssert('Check if the text is in Spanish')
Get the LLM's full thinking as debug output in the test runner
cy.get('#sponsored-content').aiAssert('Should contain sponsored ads with links to external sites', { debug: true })
Specify a different provider
cy.get('body').aiAssert('The page should show a comparison of the free, Premium, and Enterprise versions', { provider: 'openai' })
Specify a custom provider (assumes you have registered a 'gemini' provider not included in this package)
cy.get('body').aiAssert('The page should show a comparison of the free, Premium, and Enterprise versions', { provider: 'gemini' })
Register your own provider
import { registerProvider } from '@noredink/cypress-ai-assert'
// Example: Google Gemini
registerProvider({
name: 'gemini',
request: async (instruction, content, options) => {
const response = await fetch('https://gemini.googleapis.com/v1/text', {
method: 'POST',
headers: {
'Authorization': `Bearer ${options.apiKey}`
},
body: JSON.stringify({ instruction, content })
})
const json = await response.json()
return json.output
}
})
And call it in tests
cy.get('#some-element').aiAssert('Should contain text', {
provider: 'gemini',
apiKey: 'my-api-key' // custom per-provider option
})
The mock provider is built-in for testing. It may be useful if you want to temporarily suspend making live LLM calls while working on something, or for testing changes to this package, etc.
cy.get('#some-element').aiAssert('Some assertion', {
provider: 'mock',
force: 'YES' // or 'NO' to simulate a failure
})
It can also accept the debug option and return some fake thinking.
Community contributions are welcome. If you're not sure if your idea would be appropriate for this package, feel free to open an issue describing your change before making a PR.