@bigbinary/neeto-playwright-commons 1.13.10 → 1.13.11

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.d.ts CHANGED
@@ -4756,6 +4756,8 @@ declare const SIGNUP_SELECTORS: {
4756
4756
  *
4757
4757
  * paymentsTab: Selector for the payments tab.
4758
4758
  *
4759
+ * settingsTab: Selector for the settings tab.
4760
+ *
4759
4761
  */
4760
4762
  declare const TAB_SELECTORS: {
4761
4763
  configureTab: string;
@@ -4764,6 +4766,7 @@ declare const TAB_SELECTORS: {
4764
4766
  shareTab: string;
4765
4767
  submissionsTab: string;
4766
4768
  paymentsTab: string;
4769
+ settingsTab: string;
4767
4770
  };
4768
4771
  /**
4769
4772
  *
package/index.js CHANGED
@@ -599,6 +599,7 @@ const TAB_SELECTORS = {
599
599
  shareTab: "share-tab",
600
600
  submissionsTab: "submissions-tab",
601
601
  paymentsTab: "payments-tab",
602
+ settingsTab: "settings-tab",
602
603
  };
603
604
 
604
605
  const TAGS_SELECTORS = {
@@ -21159,7 +21160,7 @@ const i18nFixture = {
21159
21160
  class ThankYouPage {
21160
21161
  constructor(page, neetoPlaywrightUtilities) {
21161
21162
  this.navigateToThankYouPage = async () => {
21162
- await this.page.getByTestId(TAB_SELECTORS.configureTab).click();
21163
+ await this.page.getByTestId(TAB_SELECTORS.settingsTab).click();
21163
21164
  const fetchConfiguration = this.neetoPlaywrightUtilities.interceptMultipleResponses({
21164
21165
  responseUrl: ROUTES.neetoThankYou,
21165
21166
  });
@@ -23688,7 +23689,7 @@ class SlackPage extends IntegrationBase {
23688
23689
  const allowButton = this.page.getByRole("button", {
23689
23690
  name: SLACK_WEB_TEXTS.allow,
23690
23691
  });
23691
- await expect(allowButton).toBeEnabled({ timeout: 20000 });
23692
+ await expect(allowButton).toBeEnabled({ timeout: 30000 });
23692
23693
  const currentWorkspace = (await this.page
23693
23694
  .locator(SLACK_SELECTORS.teamPicketButtonContent)
23694
23695
  .textContent()) || "";