Skip to content

Commit

Permalink
Merge pull request #70 from rogoit/main
Browse files Browse the repository at this point in the history
Update cookie command
  • Loading branch information
rogoit authored Sep 29, 2023
2 parents bb8b4af + db9b2a9 commit 1f7669e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cypress-ncatestify-plugin",
"version": "2.0.33",
"version": "2.0.34",
"description": "NCA TESTIFY commands and tests",
"main": "src",
"types": "src",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/tt-cookie-all-accept.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const ttCookieAllAcceptClick = (cookieButtonString = 'alle cookies') => {
export const ttCookieAllAcceptClick = (cookieButtonString = 'alle akzeptieren') => {
cy.log('ttCookieAllAcceptClick - NCA TESTIFY');
return cy.contains(cookieButtonString, { matchCase: false }).click();
};
2 changes: 1 addition & 1 deletion src/commands/tt-cookie-all-accept.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const ttCookieAllAcceptClick = (
cookieButtonString: string = 'alle cookies',
cookieButtonString: string = 'alle akzeptieren',
) => {
cy.log('ttCookieAllAcceptClick - NCA TESTIFY')
return cy.contains(cookieButtonString, { matchCase: false }).click()
Expand Down

0 comments on commit 1f7669e

Please sign in to comment.