@bigbinary/neeto-playwright-commons 1.9.34 → 1.10.1
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 +2 -5
- package/index.cjs.js.map +1 -1
- package/index.js +2 -5
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -12845,7 +12845,7 @@ class EmbedBase {
|
|
|
12845
12845
|
}
|
|
12846
12846
|
|
|
12847
12847
|
const CHAT_WIDGET_TEXTS = {
|
|
12848
|
-
newConversation: "
|
|
12848
|
+
newConversation: "Ask a question",
|
|
12849
12849
|
welcomeChatBubble: "Hi! I'm here to assist you with any questions you may have. What can I do for you?",
|
|
12850
12850
|
};
|
|
12851
12851
|
const MEMBER_TEXTS = {
|
|
@@ -13511,10 +13511,7 @@ class WebhooksPage {
|
|
|
13511
13511
|
callback({ parsedResponse, ...otherParams });
|
|
13512
13512
|
};
|
|
13513
13513
|
this.verifyWebhookDeliveryByEvent = async ({ event, callbackToVerifyDeliveries, ...fieldsToBeVerified }) => {
|
|
13514
|
-
await this.page
|
|
13515
|
-
.getByRole("row", { name: event })
|
|
13516
|
-
.getByRole("button")
|
|
13517
|
-
.click();
|
|
13514
|
+
await this.page.getByRole("row", { name: event }).getByRole("link").click();
|
|
13518
13515
|
await this.verifyWebhookDeliveries({
|
|
13519
13516
|
callback: callbackToVerifyDeliveries,
|
|
13520
13517
|
...fieldsToBeVerified,
|