@bigbinary/neeto-playwright-commons 1.10.0 → 1.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.cjs.js CHANGED
@@ -375,6 +375,7 @@ const COMMON_SELECTORS = {
375
375
  nuiRadioLabel: "nui-radio-label",
376
376
  submitButton: "submit-button",
377
377
  tableRow: ".ant-table-row",
378
+ navigationHeaderLeftBlock: "navigation-header-left-block",
378
379
  };
379
380
 
380
381
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
@@ -13511,10 +13512,7 @@ class WebhooksPage {
13511
13512
  callback({ parsedResponse, ...otherParams });
13512
13513
  };
13513
13514
  this.verifyWebhookDeliveryByEvent = async ({ event, callbackToVerifyDeliveries, ...fieldsToBeVerified }) => {
13514
- await this.page
13515
- .getByRole("row", { name: event })
13516
- .getByRole("button")
13517
- .click();
13515
+ await this.page.getByRole("row", { name: event }).getByRole("link").click();
13518
13516
  await this.verifyWebhookDeliveries({
13519
13517
  callback: callbackToVerifyDeliveries,
13520
13518
  ...fieldsToBeVerified,