Updates safelite-playwright-core version

Updates the safelite-playwright-core dependency to version 1.0.26.

This change also imports missing modules from the updated safelite-playwright-core package in relevant files.
This commit is contained in:
maguire-arman 2025-07-09 09:38:25 -04:00
parent 92c223487a
commit b8e969b772
5 changed files with 8 additions and 8 deletions

View file

@ -23,7 +23,7 @@
"luxon": "^3.6.1", "luxon": "^3.6.1",
"ortoni-report": "^3.0.2", "ortoni-report": "^3.0.2",
"playwright-jira-reporter": "^1.0.4", "playwright-jira-reporter": "^1.0.4",
"safelite-playwright-core": "^1.0.23", "safelite-playwright-core": "^1.0.26",
"typescript": "^5.8.3" "typescript": "^5.8.3"
} }
}, },
@ -3278,9 +3278,9 @@
"peer": true "peer": true
}, },
"node_modules/safelite-playwright-core": { "node_modules/safelite-playwright-core": {
"version": "1.0.23", "version": "1.0.26",
"resolved": "https://pkgs.dev.azure.com/Safelite/Digital/_packaging/DigitalQA/npm/registry/safelite-playwright-core/-/safelite-playwright-core-1.0.23.tgz", "resolved": "https://pkgs.dev.azure.com/Safelite/Digital/_packaging/DigitalQA/npm/registry/safelite-playwright-core/-/safelite-playwright-core-1.0.26.tgz",
"integrity": "sha1-qTT2J1kv961diGmGP2wT22YXfwM=", "integrity": "sha1-Nbm2PMNSqBQ9raXKVR4kacu2BP0=",
"dev": true, "dev": true,
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {

View file

@ -31,7 +31,7 @@
"luxon": "^3.6.1", "luxon": "^3.6.1",
"ortoni-report": "^3.0.2", "ortoni-report": "^3.0.2",
"playwright-jira-reporter": "^1.0.4", "playwright-jira-reporter": "^1.0.4",
"safelite-playwright-core": "^1.0.23", "safelite-playwright-core": "^1.0.26",
"typescript": "^5.8.3" "typescript": "^5.8.3"
}, },
"private": "true" "private": "true"

View file

@ -1,7 +1,7 @@
import { expect, type Locator, type Page } from '@playwright/test'; import { expect, type Locator, type Page } from '@playwright/test';
import { BasePage } from './BasePage'; import { BasePage } from './BasePage';
import { getTestObject } from 'framework/Typedefs'; import { getTestObject } from 'framework/Typedefs';
import { ServicePackage, PaymentType, ServiceLocation } from 'safelite-playwright-core'; import { ServicePackage, PaymentType, ServiceLocation, Soft } from 'safelite-playwright-core';
import { PaymentMethod, ProgressBarPercentages } from "framework/localTypes/Enums"; import { PaymentMethod, ProgressBarPercentages } from "framework/localTypes/Enums";
import { ITestData } from 'framework/TestData'; import { ITestData } from 'framework/TestData';
import { step } from 'framework/localTypes/Step'; import { step } from 'framework/localTypes/Step';

View file

@ -1,6 +1,6 @@
import { expect, type Locator, type Page } from '@playwright/test'; import { expect, type Locator, type Page } from '@playwright/test';
import { BasePage } from './BasePage'; import { BasePage } from './BasePage';
import { IPaymentDetails } from 'safelite-playwright-core'; import { IPaymentDetails, Soft, waitUntil } from 'safelite-playwright-core';
import { AppointmentTimeslot, ServiceLocation, PaymentType, ServicePackage, VehicleDamage } from 'safelite-playwright-core'; import { AppointmentTimeslot, ServiceLocation, PaymentType, ServicePackage, VehicleDamage } from 'safelite-playwright-core';
import { PaymentMethod, ProgressBarPercentages } from 'framework/localTypes/Enums'; import { PaymentMethod, ProgressBarPercentages } from 'framework/localTypes/Enums';
import { PaymentPage } from './PaymentPage'; import { PaymentPage } from './PaymentPage';

View file

@ -1,6 +1,6 @@
//Imports here //Imports here
import { ITestData } from 'framework/TestData' import { ITestData } from 'framework/TestData'
import { ServiceLocation, DamageType, Flow, PartQuestionType } from 'safelite-playwright-core'; import { ServiceLocation, DamageType, Flow, PartQuestionType, LossLocation } from 'safelite-playwright-core';
import { PaymentMethod } from "framework/localTypes/Enums"; import { PaymentMethod } from "framework/localTypes/Enums";
import { ITestCase } from '../framework/Typedefs' import { ITestCase } from '../framework/Typedefs'
import { VehicleLookupType } from 'safelite-playwright-core'; import { VehicleLookupType } from 'safelite-playwright-core';