Bugzilla – Attachment 164475 Details for
Bug 35392
HTML in translatable string
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35392: Use the same selector as everywhere else for .message
Bug-35392-Use-the-same-selector-as-everywhere-else.patch (text/plain), 2.23 KB, created by
Jonathan Druart
on 2024-04-05 13:17:18 UTC
(
hide
)
Description:
Bug 35392: Use the same selector as everywhere else for .message
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2024-04-05 13:17:18 UTC
Size:
2.23 KB
patch
obsolete
>From 5f85a53a83718dd7836343ae789a7a6b873cd03f Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 5 Apr 2024 14:56:57 +0200 >Subject: [PATCH] Bug 35392: Use the same selector as everywhere else for > .message > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > t/cypress/integration/ERM/DataProviders_spec.ts | 15 ++++++--------- > 1 file changed, 6 insertions(+), 9 deletions(-) > >diff --git a/t/cypress/integration/ERM/DataProviders_spec.ts b/t/cypress/integration/ERM/DataProviders_spec.ts >index 06e3fa6597e..1f80f6ca785 100644 >--- a/t/cypress/integration/ERM/DataProviders_spec.ts >+++ b/t/cypress/integration/ERM/DataProviders_spec.ts >@@ -636,9 +636,8 @@ describe("Data provider tab options", () => { > > cy.get("#files > form > fieldset > input[type=submit]").click(); > >- cy.get( >- "#erm > div > div.main.container-fluid > div > div.col-sm-10.col-sm-push-2 > main > div.dialog.message > li" >- ).contains( >+ cy.get("main div[class='dialog message']").should( >+ "have.text", > "Job for uploaded file has been queued. Check job progress." > ); > }); >@@ -742,9 +741,8 @@ describe("Data providers action buttons", () => { > cy.get(".dayContainer").contains(new RegExp("^1$")).click(); > }); > cy.get("#accept_modal").click(); >- cy.get( >- "#erm > div > div.main.container-fluid > div > div.col-sm-10.col-sm-push-2 > main > div.dialog.message > li" >- ).contains( >+ cy.get("main div[class='dialog message']").should( >+ "have.text", > "Job for report type TR_J1 has been queued. Check job progress." > ); > }); >@@ -780,9 +778,8 @@ describe("Data providers action buttons", () => { > .contains("Test") > .click(); > cy.wait("@test-connection"); >- cy.get( >- "#erm > div > div.main.container-fluid > div > div.col-sm-10.col-sm-push-2 > main > div.dialog.message" >- ).contains( >+ cy.get("main div[class='dialog message']").should( >+ "have.text", > "Harvester connection was successful for usage data provider " + > dataProvider.name > ); >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 35392
:
159256
|
159263
|
159264
|
159265
|
159279
|
159280
|
159281
|
159283
|
160450
|
160451
|
160512
|
160513
|
164466
|
164467
|
164473
|
164474
| 164475