Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DFPL-2578 #5712

Merged
merged 11 commits into from
Nov 19, 2024
Prev Previous commit
Next Next commit
Update log-expert-report.ts
resolved
  • Loading branch information
Braimah101 authored Nov 14, 2024
commit 6ad2f04b6ec8c8a60e3d18c25c082d4a34f19568
4 changes: 0 additions & 4 deletions playwright-e2e/pages/log-expert-report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export class LogExpertReport extends BasePage {
readonly Day: Locator;
readonly Month: Locator;
readonly Year: Locator;
readonly hasItBeenApproved: Locator;
readonly dateApproved: Locator;
readonly submitButton: Locator;
readonly radio: Locator;
Expand All @@ -19,14 +18,11 @@ export class LogExpertReport extends BasePage {
public constructor(page: Page) {
super(page);
this.logExpertRerort = page.getByRole('heading', { name: 'Log expert report', exact: true });
this.button = page.getByRole('button', { name: 'Go' });
this.addNew = page.getByRole('button', { name: 'Add new' });
this.typeOfReport = page.getByLabel('What type of report have you');
this.hasItBeenApproved = page.getByRole('heading', { name: 'Has it been approved?' })
this.Day = page.getByRole('textbox', { name: 'Day' });
this.Month = page.getByRole('textbox', { name: 'Month' });
this.Year = page.getByRole('textbox', { name: 'Year' });
this.dateApproved = page.getByRole('heading', { name: 'Date approved' })
this.radio = page.getByRole('radio', { name: 'No' });
this.submitButton = page.getByRole('button', { name: 'Submit' });
this.saveAndContinue = page.getByRole('button', { name: 'Save and continue' });
Expand Down
Loading