diff --git a/apps/edr-passenger-api/src/modules/bookings/bookings.service.ts b/apps/edr-passenger-api/src/modules/bookings/bookings.service.ts index 64dcb2c6c..d8343df7a 100644 --- a/apps/edr-passenger-api/src/modules/bookings/bookings.service.ts +++ b/apps/edr-passenger-api/src/modules/bookings/bookings.service.ts @@ -863,6 +863,9 @@ export class BookingsService { const allFaresProvided = seatedPassengers.length > 0 && seatedPassengers.every(p => p.seatFareMinor != null); let resolvedTotalMinor: number; let displayTotalMinor: number; + // True when the total came from a client-summed subtotal (per-seat sum or reviewedTotalMinor), + // which the portal computes UNDISCOUNTED — the promo must still be applied to it (H-13). + let usedClientSubtotal = false; if (allFaresProvided && !dto.packageId) { // Server has every passenger's berth fare — sum is the authoritative display total. @@ -870,6 +873,7 @@ export class BookingsService { resolvedTotalMinor = displayCurrency !== Currency.ETB ? await this.currencyService.convertAmount(displayTotalMinor, displayCurrency, Currency.ETB) : displayTotalMinor; + usedClientSubtotal = true; if (dto.reviewedTotalMinor != null && dto.reviewedTotalMinor !== displayTotalMinor) { this.logger.warn(`createOneWayBooking: reviewedTotalMinor=${dto.reviewedTotalMinor} ignored — using server-computed sum=${displayTotalMinor}`); } @@ -891,13 +895,35 @@ export class BookingsService { resolvedTotalMinor = displayCurrency !== Currency.ETB ? await this.currencyService.convertAmount(dto.reviewedTotalMinor, displayCurrency, Currency.ETB) : dto.reviewedTotalMinor; + usedClientSubtotal = true; } else { resolvedTotalMinor = fareCalculation.totalMinor; displayTotalMinor = displayCurrency !== Currency.ETB ? await this.currencyService.convertAmount(resolvedTotalMinor, Currency.ETB, displayCurrency) : resolvedTotalMinor; } - this.logger.log(`createOneWayBooking: resolvedTotalMinor=${resolvedTotalMinor} displayTotalMinor=${displayTotalMinor} displayCurrency=${displayCurrency} (reviewedTotalMinor=${dto.reviewedTotalMinor} allFaresProvided=${allFaresProvided} fareEngine=${fareCalculation.totalMinor})`); + + // H-13 fix: the portal sums UNDISCOUNTED per-passenger fares into the total it sends, silently + // dropping the promo the fare engine recognized (the discount lives only in the fare-breakdown). + // When the total came from that client subtotal, apply the authoritative promo discount so the + // customer is charged the discounted price. No-op when no promo applies (discountMinor === 0). + // The fallback branch above already books fareCalculation.totalMinor (discount included), so it is + // excluded via usedClientSubtotal to avoid double-subtracting. + if (usedClientSubtotal && fareCalculation.discountMinor > 0) { + resolvedTotalMinor = Math.max(0, resolvedTotalMinor - fareCalculation.discountMinor); + const discountDisplayMinor = displayCurrency !== Currency.ETB + ? await this.currencyService.convertAmount(fareCalculation.discountMinor, Currency.ETB, displayCurrency) + : fareCalculation.discountMinor; + displayTotalMinor = Math.max(0, displayTotalMinor - discountDisplayMinor); + } + this.logger.log(`createOneWayBooking: resolvedTotalMinor=${resolvedTotalMinor} displayTotalMinor=${displayTotalMinor} displayCurrency=${displayCurrency} (reviewedTotalMinor=${dto.reviewedTotalMinor} allFaresProvided=${allFaresProvided} discountMinor=${fareCalculation.discountMinor} fareEngine=${fareCalculation.totalMinor})`); + + // C-1 guard: never charge less than the server-recomputed authoritative fare. resolvedTotalMinor + // is the ETB charge basis; fareCalculation.totalMinor is the authoritative ETB fare (already net + // of promo/loyalty/free-child). A client that forges seatFareMinor / reviewedTotalMinor below it + // is rejected. Floor (not equality) so legitimate berth surcharges — which only raise the total — + // still pass; the tolerance absorbs FX-conversion rounding. + this.assertTotalNotUnderAuthoritative(resolvedTotalMinor, fareCalculation.totalMinor, 'createOneWayBooking'); const booking = await this.prisma.booking.create({ data: { @@ -1028,6 +1054,9 @@ export class BookingsService { loyaltyMinor = (dto.loyaltyRedemptionPoints ?? 0) * 10; totalMinor = Math.max(0, combinedBaseFareMinor - discountMinor - loyaltyMinor); } + // C-1 guard: authoritative ETB fare for both legs, captured before the client-driven branches + // below may overwrite totalMinor with a per-seat sum or reviewedTotalMinor. + const authoritativeTotalMinor = totalMinor; const taxesMinor = 0; const displayCurrency = dto.displayCurrency || resolveCurrencyFromNationality(passengersData[0]?.nationality); @@ -1093,6 +1122,9 @@ export class BookingsService { : dto.reviewedTotalMinor; } + // C-1 guard: never charge less than the server-recomputed authoritative round-trip fare. + this.assertTotalNotUnderAuthoritative(totalMinor, authoritativeTotalMinor, 'createRoundTripBooking'); + const booking = await this.prisma.booking.create({ data: { bookingRef: generateRef(), @@ -1675,6 +1707,21 @@ export class BookingsService { }; } + /** + * C-1 protection: reject a booking whose ETB charge basis is below the server-recomputed + * authoritative fare. A floor (not equality) so legitimate berth surcharges — which only raise + * the total — still pass; a 1% tolerance absorbs FX-conversion rounding. A forged seatFareMinor / + * reviewedTotalMinor that lowers the charge (e.g. to 1 or 0) is refused with a 400 and nothing is + * persisted. + */ + private assertTotalNotUnderAuthoritative(resolvedTotalMinor: number, authoritativeMinor: number, context: string): void { + const tolerance = Math.max(1, Math.round(authoritativeMinor * 0.01)); + if (resolvedTotalMinor < authoritativeMinor - tolerance) { + this.logger.warn(`${context}: rejecting booking — resolvedTotalMinor=${resolvedTotalMinor} below authoritative fare=${authoritativeMinor}`); + throw new BadRequestException('Booking total does not match the authoritative fare'); + } + } + private async calculateFare( scheduleId: string, seatClassId: string, diff --git a/apps/edr-passenger-api/src/modules/bookings/guest-booking.service.ts b/apps/edr-passenger-api/src/modules/bookings/guest-booking.service.ts index af5321e2d..cb3760796 100644 --- a/apps/edr-passenger-api/src/modules/bookings/guest-booking.service.ts +++ b/apps/edr-passenger-api/src/modules/bookings/guest-booking.service.ts @@ -1,4 +1,4 @@ -import { Injectable, BadRequestException, NotFoundException } from '@nestjs/common'; +import { Injectable, BadRequestException, NotFoundException, Logger } from '@nestjs/common'; import { PrismaService } from '../../common/prisma.service'; import { SeatsService } from '../seats/seats.service'; import { VerifaydaService } from '../verifayda/verifayda.service'; @@ -42,6 +42,8 @@ function calculateAge(dateOfBirth: Date): number { @Injectable() export class GuestBookingService { + private readonly logger = new Logger(GuestBookingService.name); + constructor( private prisma: PrismaService, private seatsService: SeatsService, @@ -52,6 +54,21 @@ export class GuestBookingService { private eventEmitter: EventEmitter2, ) { } + /** + * C-1 protection (guest path): reject a booking whose ETB charge basis is below the + * server-recomputed authoritative fare. A floor (not equality) so legitimate berth surcharges — + * which only raise the total — still pass; a 1% tolerance absorbs FX-conversion rounding. A forged + * seatFareMinor / reviewedTotalMinor that lowers the charge (e.g. to 0) is refused with a 400 and + * nothing is persisted. + */ + private assertTotalNotUnderAuthoritative(resolvedTotalMinor: number, authoritativeMinor: number, context: string): void { + const tolerance = Math.max(1, Math.round(authoritativeMinor * 0.01)); + if (resolvedTotalMinor < authoritativeMinor - tolerance) { + this.logger.warn(`${context}: rejecting booking — resolvedTotalMinor=${resolvedTotalMinor} below authoritative fare=${authoritativeMinor}`); + throw new BadRequestException('Booking total does not match the authoritative fare'); + } + } + async createGuestBooking(dto: CreateGuestBookingDto, req?: any) { // Enrich passengers with phone/email from SavedPassengerProfile when not supplied inline. // The portal calls /passengers/save-details before booking but doesn't re-send contact @@ -250,6 +267,9 @@ export class GuestBookingService { ? await this.currencyService.convertAmount(displayTotalMinor, displayCurrency, Currency.ETB) : displayTotalMinor; + // C-1 guard: never charge less than the server-recomputed authoritative ETB fare (net of promo). + this.assertTotalNotUnderAuthoritative(resolvedTotalMinor, Math.max(0, totalBaseFareMinor - discountMinor), 'createGuestBooking'); + // Resolve or create the guest Passenger record const firstPassenger = passengersData[0]; const { guestPassengerId, iamUserId, createdAccount } = await this.resolveGuestPassenger(dto, firstPassenger, req); @@ -485,6 +505,9 @@ export class GuestBookingService { const taxesMinor = 0; let totalMinor = Math.max(0, combinedBaseFareMinor - discountMinor); + // C-1 guard: authoritative ETB fare for both legs, captured before the client-driven branches + // below may overwrite totalMinor with a per-seat sum or reviewedTotalMinor. + const authoritativeTotalMinor = totalMinor; const displayCurrency = dto.displayCurrency || Currency.ETB; let displayTotalMinor = displayCurrency !== Currency.ETB @@ -540,6 +563,9 @@ export class GuestBookingService { : displayTotalMinor; } + // C-1 guard: never charge less than the server-recomputed authoritative round-trip fare. + this.assertTotalNotUnderAuthoritative(totalMinor, authoritativeTotalMinor, 'createGuestRoundTripBooking'); + // Create or resolve guest passenger (same as one-way) const { guestPassengerId, iamUserId, createdAccount } = await this.resolveGuestPassenger(dto, passengersData[0], req); diff --git a/apps/edr-passenger-api/src/modules/currency/currency.service.ts b/apps/edr-passenger-api/src/modules/currency/currency.service.ts index 95ecc2cd7..ae4ca7503 100644 --- a/apps/edr-passenger-api/src/modules/currency/currency.service.ts +++ b/apps/edr-passenger-api/src/modules/currency/currency.service.ts @@ -140,10 +140,14 @@ export class CurrencyService { }); if (!exchangeRate) { - this.logger.warn( - `No exchange rate found for ${fromCurrency} to ${toCurrency}, using 1.0`, + // H-2: fail closed. Never price at parity (1.0) when a required rate is absent — a silent 1.0 + // substitution underprices international fares ~100×. Reject the quote/booking instead. + this.logger.error( + `No exchange rate configured for ${fromCurrency}->${toCurrency}; refusing to price at parity`, + ); + throw new BadRequestException( + `No exchange rate configured for ${fromCurrency}->${toCurrency}`, ); - return 1.0; } const ageMs = Date.now() - exchangeRate.effectiveDate.getTime(); diff --git a/apps/edr-passenger-api/src/modules/fare-engine/currency.controller.ts b/apps/edr-passenger-api/src/modules/fare-engine/currency.controller.ts index 5a33dcc31..ee096dbc4 100644 --- a/apps/edr-passenger-api/src/modules/fare-engine/currency.controller.ts +++ b/apps/edr-passenger-api/src/modules/fare-engine/currency.controller.ts @@ -23,6 +23,8 @@ export class CurrencyController { } @Put() + @PassengerAdmin() + @ApiBearerAuth('IAM-auth') @ApiOperation({ summary: 'Upsert an exchange rate for today' }) @ApiResponse({ status: 200, description: 'Rate created or updated for today\'s effective date' }) upsert(@Body() dto: UpsertExchangeRateDto) { @@ -30,6 +32,8 @@ export class CurrencyController { } @Patch(':id') + @PassengerAdmin() + @ApiBearerAuth('IAM-auth') @ApiOperation({ summary: 'Update an exchange rate by ID' }) @ApiParam({ name: 'id', description: 'CurrencyExchangeRate UUID' }) @ApiResponse({ status: 200, description: 'Rate updated' }) diff --git a/apps/edr-passenger-api/src/modules/payments/payments.service.ts b/apps/edr-passenger-api/src/modules/payments/payments.service.ts index ac8c7ef66..b31e6dd56 100644 --- a/apps/edr-passenger-api/src/modules/payments/payments.service.ts +++ b/apps/edr-passenger-api/src/modules/payments/payments.service.ts @@ -969,6 +969,19 @@ export class PaymentsService { return { processed: false, reason: "booking-not-found" }; } + // C-4 guard: a settlement must cover what the passenger was quoted. Compare the provider-settled + // amount against the booking's display-currency total (the amount the customer agreed to pay); + // a short payment must NOT confirm the booking. Amount-only — the display↔charge currency + // divergence is tracked separately under the USD/DJF findings. The 1% tolerance absorbs rounding. + const expectedMinor = booking.displayTotalMinor ?? booking.totalMinor; + const shortPayTolerance = Math.max(1, Math.round(expectedMinor * 0.01)); + if (event.amountMinor < expectedMinor - shortPayTolerance) { + this.logger.error( + `mark-paid: short payment for booking ${booking.id} — settled ${event.amountMinor} ${event.currency} < expected ${expectedMinor} ${booking.displayCurrency}; not confirming`, + ); + return { processed: false, reason: "amount-mismatch" }; + } + // Local intent row is a projection during the strangler migration: reuse it when the // legacy initiate path created one, otherwise materialize it from the event. let intent = await this.prisma.paymentIntent.findUnique({ diff --git a/apps/edr-passenger-api/src/modules/promos/promos.dto.ts b/apps/edr-passenger-api/src/modules/promos/promos.dto.ts index 759fe371e..2d0ad7a08 100644 --- a/apps/edr-passenger-api/src/modules/promos/promos.dto.ts +++ b/apps/edr-passenger-api/src/modules/promos/promos.dto.ts @@ -1,4 +1,4 @@ -import { IsString, IsOptional, IsInt, IsBoolean } from 'class-validator'; +import { IsString, IsOptional, IsInt, IsBoolean, Min, Max } from 'class-validator'; import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger'; export class CreatePromotionDto { @@ -15,14 +15,17 @@ export class CreatePromotionDto { @IsString() subtitle?: string; - @ApiPropertyOptional({ example: 15 }) + @ApiPropertyOptional({ example: 15, description: 'Percentage discount, bounded 0..100' }) @IsOptional() @IsInt() + @Min(0) + @Max(100) percentOff?: number; @ApiPropertyOptional({ example: 5000 }) @IsOptional() @IsInt() + @Min(0) amountOffMinor?: number; @ApiProperty({ example: '2026-12-31T23:59:59Z' }) diff --git a/apps/edr-passenger-api/src/modules/schedules/schedules.service.ts b/apps/edr-passenger-api/src/modules/schedules/schedules.service.ts index 7cca548aa..4c2870a8a 100644 --- a/apps/edr-passenger-api/src/modules/schedules/schedules.service.ts +++ b/apps/edr-passenger-api/src/modules/schedules/schedules.service.ts @@ -103,6 +103,8 @@ export class SchedulesService { const dep = parseEthiopianTime(dto.departureAt); const arr = parseEthiopianTime(dto.arrivalAt); if (arr <= dep) throw new BadRequestException('arrivalAt must be after departureAt'); + // M-4: a new schedule cannot depart in the past — the backoffice form does not enforce this. + if (dep.getTime() < Date.now()) throw new BadRequestException('departureAt must be in the future'); const [train, route] = await Promise.all([ this.prisma.train.findUnique({ where: { id: dto.trainId } }), diff --git a/apps/edr-passenger-api/src/modules/seat-classes/seat-classes.dto.ts b/apps/edr-passenger-api/src/modules/seat-classes/seat-classes.dto.ts index 1ea743aa6..853076006 100644 --- a/apps/edr-passenger-api/src/modules/seat-classes/seat-classes.dto.ts +++ b/apps/edr-passenger-api/src/modules/seat-classes/seat-classes.dto.ts @@ -1,4 +1,4 @@ -import { IsString, IsInt, IsBoolean, IsOptional, IsIn } from 'class-validator'; +import { IsString, IsInt, IsBoolean, IsOptional, IsIn, Min } from 'class-validator'; import { ApiProperty, ApiPropertyOptional, PartialType } from '@nestjs/swagger'; export class CreateSeatClassDto { @@ -27,11 +27,13 @@ export class CreateSeatClassDto { @ApiProperty({ example: 3000, description: 'Per-km rate in minor units (tariff decimal × 100000)' }) @IsInt() + @Min(0) basePrice: number; @ApiPropertyOptional({ example: 1200, description: 'Flat insurance fee in minor units' }) @IsOptional() @IsInt() + @Min(0) insuranceFeeMinor?: number; @ApiPropertyOptional({ example: true }) diff --git a/apps/edr-passenger-api/src/modules/system-config/system-config.controller.ts b/apps/edr-passenger-api/src/modules/system-config/system-config.controller.ts index 0114c03f9..6d2c15eb2 100644 --- a/apps/edr-passenger-api/src/modules/system-config/system-config.controller.ts +++ b/apps/edr-passenger-api/src/modules/system-config/system-config.controller.ts @@ -1,6 +1,7 @@ import { Body, Controller, Get, Patch, SetMetadata, UseGuards } from '@nestjs/common'; import { ApiTags, ApiBearerAuth, ApiOperation } from '@nestjs/swagger'; import { SystemConfigService } from './system-config.service'; +import { UpdateSystemConfigDto } from './system-config.dto'; import { IamGuard } from '../../common/iam-adapter'; import { Roles } from '../../common/roles.decorator'; @@ -31,7 +32,12 @@ export class SystemConfigController { @UseGuards(IamGuard) @Roles('ADMIN') @ApiOperation({ summary: 'Update system config (admin)' }) - update(@Body() body: Record) { - return this.service.updateMany(body); + update(@Body() dto: UpdateSystemConfigDto) { + // The DTO validates/coerces each known key to a positive integer; persist back as strings. + const entries: Record = {}; + for (const [key, value] of Object.entries(dto)) { + if (value !== undefined) entries[key] = String(value); + } + return this.service.updateMany(entries); } } diff --git a/apps/edr-passenger-api/src/modules/system-config/system-config.dto.ts b/apps/edr-passenger-api/src/modules/system-config/system-config.dto.ts new file mode 100644 index 000000000..5c1cd9679 --- /dev/null +++ b/apps/edr-passenger-api/src/modules/system-config/system-config.dto.ts @@ -0,0 +1,48 @@ +import { IsInt, IsOptional, Min, Max } from 'class-validator'; +import { Type } from 'class-transformer'; +import { ApiPropertyOptional } from '@nestjs/swagger'; + +/** + * Whitelisted, typed body for `PATCH /config`. Config is persisted as string key/values, but every + * known key is a positive integer (durations, hour windows, throttle limits/TTLs). Values arrive as + * strings from the backoffice form; `@Type(() => Number)` coerces them so the numeric/range checks + * apply (M-3 — the endpoint previously stored any raw string, e.g. `seat_hold_duration_minutes: -1`). + * Unknown keys are stripped by the global whitelisting ValidationPipe. + */ +export class UpdateSystemConfigDto { + @ApiPropertyOptional({ example: 5, description: 'Seat-hold duration in minutes (1..60)' }) + @IsOptional() @Type(() => Number) @IsInt() @Min(1) @Max(60) + seat_hold_duration_minutes?: number; + + @ApiPropertyOptional({ example: 2 }) + @IsOptional() @Type(() => Number) @IsInt() @Min(0) + hold_cutoff_hours_before_departure?: number; + + @ApiPropertyOptional({ example: 4 }) + @IsOptional() @Type(() => Number) @IsInt() @Min(0) + boarding_window_hours_before_departure?: number; + + @ApiPropertyOptional({ example: 5 }) + @IsOptional() @Type(() => Number) @IsInt() @Min(1) + throttle_auth_limit?: number; + + @ApiPropertyOptional({ example: 60000 }) + @IsOptional() @Type(() => Number) @IsInt() @Min(1) + throttle_auth_ttl_ms?: number; + + @ApiPropertyOptional({ example: 20 }) + @IsOptional() @Type(() => Number) @IsInt() @Min(1) + throttle_strict_limit?: number; + + @ApiPropertyOptional({ example: 60000 }) + @IsOptional() @Type(() => Number) @IsInt() @Min(1) + throttle_strict_ttl_ms?: number; + + @ApiPropertyOptional({ example: 100 }) + @IsOptional() @Type(() => Number) @IsInt() @Min(1) + throttle_default_limit?: number; + + @ApiPropertyOptional({ example: 60000 }) + @IsOptional() @Type(() => Number) @IsInt() @Min(1) + throttle_default_ttl_ms?: number; +} diff --git a/apps/edr-passenger-api/test/auth-gaps.e2e-spec.ts b/apps/edr-passenger-api/test/auth-gaps.e2e-spec.ts index a812f904a..b05495296 100644 --- a/apps/edr-passenger-api/test/auth-gaps.e2e-spec.ts +++ b/apps/edr-passenger-api/test/auth-gaps.e2e-spec.ts @@ -1,29 +1,34 @@ /** - * Auth/authorization gaps (matrix Suite J), proven via route guard metadata — no boot needed. - * J1 🔴 The exchange-rate controller's write routes (PUT upsert, PATCH update) carry NO guard, - * so USD/ETB/DJF rates — which every international fare multiplies by — can be rewritten by - * an unauthenticated caller. Only DELETE is guarded (@PassengerAdmin). fare-engine/currency.controller.ts:25,32,42 + * Auth/authorization gaps (matrix Suite J), via route guard metadata — no boot needed. + * + * C-8 🔴 The exchange-rate write routes (PUT upsert, PATCH update) carry no METHOD-LEVEL guard, so + * they get only the global JwtGuard (authentication) and NOT @PassengerAdmin (authorization) + * — unlike DELETE, which is admin-gated. Net effect (verified live in + * e2e-ui .../pb-config-propagation.spec.ts BC-11): anonymous → 401, but ANY authenticated + * user incl. a passenger → 200 rewrites live FX. fare-engine/currency.controller.ts:25,32,42 + * + * NOTE: this metadata check proves the missing ADMIN guard, NOT "unauthenticated" — a global + * APP_GUARD=JwtGuard (SharedAuthModule) still requires a valid token. The earlier "unauthenticated + * FX write" reading was a false positive corrected by the live BC-11 test. */ import "reflect-metadata"; import { CurrencyController } from "../src/modules/fare-engine/currency.controller"; -// Nest stores @UseGuards under the "__guards__" metadata key on the route handler. const GUARDS_METADATA = "__guards__"; - function guardsOn(handler: unknown): unknown[] { return (Reflect.getMetadata(GUARDS_METADATA, handler as object) as unknown[]) ?? []; } describe("Auth gaps (Suite J)", () => { - it("J1 🔴 PUT upsert exchange-rate has NO guard (unauthenticated FX write)", () => { + it("C-8 🔴 PUT upsert exchange-rate has NO admin guard (only the global JwtGuard applies)", () => { expect(guardsOn(CurrencyController.prototype.upsert)).toHaveLength(0); }); - it("J1 🔴 PATCH update exchange-rate has NO guard (unauthenticated FX write)", () => { + it("C-8 🔴 PATCH update exchange-rate has NO admin guard (only the global JwtGuard applies)", () => { expect(guardsOn(CurrencyController.prototype.update)).toHaveLength(0); }); - it("J1 control: DELETE exchange-rate IS guarded — proving the omission on writes is not global", () => { + it("C-8 control: DELETE exchange-rate IS admin-gated — proving writes should be too", () => { expect(guardsOn(CurrencyController.prototype.remove).length).toBeGreaterThan(0); }); }); diff --git a/apps/edr-passenger-api/test/authed-booking-passengerid.e2e-spec.ts b/apps/edr-passenger-api/test/authed-booking-passengerid.e2e-spec.ts new file mode 100644 index 000000000..ff4a59944 --- /dev/null +++ b/apps/edr-passenger-api/test/authed-booking-passengerid.e2e-spec.ts @@ -0,0 +1,122 @@ +/** + * C-9-UI 🔴 Authenticated POST /bookings is broken: the controller overrides passengerId with the + * JWT user id (`bookings.controller.ts:528-532`, "never trust the request body"), but the service + * only resolves an iamUserId → Passenger when it is NON-UUID (`bookings.service.ts:773`). Real IAM + * ids are UUIDs, and registration creates `Passenger.id ≠ iamUserId` (`passenger-auth.service.ts:225`), + * so `booking.create` uses the iamUserId directly as passengerId → foreign-key violation. + * + * This reproduces the controller's behavior by calling BookingsService.create with passengerId set to + * a UUID iamUserId (not the Passenger.id), exactly as the authed controller does. It also shows the + * CONTROL: passing the real Passenger.id succeeds — proving the resolution gap, not a fixture problem. + */ +import { BookingsService } from "../src/modules/bookings/bookings.service"; +import { getTestPrisma, disconnectTestPrisma } from "./setup/prisma"; +import { truncateAllPassenger, seedCore, IDS } from "./fixtures/seed-core"; + +function asyncStub(): any { + return new Proxy({}, { get: () => async () => undefined }); +} + +let seq = 0; +async function buildBookableGraph(prisma: any, passengerId: string, iamUserId: string) { + const passenger = await prisma.passenger.create({ data: { id: passengerId, iamUserId } }); + const train = await prisma.train.create({ data: { number: `AB-${++seq}`, name: "T" } }); + const schedule = await prisma.trainSchedule.create({ + data: { + trainId: train.id, + routeId: IDS.route, + originStationId: IDS.stationA, + destinationStationId: IDS.stationB, + departureAt: new Date(Date.now() + 86_400_000), + arrivalAt: new Date(Date.now() + 90_000_000), + durationMinutes: 60, + }, + }); + await prisma.tripStopTime.createMany({ + data: [ + { scheduleId: schedule.id, stationId: IDS.stationA, sequence: 1 }, + { scheduleId: schedule.id, stationId: IDS.stationB, sequence: 2 }, + ], + }); + const coach = await prisma.coach.create({ data: { coachTypeId: IDS.coachType, number: `AB-${seq}` } }); + const seat = await prisma.seat.create({ data: { coachId: coach.id, seatNumber: "1A", row: 1, col: "1" } }); + await prisma.fareRule.create({ + data: { tripId: schedule.id, seatClassId: IDS.seatClassLocal, baseFareMinor: 30_000, currency: "ETB", validFrom: new Date("2020-01-01") }, + }); + const hold = await prisma.seatHold.create({ + data: { scheduleId: schedule.id, seatIds: [seat.id], passengerId, expiresAt: new Date(Date.now() + 3_600_000) }, + }); + return { schedule, seat, hold }; +} + +function dtoFor(passengerId: string, schedule: any, hold: any, seat: any) { + return { + passengerId, // the controller passes req.user.id here (the iamUserId) + scheduleId: schedule.id, + holdId: hold.id, + originStationId: IDS.stationA, + destinationStationId: IDS.stationB, + seatClassId: IDS.seatClassLocal, + bookingType: "ONE_WAY", + passengers: [ + { + seatId: seat.id, + passengerName: "Auth User", + dateOfBirth: new Date("1990-01-01"), + idDocumentType: "PASSPORT", + passportNumber: "P1", + passportCountry: "ET", + nationality: "Ethiopian", + seatFareMinor: 30_000, + }, + ], + }; +} + +describe("Authenticated booking passengerId resolution (regression)", () => { + const prisma = getTestPrisma(); + let bookings: BookingsService; + + beforeAll(() => { + bookings = new BookingsService( + prisma as any, + { query: async () => [] } as any, // dataSource (resolveIamContact raw SQL → []) + asyncStub(), // seatsService + { emit: () => true } as any, + asyncStub(), // verifaydaService (PASSPORT skips) + asyncStub(), // currencyService (ETB skips) + asyncStub(), // fareEngine (FareRule short-circuits) + asyncStub(), // auditService + ); + }); + beforeEach(async () => { + await truncateAllPassenger(prisma); + await seedCore(prisma); + }); + afterAll(async () => { + await disconnectTestPrisma(); + }); + + it("🔴 create() with a UUID iamUserId (as the authed controller passes) FAILS the passenger FK", async () => { + const passengerId = "aaaaaaaa-0000-4000-8000-000000000001"; // real Passenger.id + const iamUserId = "bbbbbbbb-0000-4000-8000-000000000002"; // UUID iamUserId ≠ Passenger.id + const { schedule, hold, seat } = await buildBookableGraph(prisma, passengerId, iamUserId); + + // The controller calls service.create({ ...dto, passengerId: req.user.id }) — i.e. the iamUserId. + await expect( + bookings.create(dtoFor(iamUserId, schedule, hold, seat) as any), + ).rejects.toThrow(); // Prisma P2003 on Booking_passengerId_fkey + + expect(await prisma.booking.count()).toBe(0); + }); + + it("control: create() with the real Passenger.id succeeds — proving the gap is the id, not the fixture", async () => { + const passengerId = "aaaaaaaa-0000-4000-8000-000000000003"; + const iamUserId = "bbbbbbbb-0000-4000-8000-000000000004"; + const { schedule, hold, seat } = await buildBookableGraph(prisma, passengerId, iamUserId); + + const booking: any = await bookings.create(dtoFor(passengerId, schedule, hold, seat) as any); + expect(booking.id).toBeTruthy(); + expect(booking.passengerId).toBe(passengerId); + }); +}); diff --git a/apps/edr-passenger-api/test/fixtures/seed-passenger-session.ts b/apps/edr-passenger-api/test/fixtures/seed-passenger-session.ts new file mode 100644 index 000000000..ed5e9ca36 --- /dev/null +++ b/apps/edr-passenger-api/test/fixtures/seed-passenger-session.ts @@ -0,0 +1,89 @@ +/** + * Seeds a passenger IAM user + session directly (no OTP flow) and mints an access token the portal + * accepts. The API JwtGuard verifies the JWT signature (JWT_ACCESS_TOKEN_SECRET) and looks up the + * session by its `id` claim; the portal then calls /auth/profile which needs a Passenger row linked + * by iamUserId. Returns { token, profile } for the Playwright passenger storageState. + * + * Run standalone to validate: `npx ts-node test/fixtures/seed-passenger-session.ts` (prints the + * token and the /auth/profile status via the running API on :4000). + */ +import { PrismaClient } from "@prisma/client"; +import { SignJWT } from "jose"; +import { UI_IDS } from "./seed-ui"; + +export const PASSENGER_USER_ID = "11111111-0000-4000-8000-000000000001"; +export const PASSENGER_SESSION_ID = "11111111-0000-4000-8000-000000000002"; +const EMAIL = "test.passenger@edr.local"; +const USERNAME = "test_passenger"; + +export async function seedPassengerSession(prisma: PrismaClient): Promise<{ token: string }> { + const secret = process.env.JWT_ACCESS_TOKEN_SECRET; + if (!secret) throw new Error("JWT_ACCESS_TOKEN_SECRET is required to mint the passenger token"); + + const userInfo = { + id: PASSENGER_USER_ID, + name: { en: "Test Passenger" }, + email: EMAIL, + roles: [] as unknown[], + status: "accepted", + employee: [] as unknown[], + userType: "individual", + username: USERNAME, + permissions: [] as unknown[], + }; + const expiry = new Date(Date.now() + 7 * 86400_000); + + // iam.users (delete-then-insert so re-seeding is idempotent). + await prisma.$executeRawUnsafe(`DELETE FROM iam.sessions WHERE id = $1::uuid`, PASSENGER_SESSION_ID); + await prisma.$executeRawUnsafe(`DELETE FROM iam.users WHERE id = $1::uuid`, PASSENGER_USER_ID); + await prisma.$executeRawUnsafe( + `INSERT INTO iam.users (created_at, id, name, username, email, user_type, status, is_active, has_set_password, is_phone_number_verified, verified_by) + VALUES (now(), $1::uuid, $2::jsonb, $3, $4, 'individual', 'accepted', true, true, true, 'SYSTEM')`, + PASSENGER_USER_ID, + JSON.stringify(userInfo.name), + USERNAME, + EMAIL, + ); + await prisma.$executeRawUnsafe( + `INSERT INTO iam.sessions (created_at, id, email, device, "userInfo", expiry_time, refresh_count, status, user_id) + VALUES (now(), $1::uuid, $2, 'e2e', $3::jsonb, $4, 0, 'ACTIVE', $5::uuid)`, + PASSENGER_SESSION_ID, + EMAIL, + JSON.stringify(userInfo), + expiry, + PASSENGER_USER_ID, + ); + + // Link the seeded Passenger row to this IAM user so /auth/profile resolves. + await prisma.passenger.update({ + where: { id: UI_IDS.passenger }, + data: { iamUserId: PASSENGER_USER_ID }, + }); + + const token = await new SignJWT({ id: PASSENGER_SESSION_ID }) + .setProtectedHeader({ alg: "HS256", typ: "JWT" }) + .setIssuedAt() + .setExpirationTime("7d") + .sign(new TextEncoder().encode(secret)); + + return { token }; +} + +if (require.main === module) { + (async () => { + const prisma = new PrismaClient(); + try { + const { token } = await seedPassengerSession(prisma); + const api = process.env.API_URL ?? "http://localhost:4000"; + const res = await fetch(`${api}/auth/profile`, { + headers: { Authorization: `Bearer ${token}` }, + }); + // eslint-disable-next-line no-console + console.log(`[passenger-session] /auth/profile -> HTTP ${res.status}`); + // eslint-disable-next-line no-console + console.log((await res.text()).slice(0, 400)); + } finally { + await prisma.$disconnect(); + } + })(); +} diff --git a/apps/edr-passenger-api/test/fixtures/seed-ui.ts b/apps/edr-passenger-api/test/fixtures/seed-ui.ts new file mode 100644 index 000000000..96ea79e65 --- /dev/null +++ b/apps/edr-passenger-api/test/fixtures/seed-ui.ts @@ -0,0 +1,197 @@ +/** + * UI E2E seed — extends seed-core with a BOOKABLE trip + payment methods + promos so the portal + * search/booking flow and the backoffice config flow have real data to drive. Runnable standalone + * (`ts-node test/fixtures/seed-ui.ts`) or importable (`seedUi(prisma)`) from the Playwright + * global-setup. Reads DATABASE_URL from the environment (the UI stack points at the 5544 test DB). + * + * Searchability: a schedule shows in POST /search when it is SCHEDULED, not package-only, has a + * future departure on the searched date, operational coaches with AVAILABLE seats, and a resolvable + * fare (seat-class distance formula using the seeded route-stop distances + USD→ETB rate). + */ +import { PrismaClient } from "@prisma/client"; +import { IDS, resetAndSeedCore } from "./seed-core"; + +export const UI_IDS = { + train: "00000000-0000-4000-8000-000000000100", + schedule: "00000000-0000-4000-8000-000000000101", + coach: "00000000-0000-4000-8000-000000000102", + // Passenger.id is set EQUAL to the IAM user id. The bookings controller overrides passengerId + // with the JWT user id (req.user.id), and the service only resolves iamUserId→passenger when it + // is NON-UUID — since IAM ids are UUIDs, it uses the id directly, so Passenger.id must equal it. + passenger: "11111111-0000-4000-8000-000000000001", + promoValid: "PROMO10", + promoExpired: "EXPIRED50", + // Return leg C→A on the same calendar date, for ROUND_TRIP scenarios (UA-6). The route stops are + // symmetric in distance (A=0, C=250) so the reverse leg prices identically to the outbound. + returnSchedule: "00000000-0000-4000-8000-000000000201", + returnCoach: "00000000-0000-4000-8000-000000000202", +} as const; + +/** Days-from-now the sample trip departs (tests search on this calendar date, Addis TZ). */ +export const DEPART_IN_DAYS = 2; + +export function sampleDepartAt(): Date { + const d = new Date(); + d.setUTCDate(d.getUTCDate() + DEPART_IN_DAYS); + d.setUTCHours(6, 0, 0, 0); // 06:00Z ~ 09:00 Addis — safely same calendar day either TZ + return d; +} + +/** The date string a test passes to POST /search for the sample trip (YYYY-MM-DD). */ +export function sampleDepartDate(): string { + return sampleDepartAt().toISOString().slice(0, 10); +} + +export async function seedUi(prisma: PrismaClient): Promise { + await resetAndSeedCore(prisma); + + // Give the two seed-core seat classes the exact names the portal review flow maps by. + await prisma.seatClass.update({ + where: { id: IDS.seatClassLocal }, + data: { name: "Economy Regular" }, + }); + await prisma.seatClass.update({ + where: { id: IDS.seatClassIntl }, + data: { name: "Economy Regular Intl" }, + }); + + // Enabled payment methods — the portal pay page renders ONLY enabled PaymentMethod rows. + await prisma.paymentMethod.createMany({ + data: [ + { type: "WALLET", displayName: "Wallet", currency: "ETB", enabled: true, isDefault: true, sortOrder: 0 }, + { type: "TELEBIRR", displayName: "telebirr", currency: "ETB", enabled: true, sortOrder: 1 }, + ], + }); + + const departAt = sampleDepartAt(); + const arriveAt = new Date(departAt.getTime() + 4 * 3600_000); + + await prisma.train.create({ + data: { id: UI_IDS.train, number: "UI-100", name: "UI Test Express" }, + }); + + await prisma.trainSchedule.create({ + data: { + id: UI_IDS.schedule, + trainId: UI_IDS.train, + routeId: IDS.route, + originStationId: IDS.stationA, + destinationStationId: IDS.stationC, + departureAt: departAt, + arrivalAt: arriveAt, + durationMinutes: 240, + status: "SCHEDULED", + stopsCount: 3, + isPackageOnly: false, + }, + }); + + await prisma.tripStopTime.createMany({ + data: [ + { scheduleId: UI_IDS.schedule, stationId: IDS.stationA, sequence: 1, plannedDepartureAt: departAt, status: "OPEN" }, + { scheduleId: UI_IDS.schedule, stationId: IDS.stationB, sequence: 2, plannedDepartureAt: new Date(departAt.getTime() + 2 * 3600_000), status: "OPEN" }, + { scheduleId: UI_IDS.schedule, stationId: IDS.stationC, sequence: 3, plannedArrivalAt: arriveAt, status: "OPEN" }, + ], + }); + + // Enough seats that a full suite run (many bookings share one seeded DB, seats are not released + // between specs) never exhausts availability: 12 rows × 4 cols = 48 seats. + const SEAT_ROWS = 12; + await prisma.coach.create({ + data: { id: UI_IDS.coach, coachTypeId: IDS.coachType, number: "UI-C1", capacity: SEAT_ROWS * 4, sequence: 1, status: "ACTIVE" }, + }); + await prisma.coachAssignment.create({ + data: { scheduleId: UI_IDS.schedule, coachId: UI_IDS.coach, positionNumber: 1, isOperational: true }, + }); + await prisma.seat.createMany({ data: buildSeats(UI_IDS.coach, SEAT_ROWS) }); + + // Logged-in passenger with a funded wallet + loyalty (used by the portal storageState + WALLET pay). + await prisma.passenger.create({ data: { id: UI_IDS.passenger } }); + await prisma.walletAccount.create({ + data: { passengerId: UI_IDS.passenger, balanceMinor: 100_000_000 }, + }); + await prisma.loyaltyAccount.create({ + data: { passengerId: UI_IDS.passenger, pointsBalance: 500 }, + }); + + // Promotions (schema field names, NOT the backoffice UI names). Unique exact codes. + await prisma.promotion.createMany({ + data: [ + { title: "10% off", code: UI_IDS.promoValid, percentOff: 10, validUntil: new Date(Date.now() + 30 * 86400_000), active: true }, + { title: "Expired", code: UI_IDS.promoExpired, percentOff: 50, validUntil: new Date(Date.now() - 86400_000), active: true }, + ], + }); + + // One baggage allowance (for excess-baggage flows later). + await prisma.baggageAllowance.create({ + data: { seatClassId: IDS.seatClassLocal, maxWeightKg: 20, maxPiecesCount: 2, excessFeePerKg: 50 }, + }); + + // ── Return leg (C→A) for ROUND_TRIP (UA-6) ────────────────────────────────── + // Same train, same day, departs after the outbound arrives. Distances are symmetric + // (A=0km … C=250km) so the reverse leg prices the same as the outbound. + const returnDepart = new Date(departAt.getTime() + 8 * 3600_000); // 8h after outbound departs + const returnArrive = new Date(returnDepart.getTime() + 4 * 3600_000); + await prisma.trainSchedule.create({ + data: { + id: UI_IDS.returnSchedule, + trainId: UI_IDS.train, + routeId: IDS.route, + originStationId: IDS.stationC, + destinationStationId: IDS.stationA, + departureAt: returnDepart, + arrivalAt: returnArrive, + durationMinutes: 240, + status: "SCHEDULED", + stopsCount: 3, + isPackageOnly: false, + }, + }); + await prisma.tripStopTime.createMany({ + data: [ + { scheduleId: UI_IDS.returnSchedule, stationId: IDS.stationC, sequence: 1, plannedDepartureAt: returnDepart, status: "OPEN" }, + { scheduleId: UI_IDS.returnSchedule, stationId: IDS.stationB, sequence: 2, plannedDepartureAt: new Date(returnDepart.getTime() + 2 * 3600_000), status: "OPEN" }, + { scheduleId: UI_IDS.returnSchedule, stationId: IDS.stationA, sequence: 3, plannedArrivalAt: returnArrive, status: "OPEN" }, + ], + }); + await prisma.coach.create({ + data: { id: UI_IDS.returnCoach, coachTypeId: IDS.coachType, number: "UI-C2", capacity: 48, sequence: 1, status: "ACTIVE" }, + }); + await prisma.coachAssignment.create({ + data: { scheduleId: UI_IDS.returnSchedule, coachId: UI_IDS.returnCoach, positionNumber: 1, isOperational: true }, + }); + await prisma.seat.createMany({ data: buildSeats(UI_IDS.returnCoach, 12) }); +} + +/** Build `rows × 4` seats (cols A–D) for a coach. */ +function buildSeats(coachId: string, rows: number) { + const cols = ["A", "B", "C", "D"]; + const seats: Array<{ coachId: string; seatNumber: string; row: number; col: string; isWindow: boolean; isAisle: boolean }> = []; + for (let row = 1; row <= rows; row++) { + for (const col of cols) { + seats.push({ + coachId, + seatNumber: `${row}${col}`, + row, + col, + isWindow: col === "A" || col === "D", + isAisle: col === "B" || col === "C", + }); + } + } + return seats; +} + +// Standalone runner +if (require.main === module) { + (async () => { + const prisma = new PrismaClient(); + try { + await seedUi(prisma); + // eslint-disable-next-line no-console + console.log(`[seed-ui] done. Sample trip ${IDS.stationA}→${IDS.stationC} on ${sampleDepartDate()} (schedule ${UI_IDS.schedule}).`); + } finally { + await prisma.$disconnect(); + } + })(); +} diff --git a/apps/edr-passenger-web/portal/src/app/booking/payment/page.tsx b/apps/edr-passenger-web/portal/src/app/booking/payment/page.tsx index 4333e95e9..c03397fee 100644 --- a/apps/edr-passenger-web/portal/src/app/booking/payment/page.tsx +++ b/apps/edr-passenger-web/portal/src/app/booking/payment/page.tsx @@ -596,6 +596,7 @@ export default function PaymentPage() { return ( "} +{"type":"log","callId":"call@921","time":51918.957,"message":"attempting click action"} +{"type":"log","callId":"call@921","time":51918.974,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712347.jpeg","width":1280,"height":720,"timestamp":51920.69,"frameSwapWallTime":1784630712345.491} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712357.jpeg","width":1280,"height":720,"timestamp":51930.38,"frameSwapWallTime":1784630712355.0789} +{"type":"log","callId":"call@921","time":51933.649,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@921","time":51933.656,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@921","time":51933.782,"message":" done scrolling"} +{"type":"input","callId":"call@921","point":{"x":1141.5,"y":340},"inputSnapshot":"input@call@921"} +{"type":"frame-snapshot","snapshot":{"callId":"call@921","snapshotName":"input@call@921","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","frameId":"frame@f51847095d3ba047ce33f294c5bfa966","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=DJIBOUTIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[2,29]],["BODY",{"class":"font-sans antialiased"},[[2,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[2,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[2,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[2,264]],[[2,266]],[[2,268]],["BUTTON",{"__playwright_target__":"","data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[2,269]]]]]],[[2,283]]]]]]]]]]]],[[2,296]],[[1,11]]]],"viewport":{"width":1280,"height":720},"timestamp":51934.978,"wallTime":1784630712361,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@921","time":51935.757,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712380.jpeg","width":1280,"height":720,"timestamp":51953.732,"frameSwapWallTime":1784630712378.5579} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712388.jpeg","width":1280,"height":720,"timestamp":51961.937,"frameSwapWallTime":1784630712386.802} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712396.jpeg","width":1280,"height":720,"timestamp":51970.202,"frameSwapWallTime":1784630712395.03} +{"type":"log","callId":"call@921","time":51973.497,"message":" click action done"} +{"type":"log","callId":"call@921","time":51973.502,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@921","time":51973.76,"message":" navigations have finished"} +{"type":"after","callId":"call@921","endTime":51973.845,"afterSnapshot":"after@call@921"} +{"type":"frame-snapshot","snapshot":{"callId":"call@921","snapshotName":"after@call@921","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","frameId":"frame@f51847095d3ba047ce33f294c5bfa966","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=DJIBOUTIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[3,29]],["BODY",{"class":"font-sans antialiased"},[[3,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[3,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[3,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"fixed inset-0 z-[99] bg-black/50 backdrop-blur-sm"}],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},["DIV",{"class":"flex items-center justify-between px-6 py-5 border-b border-gray-100 dark:border-gray-800 flex-shrink-0"},["DIV",{},["H2",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"Choose Your Coach"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-3.5 h-3.5"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],["SPAN",{"class":"font-medium"},"UI-100"],["SPAN",{"class":"text-gray-400"},"·"],["SPAN",{},"Alpha"," → ","Charlie"]]],["BUTTON",{"type":"button","class":"w-10 h-10 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800 transition-all","aria-label":"Close"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-gray-300 dark:border-gray-600 group-hover:border-primary/50"}],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-gray-100 dark:bg-gray-700 group-hover:bg-primary/10"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-gray-600 dark:text-gray-400 group-hover:text-primary"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]],["DIV",{"class":"flex-1 min-w-0"},["DIV",{"class":"flex items-start justify-between gap-2 mb-2"},["DIV",{},["H3",{"class":"font-bold text-base text-gray-900 dark:text-white leading-tight"},"Standard Coach"]]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"From"],["SPAN",{"class":"text-2xl font-bold tracking-tight text-gray-900 dark:text-white"},"DJF 1350.00"]]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-200/60 dark:border-gray-700/60"},["DIV",{"class":"flex items-center justify-between mb-3"},["P",{"class":"text-xs font-bold text-gray-700 dark:text-gray-300 uppercase tracking-wider"},"Class Options"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"40"," seats left"]],["DIV",{"class":"space-y-2.5"},["DIV",{"class":"flex items-center justify-between py-2 px-3 rounded-lg bg-gray-50/80 dark:bg-gray-800/40"},["DIV",{"class":"flex items-center gap-2.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 text-gray-500 dark:text-gray-400"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],["DIV",{"class":"flex flex-col"},["SPAN",{"class":"text-sm font-medium text-gray-700 dark:text-gray-300"},"Economy Regular"],["SPAN",{"class":"text-[11px] font-medium text-gray-400 dark:text-gray-500"},"40 seats left"]]],["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-base font-bold tabular-nums text-gray-900 dark:text-white"},"1350.00"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium ml-1"},"DJF"]]]]],["P",{"class":"mt-4 pt-3 border-t border-gray-200/60 dark:border-gray-700/60 text-xs text-gray-400 dark:text-gray-500 italic text-center"},"Click to select this coach"]]]]]],["STYLE",{},"\n @keyframes drawer-slide-in{from{transform:translateX(100%)}to{transform:translateX(0)}}\n @keyframes fade-in-up{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}\n @keyframes scale-in{from{transform:scale(0)}to{transform:scale(1)}}\n "],[[3,218]],[[1,6]]]]]]]]],[[3,296]],[[2,11]]]],"viewport":{"width":1280,"height":720},"timestamp":51975.207,"wallTime":1784630712401,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@923","startTime":51976.036,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"coach-option\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@30","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","beforeSnapshot":"before@call@923"} +{"type":"frame-snapshot","snapshot":{"callId":"call@923","snapshotName":"before@call@923","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","frameId":"frame@f51847095d3ba047ce33f294c5bfa966","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=DJIBOUTIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[4,29]],["BODY",{"class":"font-sans antialiased"},[[4,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[4,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,0]],[[1,76]],[[1,78]],[[4,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[4,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[4,264]],[[4,266]],[[4,268]],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[4,269]]]]]],[[4,283]]]]]]]]]]]],[[4,296]],[[3,11]]]],"viewport":{"width":1280,"height":720},"timestamp":51976.898,"wallTime":1784630712403,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@923","time":51977.026,"message":"waiting for getByTestId('coach-option').first()"} +{"type":"log","callId":"call@923","time":51977.974,"message":" locator resolved to
"} +{"type":"log","callId":"call@923","time":51978.348,"message":"attempting click action"} +{"type":"log","callId":"call@923","time":51978.365,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@923","time":51995.996,"message":" element is not stable"} +{"type":"log","callId":"call@923","time":51995.999,"message":"retrying click action"} +{"type":"log","callId":"call@923","time":51996.009,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712423.jpeg","width":1280,"height":720,"timestamp":51996.812,"frameSwapWallTime":1784630712421.9001} +{"type":"log","callId":"call@923","time":52020.439,"message":" element is not stable"} +{"type":"log","callId":"call@923","time":52020.452,"message":"retrying click action"} +{"type":"log","callId":"call@923","time":52020.453,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712448.jpeg","width":1280,"height":720,"timestamp":52021.448,"frameSwapWallTime":1784630712446.507} +{"type":"log","callId":"call@923","time":52041.552,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712469.jpeg","width":1280,"height":720,"timestamp":52042.679,"frameSwapWallTime":1784630712467.666} +{"type":"log","callId":"call@923","time":52061.927,"message":" element is not stable"} +{"type":"log","callId":"call@923","time":52061.935,"message":"retrying click action"} +{"type":"log","callId":"call@923","time":52061.936,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712489.jpeg","width":1280,"height":720,"timestamp":52062.806,"frameSwapWallTime":1784630712487.7861} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712511.jpeg","width":1280,"height":720,"timestamp":52084.412,"frameSwapWallTime":1784630712509.327} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712531.jpeg","width":1280,"height":720,"timestamp":52104.621,"frameSwapWallTime":1784630712529.8281} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712553.jpeg","width":1280,"height":720,"timestamp":52126.641,"frameSwapWallTime":1784630712551.5972} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712574.jpeg","width":1280,"height":720,"timestamp":52147.552,"frameSwapWallTime":1784630712572.685} +{"type":"log","callId":"call@923","time":52164.402,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712596.jpeg","width":1280,"height":720,"timestamp":52169.71,"frameSwapWallTime":1784630712594.796} +{"type":"log","callId":"call@923","time":52189.941,"message":" element is not stable"} +{"type":"log","callId":"call@923","time":52189.951,"message":"retrying click action"} +{"type":"log","callId":"call@923","time":52189.952,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712617.jpeg","width":1280,"height":720,"timestamp":52191.084,"frameSwapWallTime":1784630712616.129} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712639.jpeg","width":1280,"height":720,"timestamp":52212.819,"frameSwapWallTime":1784630712637.8} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712661.jpeg","width":1280,"height":720,"timestamp":52234.334,"frameSwapWallTime":1784630712659.3562} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712682.jpeg","width":1280,"height":720,"timestamp":52255.31,"frameSwapWallTime":1784630712680.347} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712703.jpeg","width":1280,"height":720,"timestamp":52276.477,"frameSwapWallTime":1784630712701.571} +{"type":"log","callId":"call@923","time":52291.622,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@923","time":52296.65,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@923","time":52296.658,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@923","time":52297.033,"message":" done scrolling"} +{"type":"input","callId":"call@923","point":{"x":330.66,"y":246.25},"inputSnapshot":"input@call@923"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712724.jpeg","width":1280,"height":720,"timestamp":52297.682,"frameSwapWallTime":1784630712722.8} +{"type":"frame-snapshot","snapshot":{"callId":"call@923","snapshotName":"input@call@923","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","frameId":"frame@f51847095d3ba047ce33f294c5bfa966","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=DJIBOUTIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[5,29]],["BODY",{"class":"font-sans antialiased"},[[5,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[5,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[2,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,26]],[[2,72]]]]]],[[2,78]],[[5,218]],[[1,6]]]]]]]]],[[5,296]],[[4,11]]]],"viewport":{"width":1280,"height":720},"timestamp":52298.447,"wallTime":1784630712724,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@923","time":52299.091,"message":" performing click action"} +{"type":"log","callId":"call@923","time":52304.744,"message":" click action done"} +{"type":"log","callId":"call@923","time":52304.757,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@923","time":52304.94,"message":" navigations have finished"} +{"type":"after","callId":"call@923","endTime":52304.981,"afterSnapshot":"after@call@923"} +{"type":"frame-snapshot","snapshot":{"callId":"call@923","snapshotName":"after@call@923","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","frameId":"frame@f51847095d3ba047ce33f294c5bfa966","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=DJIBOUTIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[6,29]],["BODY",{"class":"font-sans antialiased"},[[6,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[6,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[6,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[3,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[3,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-primary"},["SPAN",{"class":"w-2.5 h-2.5 rounded-full bg-primary animate-scale-in"}]],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-primary/15 dark:bg-primary/25 shadow-inner"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-primary"},[[3,27]],[[3,28]],[[3,29]],[[3,30]]]],["DIV",{"class":"flex-1 min-w-0"},[[3,36]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},[[3,38]],["SPAN",{"class":"text-2xl font-bold tracking-tight text-primary"},[[3,39]]]]]]],[[3,69]],["BUTTON",{"type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},["SPAN",{},"Continue to Passenger Details"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-right w-4 h-4"},["path",{"d":"M5 12h14"}],["path",{"d":"m12 5 7 7-7 7"}]]]]]]]],[[3,78]],[[6,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[6,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[6,264]],[[6,266]],[[6,268]],["P",{"class":"text-xs text-primary font-semibold mb-2"},"Standard Coach"," selected"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Change"]]]],[[6,283]]]]]]]]]]]],[[6,296]],[[5,11]]]],"viewport":{"width":1280,"height":720},"timestamp":52305.855,"wallTime":1784630712732,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@925","startTime":52306.648,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"continue-passenger-details\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@31","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","beforeSnapshot":"before@call@925"} +{"type":"frame-snapshot","snapshot":{"callId":"call@925","snapshotName":"before@call@925","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","frameId":"frame@f51847095d3ba047ce33f294c5bfa966","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=DJIBOUTIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[7,29]],["BODY",{"class":"font-sans antialiased"},[[7,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[7,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[7,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[4,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[1,1]],[[1,15]]]]]],[[4,78]],[[7,218]],[[1,30]]]]]]]]],[[7,296]],[[6,11]]]],"viewport":{"width":1280,"height":720},"timestamp":52307.346,"wallTime":1784630712733,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@925","time":52307.446,"message":"waiting for getByTestId('continue-passenger-details').first()"} +{"type":"log","callId":"call@925","time":52308.684,"message":" locator resolved to "} +{"type":"log","callId":"call@925","time":52309.256,"message":"attempting click action"} +{"type":"log","callId":"call@925","time":52309.271,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712745.jpeg","width":1280,"height":720,"timestamp":52318.482,"frameSwapWallTime":1784630712743.418} +{"type":"log","callId":"call@925","time":52338.073,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@925","time":52338.089,"message":" scrolling into view if needed"} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712764.jpeg","width":1280,"height":720,"timestamp":52338.194,"frameSwapWallTime":1784630712762.893} +{"type":"log","callId":"call@925","time":52338.486,"message":" done scrolling"} +{"type":"input","callId":"call@925","point":{"x":330.66,"y":346.5},"inputSnapshot":"input@call@925"} +{"type":"frame-snapshot","snapshot":{"callId":"call@925","snapshotName":"input@call@925","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","frameId":"frame@f51847095d3ba047ce33f294c5bfa966","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=DJIBOUTIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[8,29]],["BODY",{"class":"font-sans antialiased"},[[8,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[8,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[8,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[5,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,1]],["DIV",{"class":"flex flex-col"},[[2,8]],[[5,69]],["BUTTON",{"__playwright_target__":"","type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},[[2,10]],[[2,13]]]]]]]],[[5,78]],[[8,218]],[[2,30]]]]]]]]],[[8,296]],[[7,11]]]],"viewport":{"width":1280,"height":720},"timestamp":52339.605,"wallTime":1784630712766,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@925","time":52340.229,"message":" performing click action"} +{"type":"log","callId":"call@925","time":52345.971,"message":" click action done"} +{"type":"log","callId":"call@925","time":52345.977,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@925","time":52346.257,"message":" navigations have finished"} +{"type":"after","callId":"call@925","endTime":52346.331,"afterSnapshot":"after@call@925"} +{"type":"frame-snapshot","snapshot":{"callId":"call@925","snapshotName":"after@call@925","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","frameId":"frame@f51847095d3ba047ce33f294c5bfa966","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=DJIBOUTIAN","doctype":"html","html":[[1,14]],"viewport":{"width":1280,"height":720},"timestamp":52347.001,"wallTime":1784630712773,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@927","startTime":52347.73,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"815edb4134dd3ccc3f12ab9483cf50e7","phase":"before","event":""},"stepId":"pw:api@32","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f"} +{"type":"log","callId":"call@927","time":52347.752,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712784.jpeg","width":1280,"height":720,"timestamp":52357.598,"frameSwapWallTime":1784630712782.636} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712804.jpeg","width":1280,"height":720,"timestamp":52377.857,"frameSwapWallTime":1784630712802.823} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712835.jpeg","width":1280,"height":720,"timestamp":52408.769,"frameSwapWallTime":1784630712823.6848} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712846.jpeg","width":1280,"height":720,"timestamp":52420.154,"frameSwapWallTime":1784630712844.95} +{"type":"screencast-frame","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","sha1":"page@5087d7ebeed30296a308e8b80fe89c6f-1784630712879.jpeg","width":1280,"height":720,"timestamp":52453.026,"frameSwapWallTime":1784630712873.885} +{"type":"log","callId":"call@927","time":52453.287,"message":" navigated to \"http://localhost:5174/booking/auth-check\""} +{"type":"after","callId":"call@927","endTime":52453.308} +{"type":"before","callId":"call@932","startTime":52453.38,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"f8d9e422e4d217c1290f614d179dacf2","phase":"before","event":""},"stepId":"pw:api@33","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f"} +{"type":"log","callId":"call@932","time":52453.436,"message":"waiting for navigation until \"load\""} +{"type":"before","callId":"call@935","startTime":52453.474,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue as guest/i]","strict":true,"timeout":15000},"stepId":"pw:api@34","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","beforeSnapshot":"before@call@935"} +{"type":"frame-snapshot","snapshot":{"callId":"call@935","snapshotName":"before@call@935","pageId":"page@5087d7ebeed30296a308e8b80fe89c6f","frameId":"frame@f51847095d3ba047ce33f294c5bfa966","frameUrl":"http://localhost:5174/booking/auth-check","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[10,0]],[[10,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[10,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[10,36]],[[10,43]],[[10,47]],[[10,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[10,55]],["OL",{"class":"space-y-1"},[[10,61]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[10,64]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[10,67]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[10,69]]]],[[10,76]],[[10,81]],[[10,86]],[[10,91]]]]],[[10,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[10,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[10,132]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[10,139]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[10,142]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[10,143]]]],[[10,146]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[10,148]]]],[[10,159]],[[10,168]],[[10,177]],[[10,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center px-4"},["DIV",{"class":"w-full max-w-sm"},["H1",{"class":"text-2xl font-bold text-center text-gray-900 dark:text-gray-100 mb-1"},"Continue your booking"],["P",{"class":"text-sm text-center text-gray-500 dark:text-gray-400 mb-8"},"Choose how you'd like to proceed"],["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"relative"},["BUTTON",{"class":"w-full flex items-center justify-center gap-2.5 px-5 py-3.5 bg-primary hover:bg-primary/90 active:scale-[0.98] text-white font-semibold rounded-xl transition-all shadow-md shadow-primary/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-user-plus w-5 h-5 flex-shrink-0"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["line",{"x1":"19","x2":"19","y1":"8","y2":"14"}],["line",{"x1":"22","x2":"16","y1":"11","y2":"11"}]],"Continue as guest"],["DIV",{"role":"tooltip","class":"absolute bottom-[calc(100%+8px)] left-1/2 -translate-x-1/2 w-52 bg-gray-900 dark:bg-gray-700 text-white text-xs rounded-lg px-3 py-2.5 shadow-xl pointer-events-none transition-all duration-150 z-50 opacity-0 translate-y-1"},["UL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"No account required"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Quick checkout"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Create account later (optional)"]],["DIV",{"class":"absolute top-full left-1/2 -translate-x-1/2 border-4 border-transparent border-t-gray-900 dark:border-t-gray-700"}]]]],["DIV",{"class":"mt-8 text-center"},["BUTTON",{"class":"inline-flex items-center gap-1.5 text-sm text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back to results"]]]]]]]],[[10,296]],[[9,11]]]],"viewport":{"width":1280,"height":720},"timestamp":52454.848,"wallTime":1784630712880,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} diff --git a/test-results/.playwright-artifacts-0/traces/5061af5a0cc06b625bd4-a6f45a78328343399c82-recording3.network b/test-results/.playwright-artifacts-0/traces/5061af5a0cc06b625bd4-a6f45a78328343399c82-recording3.network new file mode 100644 index 000000000..333bb8038 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/5061af5a0cc06b625bd4-a6f45a78328343399c82-recording3.network @@ -0,0 +1,167 @@ +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:42.924Z","time":1.71,"request":{"method":"GET","url":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"image"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"url","value":"/edr-logo.png"},{"name":"w","value":"256"},{"name":"q","value":"75"}],"headersSize":767,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"public, max-age=0, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Disposition","value":"inline; filename=\"edr-logo.webp\""},{"name":"Content-Length","value":"5926"},{"name":"Content-Security-Policy","value":"script-src 'none'; frame-src 'none'; sandbox;"},{"name":"Content-Type","value":"image/webp"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Vary","value":"Accept"},{"name":"X-Nextjs-Cache","value":"HIT"}],"content":{"size":5926,"mimeType":"image/webp","compression":0,"_sha1":"d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp"},"headersSize":416,"bodySize":5926,"redirectURL":"","_transferSize":6342},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.291,"receive":0.419},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22499.525,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:42.904Z","time":20.173000000000002,"request":{"method":"GET","url":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-Fetch-Dest","value":"document"},{"name":"Sec-Fetch-Mode","value":"navigate"},{"name":"Sec-Fetch-Site","value":"none"},{"name":"Sec-Fetch-User","value":"?1"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"origin","value":"00000000-0000-4000-8000-000000000020"},{"name":"destination","value":"00000000-0000-4000-8000-000000000022"},{"name":"date","value":"2026-07-23"},{"name":"tripType","value":"ONE_WAY"},{"name":"adults","value":"1"},{"name":"children","value":"0"},{"name":"nationality","value":"ETHIOPIAN"}],"headersSize":673,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/html; charset=utf-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"X-Powered-By","value":"Next.js"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":51421,"mimeType":"text/html; charset=utf-8","compression":41209,"_sha1":"bf8103cbde07afcc93181c858345d17a365a2ca8.html"},"headersSize":765,"bodySize":10212,"redirectURL":"","_transferSize":10977},"cache":{},"timings":{"dns":0.008,"connect":0.282,"ssl":1.37,"send":0,"wait":17.247,"receive":1.266},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22478.253,"_resourceType":"document","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:42.924Z","time":4.853,"request":{"method":"GET","url":"http://localhost:5174/_next/static/css/app/layout.css?v=1784630682911","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"style"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630682911"}],"headersSize":741,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/css; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"W/\"184e1-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":99553,"mimeType":"text/css; charset=UTF-8","compression":84302,"_sha1":"37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css"},"headersSize":356,"bodySize":15251,"redirectURL":"","_transferSize":15607},"cache":{},"timings":{"dns":0.005,"connect":0.251,"ssl":1.283,"send":0,"wait":2.177,"receive":1.137},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22499.591,"_resourceType":"stylesheet","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:42.924Z","time":4.275,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/webpack.js?v=1784630682911","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630682911"}],"headersSize":726,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"W/\"dc1e-19f8377166c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":369,"bodySize":10547,"redirectURL":"","_transferSize":10916},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.681,"receive":2.594},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22499.611,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:42.924Z","time":8.448,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app-pages-internals.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":738,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"W/\"256bc-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":33746,"redirectURL":"","_transferSize":34116},"cache":{},"timings":{"dns":0.001,"connect":0.3,"ssl":1.326,"send":0,"wait":1.51,"receive":5.311},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22499.642,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:42.924Z","time":9.543,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":737,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"W/\"2c9d3-19f8376f06f\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":51283,"redirectURL":"","_transferSize":51653},"cache":{},"timings":{"dns":0,"connect":0.08,"ssl":1.103,"send":0,"wait":1.907,"receive":6.453},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22499.669,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:42.924Z","time":39.785,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":729,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"W/\"1c4c9e-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":434806,"redirectURL":"","_transferSize":435177},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.796,"receive":36.989},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22499.683,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:42.924Z","time":42.37,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/results/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":743,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"W/\"20cb55-19f8376f071\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":479485,"redirectURL":"","_transferSize":479856},"cache":{},"timings":{"dns":0.002,"connect":0.244,"ssl":1.268,"send":0,"wait":2.038,"receive":38.818},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22499.656,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:42.924Z","time":110.907,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/main-app.js?v=1784630682911","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630682911"}],"headersSize":727,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"W/\"5ec9be-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":1354462,"redirectURL":"","_transferSize":1354833},"cache":{},"timings":{"dns":0.002,"connect":0.356,"ssl":1.384,"send":0,"wait":1.874,"receive":107.291},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22499.628,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.358Z","time":32.664,"request":{"method":"POST","url":"http://localhost:4000/search","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"220"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":883,"bodySize":220,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"9b24d025b50a9c3ff3db8b177a92ea96d434dcc8.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1599"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:43 GMT"},{"name":"ETag","value":"W/\"63f-p+FgCcIJwjP8b7eWAZ80p8G82fM\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":1599,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"a7e16009c209c233fc6fb796019f34a7c1bcd9f3.json"},"headersSize":989,"bodySize":1599,"redirectURL":"","_transferSize":2588},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":30.693,"receive":1.971},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22996.035,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.358Z","time":12.708,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:43 GMT"},{"name":"ETag","value":"W/\"229-FdG6ujh7RChPIFBSLl90kChhUGk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"15d1baba387b44284f2050522e5f749028615069.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.586,"receive":2.122},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22995.952,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.358Z","time":7.916,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-FdG6ujh7RChPIFBSLl90kChhUGk\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:43 GMT"},{"name":"ETag","value":"W/\"229-47IZqaK2R/j4F2Jxyv/MKZsVQXk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"e3b219a9a2b647f8f8176271caffcc299b154179.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.823,"receive":2.093},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22995.977,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.355Z","time":15.621,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_features_support_SupportWidget_tsx.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":776,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:43 GMT"},{"name":"ETag","value":"W/\"f9fd6-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":233760,"redirectURL":"","_transferSize":234130},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.823,"receive":13.798},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22995.893,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.466Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":-1,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"WebSocket is closed before the connection is established."},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23039.635,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.452Z","time":6.048,"request":{"method":"GET","url":"http://localhost:4000/support/device/unread-count?deviceId=09aab790-cd4c-4d72-8055-32efc70297e2","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"deviceId","value":"09aab790-cd4c-4d72-8055-32efc70297e2"}],"headersSize":850,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"80"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:43 GMT"},{"name":"ETag","value":"W/\"50-/2q+Ze4TMQk2xGsG5uYxme9Ie8Y\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":80,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ff6abe65ee13310936c46b06e6e63199ef487bc6.json"},"headersSize":981,"bodySize":80,"redirectURL":"","_transferSize":1061},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.657,"receive":1.391},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23039.785,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.927Z","time":8.529,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=br3vi","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22results%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/results"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"br3vi"}],"headersSize":1017,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:43 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"a5a2bb1a5b49246f969011b22df0d171d298ab95.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.651,"receive":0.878},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23503.111,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.946Z","time":20.724,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=n2i48","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"n2i48"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:43 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":20.724,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23527.599,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.975Z","time":17.895,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/auth-check/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":746,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:43 GMT"},{"name":"ETag","value":"W/\"ed732-19f8376f656\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":254272,"redirectURL":"","_transferSize":254642},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.278,"receive":15.617},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23549.598,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:44.024Z","time":9.986,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=3ko94","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/auth-check"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ko94"}],"headersSize":858,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:44 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"113ef7bc1ddbb9932f87ab52b1c6c6d273a48c10.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.233,"receive":0.753},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23605.095,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:44.026Z","time":10.584,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-47IZqaK2R/j4F2Jxyv/MKZsVQXk\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:44 GMT"},{"name":"ETag","value":"W/\"229-lEGccIuY+cIpx1rUTtpBHgSOxRg\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"94419c708b98f9c229c75ad44eda411e048ec518.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.161,"receive":0.423},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23605.125,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:44.026Z","time":8.276,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-lEGccIuY+cIpx1rUTtpBHgSOxRg\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:44 GMT"},{"name":"ETag","value":"W/\"229-9QRNUYoNjouuClLjZPkY3CvDQJo\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"f5044d518a0d8e8bae0a52e364f918dc2bc3409a.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.897,"receive":0.379},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23606.228,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:44.038Z","time":12.725,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=xc7gl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"xc7gl"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:44 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.725,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23612.223,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:44.052Z","time":33.041,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/passengers/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":581,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:44 GMT"},{"name":"ETag","value":"W/\"216ea9-19f8376f7db\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":478257,"redirectURL":"","_transferSize":478628},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.756,"receive":31.285},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23626.216,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:44.145Z","time":8.033,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":842,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:44 GMT"},{"name":"ETag","value":"W/\"90-uY1nao0aETKRF6pU80Ye00SidPY\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"b98d676a8d1a11329117aa54f3461ed344a274f6.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.702,"receive":1.331},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23748.903,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:44.145Z","time":6.162,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"90-uY1nao0aETKRF6pU80Ye00SidPY\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":893,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:44 GMT"},{"name":"ETag","value":"W/\"90-B7Y1Fjl3wrTAACCopAzYRQcsCg8\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"07b635163977c2b4c00020a8a40cd845072c0a0f.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.803,"receive":1.359},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23748.928,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:45.442Z","time":6.542999999999999,"request":{"method":"POST","url":"http://localhost:4000/passengers/save-details","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"349"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":900,"bodySize":349,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"2a6a91497b3279de916b94656cd8aa795910cfc9.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"368"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:45 GMT"},{"name":"ETag","value":"W/\"170-0w++WpmzuR2yaMf52zPmGTQ6eU8\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":368,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"d30fbe5a99b3b91db268c7f9db33e619343a794f.json"},"headersSize":988,"bodySize":368,"redirectURL":"","_transferSize":1356},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.188,"receive":1.355},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":25017.195,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:45.450Z","time":9.635,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=3ufbl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/passengers"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ufbl"}],"headersSize":853,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:45 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":111,"mimeType":"text/x-component","compression":0,"_sha1":"3ba650e38c01b7f4dba7c59a8ac235a4f5802b22.htc"},"headersSize":734,"bodySize":119,"redirectURL":"","_transferSize":853},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.919,"receive":0.716},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":25025.335,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:45.461Z","time":9.154,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=1ivgy","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1ivgy"}],"headersSize":794,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:45 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":4108,"mimeType":"text/x-component","compression":2836,"_sha1":"1f7797283232c4e95279bd55421c27d82e746edc.htc"},"headersSize":734,"bodySize":1272,"redirectURL":"","_transferSize":2006},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.384,"receive":0.77},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":25035.568,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:45.471Z","time":30.887999999999998,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/seats/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":576,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:45 GMT"},{"name":"ETag","value":"W/\"1f96a9-19f8376ffca\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:21 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":484983,"redirectURL":"","_transferSize":485354},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.58,"receive":29.308},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":25044.998,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:45.557Z","time":13.063,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101?coachTypeId=00000000-0000-4000-8000-000000000001&journeyDirection=ONE_WAY&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"coachTypeId","value":"00000000-0000-4000-8000-000000000001"},{"name":"journeyDirection","value":"ONE_WAY"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"}],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9436"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:45 GMT"},{"name":"ETag","value":"W/\"24dc-n9cI+xd0F8wCo1y1QSQolCXAinU\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9436,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"9fd708fb177417cc02a35cb54124289425c08a75.json"},"headersSize":985,"bodySize":9436,"redirectURL":"","_transferSize":10421},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.832,"receive":1.231},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":25158.053,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:46.421Z","time":22.533,"request":{"method":"POST","url":"http://localhost:4000/seats/hold","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"304"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":304,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"d0c065539ba437482410513259e75bb28435950d.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"941"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:46 GMT"},{"name":"ETag","value":"W/\"3ad-MZOWVvqtu07efIvJlLttYyJhiHQ\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":941,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"31939656faadbb4ede7c8bc994bb6d6322618874.json"},"headersSize":988,"bodySize":941,"redirectURL":"","_transferSize":1929},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":21.21,"receive":1.323},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":25996.63,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:46.447Z","time":9.698,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=11o05","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/seats"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"11o05"}],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:46 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":113,"mimeType":"text/x-component","compression":0,"_sha1":"efc18e093e9560b1f05c3bd786098516c99407f5.htc"},"headersSize":734,"bodySize":120,"redirectURL":"","_transferSize":854},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.855,"receive":0.843},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":26024.927,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:46.458Z","time":7.961,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=dcucj","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"dcucj"}],"headersSize":791,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:46 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":4115,"mimeType":"text/x-component","compression":2840,"_sha1":"a4041655d9c311f5be784a496b2be08d838e2d5c.htc"},"headersSize":734,"bodySize":1275,"redirectURL":"","_transferSize":2009},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.197,"receive":0.764},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":26032.62,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:46.467Z","time":26.616,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/review/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":572,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:46 GMT"},{"name":"ETag","value":"W/\"1b5bdb-19f8377031c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:22 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":413299,"redirectURL":"","_transferSize":413670},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.614,"receive":25.002},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":26040.806,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:46.542Z","time":7.024,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:46 GMT"},{"name":"ETag","value":"W/\"2f7-jfz9mYDgV1P/iTKM15pM2Xu2MJM\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"8dfcfd9980e05753ff89328cd79a4cd97bb63093.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.215,"receive":1.809},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":26137.618,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:46.542Z","time":20.312,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9431"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:46 GMT"},{"name":"ETag","value":"W/\"24d7-ZTuDka8mAdgOJa+gmfHfPpDtgvA\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9431,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"653b8391af2601d80e25afa099f1df3e90ed82f0.json"},"headersSize":985,"bodySize":9431,"redirectURL":"","_transferSize":10416},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":18.562,"receive":1.75},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":26137.587,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:46.542Z","time":20.744,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"24d7-ZTuDka8mAdgOJa+gmfHfPpDtgvA\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":926,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9431"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:46 GMT"},{"name":"ETag","value":"W/\"24d7-2WJ6HbXDFfMezyA1E4n0035kzEM\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9431,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"d9627a1db5c315f31ecf20351389f4d37e64cc43.json"},"headersSize":985,"bodySize":9431,"redirectURL":"","_transferSize":10416},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":19.065,"receive":1.679},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":26137.638,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:46.558Z","time":36.665,"request":{"method":"GET","url":"http://localhost:4000/search/fare-breakdown?scheduleId=00000000-0000-4000-8000-000000000101&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022&passengers=%5B%7B%22passengerName%22%3A%22Adult+1%22%2C%22dateOfBirth%22%3A%221990-06-15%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000010%22%2C%22nationality%22%3A%22ETHIOPIAN%22%7D%5D&displayCurrency=ETB","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"scheduleId","value":"00000000-0000-4000-8000-000000000101"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"},{"name":"passengers","value":"[{\"passengerName\":\"Adult 1\",\"dateOfBirth\":\"1990-06-15\",\"seatClassId\":\"00000000-0000-4000-8000-000000000010\",\"nationality\":\"ETHIOPIAN\"}]"},{"name":"displayCurrency","value":"ETB"}],"headersSize":844,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"720"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:46 GMT"},{"name":"ETag","value":"W/\"2d0-ykwR7Rfcmjs+9UdTsd635GKG0t8\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":720,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ca4c11ed17dc9a3b3ef54753b1deb7e46286d2df.json"},"headersSize":983,"bodySize":720,"redirectURL":"","_transferSize":1703},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":35.358,"receive":1.307},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":26138.002,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.420Z","time":4.684,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"2f7-jfz9mYDgV1P/iTKM15pM2Xu2MJM\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"2f7-MAxK5y7i761V6RgjV6wY/3gV9GY\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"300c4ae72ee2efad55e9182357ac18ff7815f466.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.242,"receive":0.442},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":26994.51,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.428Z","time":48.618,"request":{"method":"POST","url":"http://localhost:4000/bookings","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"661"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":885,"bodySize":661,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"0d4d9365e6fc1f0f79f00644305854cec0791060.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"3536"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"dd0-vofgAHyqZ9pfdlLCnX0yFCMNPqg\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":3536,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"be87e0007caa67da5f7652c29d7d3214230d3ea8.json"},"headersSize":989,"bodySize":3536,"redirectURL":"","_transferSize":4525},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":47.325,"receive":1.293},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27002.5,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.579Z","time":6.666,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=1uobt","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/review"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1uobt"}],"headersSize":843,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":115,"mimeType":"text/x-component","compression":0,"_sha1":"de07c86cc64bda73e654d27a199f6610c0e4ebad.htc"},"headersSize":734,"bodySize":116,"redirectURL":"","_transferSize":850},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.955,"receive":0.711},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27153.443,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.587Z","time":6.854,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=rvb09","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22payment%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"rvb09"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.854,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27161.688,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.595Z","time":27.727,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/payment/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":574,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"1c5af1-19f83770767\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:23 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":435498,"redirectURL":"","_transferSize":435869},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.68,"receive":26.047},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27169.693,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.673Z","time":7.475,"request":{"method":"GET","url":"http://localhost:4000/payments/methods","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"593"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"251-VD9DM3cgRxUEZFwlc9SVa49EpkA\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":593,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"543f43337720471504645c2573d4956b8f44a640.json"},"headersSize":983,"bodySize":593,"redirectURL":"","_transferSize":1576},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.132,"receive":1.343},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27269.328,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:47.705Z","time":26.74199999999837,"request":{"method":"POST","url":"http://localhost:4000/internal/payments/mark-paid","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"content-type","value":"application/json"},{"name":"content-length","value":"500"}],"queryString":[],"headersSize":-1,"bodySize":500,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"09dfc1a17ebbc0cdea60b7acd5c4d4e29afa6d9b.json"}},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"109"},{"name":"ETag","value":"W/\"6d-0umrO7dNdPgdcy7+SHfU132lhCI\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":109,"mimeType":"application/json; charset=utf-8","_sha1":"d2e9ab3bb74d74f81d732efe4877d4d77da58422.json"},"headersSize":-1,"bodySize":109,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":10.45600000000195,"wait":9.537999999996828,"receive":0.8930000000000291,"dns":6.650000000001455,"connect":9.661000000000058,"ssl":-1,"blocked":-1},"_monotonicTime":27278.848,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.413Z","time":0.2021484375,"request":{"method":"GET","url":"ws://localhost:5174/_next/webpack-hmr","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"/kHVHuOzLoddw/ViLWXkZQ=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[],"headersSize":483,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Sec-WebSocket-Accept","value":"kBFTdblVeGrUwMQ738B4DAHOtU4="},{"name":"Connection","value":"Upgrade"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"9b4e558ddb9eb2ac20b433985e603f35.jsonl"},"headersSize":129,"bodySize":-1,"redirectURL":"","_transferSize":291},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":22997.272,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:43.476Z","time":0.73193359375,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"hvI8lXGK8H1a0c/Gj8nlMA=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Sec-WebSocket-Accept","value":"7MxSCwUXKlIuwISVEKBezk/t0R8="},{"name":"Connection","value":"Upgrade"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Vary","value":"Origin"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"497125fd4dbe44d69772d5b9d26e1e54.jsonl"},"headersSize":235,"bodySize":-1,"redirectURL":"","_transferSize":410},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":23049.929,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.749Z","time":1.391,"request":{"method":"GET","url":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"If-None-Match","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"image"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"url","value":"/edr-logo.png"},{"name":"w","value":"256"},{"name":"q","value":"75"}],"headersSize":-1,"bodySize":0},"response":{"status":304,"statusText":"Not Modified","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"public, max-age=0, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Vary","value":"Accept"}],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.117,"receive":0.274},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27323.745,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.729Z","time":18.34,"request":{"method":"GET","url":"http://localhost:5174/booking/confirmation","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-Fetch-Dest","value":"document"},{"name":"Sec-Fetch-Mode","value":"navigate"},{"name":"Sec-Fetch-Site","value":"none"},{"name":"Sec-Fetch-User","value":"?1"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":678,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/html; charset=utf-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"X-Powered-By","value":"Next.js"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":29574,"mimeType":"text/html; charset=utf-8","compression":21523,"_sha1":"3d4f6df6f6a33998487940390a9be224597cadc4.html"},"headersSize":765,"bodySize":8051,"redirectURL":"","_transferSize":8816},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":16.743,"receive":1.597},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27302.891,"_resourceType":"document","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.749Z","time":3.0829999999999997,"request":{"method":"GET","url":"http://localhost:5174/_next/static/css/app/layout.css?v=1784630687736","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"style"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630687736"}],"headersSize":578,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/css; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"184e1-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":99553,"mimeType":"text/css; charset=UTF-8","compression":84302,"_sha1":"37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css"},"headersSize":356,"bodySize":15251,"redirectURL":"","_transferSize":15607},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.082,"receive":1.001},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27323.778,"_resourceType":"stylesheet","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.749Z","time":4.239,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/webpack.js?v=1784630687736","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630687736"}],"headersSize":563,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"dc1e-19f8377166c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":369,"bodySize":10547,"redirectURL":"","_transferSize":10916},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.138,"receive":2.101},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27323.801,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.749Z","time":6.97,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app-pages-internals.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":575,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"256bc-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":33746,"redirectURL":"","_transferSize":34116},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.795,"receive":5.175},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27323.972,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.749Z","time":8.848,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":574,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"2c9d3-19f8376f06f\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":51283,"redirectURL":"","_transferSize":51653},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.725,"receive":6.123},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27324.098,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.749Z","time":34.550999999999995,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/confirmation/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":585,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"1b9b35-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":425290,"redirectURL":"","_transferSize":425661},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.053,"receive":32.498},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27324.034,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.749Z","time":36.648,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":566,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"1c4c9e-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":434806,"redirectURL":"","_transferSize":435177},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.198,"receive":33.45},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27324.157,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:47.749Z","time":105.899,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/main-app.js?v=1784630687736","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630687736"}],"headersSize":564,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"ETag","value":"W/\"5ec9be-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":1354462,"redirectURL":"","_transferSize":1354833},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.694,"receive":103.205},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27323.933,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.188Z","time":-1,"request":{"method":"GET","url":"http://localhost:5174/","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27788.834,"_resourceType":"document"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.219Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":-1,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"WebSocket is closed before the connection is established."},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27792.817,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.200Z","time":-1,"request":{"method":"GET","url":"http://localhost:4000/support/device/unread-count?deviceId=09aab790-cd4c-4d72-8055-32efc70297e2","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"sec-ch-ua-platform","value":"\"Windows\""},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Accept-Language","value":"en-US"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"}],"queryString":[{"name":"deviceId","value":"09aab790-cd4c-4d72-8055-32efc70297e2"}],"headersSize":-1,"bodySize":0},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27793,"_resourceType":"xhr"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.195Z","time":-1,"request":{"method":"GET","url":"http://localhost:4000/payments/intents/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"sec-ch-ua-platform","value":"\"Windows\""},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Accept-Language","value":"en-US"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27792.503,"_resourceType":"xhr"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.194Z","time":0.239990234375,"request":{"method":"GET","url":"ws://localhost:5174/_next/webpack-hmr","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"dzYDynYWdEWstdGaR9cMHg=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[],"headersSize":483,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Sec-WebSocket-Accept","value":"5dPnLwvBP8ArHxrYIDGPG+bt+mg="},{"name":"Connection","value":"Upgrade"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"bc3355add9b60b188f5130f55571e8f5.jsonl"},"headersSize":129,"bodySize":-1,"redirectURL":"","_transferSize":291},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27791.004,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.222Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":-1,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27795.932,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.142Z","time":11.385,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-9QRNUYoNjouuClLjZPkY3CvDQJo\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"229-7Iwe+euZujJs5aPf+jZbpWXFS7c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":-1,"mimeType":"application/json; charset=utf-8","compression":0},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.591,"receive":0.794},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27789.121,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.142Z","time":4.987,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-7Iwe+euZujJs5aPf+jZbpWXFS7c\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"229-FLn5Z85hCQM16KM4mV008J3zMQo\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":-1,"mimeType":"application/json; charset=utf-8","compression":0},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.548,"receive":0.439},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27790.117,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.142Z","time":14.913,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":868,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1234"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"4d2-A4TRAXfFPaoKAVxwR/PbPqZI8XE\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":-1,"mimeType":"application/json; charset=utf-8","compression":0},"headersSize":984,"bodySize":1234,"redirectURL":"","_transferSize":2218},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.186,"receive":1.727},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27790.141,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.138Z","time":15.114999999999998,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_features_support_SupportWidget_tsx.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":613,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"f9fd6-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":233760,"redirectURL":"","_transferSize":234130},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.351,"receive":13.764},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27789.086,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.132Z","time":57.079,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_lib_generate-voucher_ts.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":602,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"23425a-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":653430,"redirectURL":"","_transferSize":653801},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.929,"receive":55.15},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27788.104,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.222Z","time":4.402,"request":{"method":"GET","url":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"If-None-Match","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"image"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"url","value":"/edr-logo.png"},{"name":"w","value":"256"},{"name":"q","value":"75"}],"headersSize":-1,"bodySize":0},"response":{"status":304,"statusText":"Not Modified","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"public, max-age=0, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Vary","value":"Accept"}],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.013,"receive":0.389},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27801.221,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.189Z","time":25.42,"request":{"method":"GET","url":"http://localhost:5174/","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"document"},{"name":"Sec-Fetch-Mode","value":"navigate"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":698,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/html; charset=utf-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"X-Powered-By","value":"Next.js"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"}],"content":{"size":42523,"mimeType":"text/html; charset=utf-8","compression":31541,"_sha1":"7206a2fb47066445f636bec970a08e917002cbf5.html"},"headersSize":732,"bodySize":10982,"redirectURL":"","_transferSize":11714},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":23.215,"receive":2.205},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27789.048,"_resourceType":"document","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.222Z","time":7.084,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/webpack.js?v=1784630688201","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630688201"}],"headersSize":543,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"dc1e-19f8377166c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":369,"bodySize":10547,"redirectURL":"","_transferSize":10916},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.03,"receive":4.054},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27801.275,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.222Z","time":8.111,"request":{"method":"GET","url":"http://localhost:5174/_next/static/css/app/layout.css?v=1784630688201","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"style"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630688201"}],"headersSize":558,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/css; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"184e1-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":99553,"mimeType":"text/css; charset=UTF-8","compression":84302,"_sha1":"37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css"},"headersSize":356,"bodySize":15251,"redirectURL":"","_transferSize":15607},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.884,"receive":3.227},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27801.255,"_resourceType":"stylesheet","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.223Z","time":9.228,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app-pages-internals.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":555,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"256bc-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":33746,"redirectURL":"","_transferSize":34116},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.122,"receive":6.106},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27801.308,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:48.220Z","time":22.242999999998574,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-nTNMMuEsTCQaaPZo9Wl62ivUK2A\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"9d334c32e12c4c241a68f668f5697ada2bd42b60.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":1.2730000000010477,"wait":22.094999999997526,"receive":0.14800000000104774,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.772000000000844},"_monotonicTime":27793.985,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.234Z","time":8.828999999999999,"request":{"method":"GET","url":"http://localhost:5174/edr-banner.jpg","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"image"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":587,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"public, max-age=0"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"185977"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"2d679-19eef8d4370\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Mon, 22 Jun 2026 13:37:53 GMT"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"}],"content":{"size":185977,"mimeType":"image/jpeg","compression":0,"_sha1":"88d4f22882ab8e3c7ff02ba3c0ddc9ba5d5f1e63.jpeg"},"headersSize":682,"bodySize":185977,"redirectURL":"","_transferSize":186659},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.278,"receive":1.551},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27809.255,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.223Z","time":45.543,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":546,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"1c4c9e-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":434806,"redirectURL":"","_transferSize":435177},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.329,"receive":40.214},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27801.339,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.223Z","time":72.615,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":544,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"3af266-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":811410,"redirectURL":"","_transferSize":811781},"cache":{},"timings":{"dns":0.007,"connect":0.181,"ssl":1.252,"send":0,"wait":2.968,"receive":68.207},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27801.325,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.222Z","time":114.032,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/main-app.js?v=1784630688201","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630688201"}],"headersSize":544,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"5ec9be-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":1354462,"redirectURL":"","_transferSize":1354833},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.785,"receive":111.247},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":27801.292,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.697Z","time":11.644,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-FLn5Z85hCQM16KM4mV008J3zMQo\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"229-UfWmDk7FbWCpfQTgtgrUTNJR8bI\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"51f5a60e4ec56d60a97d04e0b60ad44cd251f1b2.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.128,"receive":1.516},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28331.061,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.698Z","time":8.575000000000001,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-UfWmDk7FbWCpfQTgtgrUTNJR8bI\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"229-OSfq9o7xz3ie5Msa0gvaUuFM0Vk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"3927eaf68ef1cf789ee4cb1ad20bda52e14cd159.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.376,"receive":1.199},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28331.08,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.698Z","time":8.085,"request":{"method":"GET","url":"http://localhost:4000/packages","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":831,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"65"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"41-70SYjJbWXh1TwZ4UTWfHGt+bNxs\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":65,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ef44988c96d65e1d53c19e144d67c71adf9b371b.json"},"headersSize":981,"bodySize":65,"redirectURL":"","_transferSize":1046},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.849,"receive":1.236},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28331.098,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.691Z","time":2.734,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=throwOnHydrationMismatch&arguments=&lineNumber=6981&column=9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"throwOnHydrationMismatch"},{"name":"arguments","value":""},{"name":"lineNumber","value":"6981"},{"name":"column","value":"9"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":348,"mimeType":"application/json","compression":0,"_sha1":"9eec75fe5676dad186535c1643ec3d66e30b5ce8.json"},"headersSize":186,"bodySize":360,"redirectURL":"","_transferSize":546},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.148,"receive":0.586},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28327.449,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.692Z","time":4.354,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=tryToClaimNextHydratableInstance&arguments=&lineNumber=7040&column=7","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"tryToClaimNextHydratableInstance"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7040"},{"name":"column","value":"7"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":356,"mimeType":"application/json","compression":0,"_sha1":"cfd978cfd55f2216715fe252a8a0e5fe8a4cfaef.json"},"headersSize":186,"bodySize":368,"redirectURL":"","_transferSize":554},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.752,"receive":0.602},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28327.519,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.692Z","time":5.569,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=updateHostComponent%241&arguments=&lineNumber=16621&column=5","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"updateHostComponent$1"},{"name":"arguments","value":""},{"name":"lineNumber","value":"16621"},{"name":"column","value":"5"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":346,"mimeType":"application/json","compression":0,"_sha1":"782efd8169339aec761e00b0b7f8af4668bbee9f.json"},"headersSize":186,"bodySize":358,"redirectURL":"","_transferSize":544},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.225,"receive":0.344},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28327.583,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.692Z","time":6.956,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=beginWork%241&arguments=&lineNumber=18503&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"beginWork$1"},{"name":"arguments","value":""},{"name":"lineNumber","value":"18503"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":336,"mimeType":"application/json","compression":0,"_sha1":"0ad0a35fd6e6f931ee1cc3c7d2b6e0c33549a465.json"},"headersSize":186,"bodySize":348,"redirectURL":"","_transferSize":534},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.663,"receive":0.293},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28328.001,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.692Z","time":8.308,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=HTMLUnknownElement.callCallback&arguments=&lineNumber=20565&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"HTMLUnknownElement.callCallback"},{"name":"arguments","value":""},{"name":"lineNumber","value":"20565"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":356,"mimeType":"application/json","compression":0,"_sha1":"a04963cb88a925c66a2a466bf7ca0552e81f7c0d.json"},"headersSize":186,"bodySize":368,"redirectURL":"","_transferSize":554},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.965,"receive":0.343},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28328.505,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.692Z","time":14.540000000000001,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=Object.invokeGuardedCallbackImpl&arguments=&lineNumber=20614&column=16","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"Object.invokeGuardedCallbackImpl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"20614"},{"name":"column","value":"16"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":357,"mimeType":"application/json","compression":0,"_sha1":"1f414bc61b9ba60898dc36ca81d059801dedf11f.json"},"headersSize":186,"bodySize":369,"redirectURL":"","_transferSize":555},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.878,"receive":0.662},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28328.681,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.692Z","time":7.061,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=invokeGuardedCallback&arguments=&lineNumber=20689&column=29","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"invokeGuardedCallback"},{"name":"arguments","value":""},{"name":"lineNumber","value":"20689"},{"name":"column","value":"29"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":346,"mimeType":"application/json","compression":0,"_sha1":"994e35cd03c4b3ce7cb7b994ba9f3543dd64e900.json"},"headersSize":186,"bodySize":358,"redirectURL":"","_transferSize":544},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.488,"receive":0.573},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28328.763,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.693Z","time":7.277,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=beginWork&arguments=&lineNumber=26949&column=7","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"beginWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26949"},{"name":"column","value":"7"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":334,"mimeType":"application/json","compression":0,"_sha1":"4e1672a96f75cb07adec98fae8bc280ec0d49ff2.json"},"headersSize":186,"bodySize":346,"redirectURL":"","_transferSize":532},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.969,"receive":0.308},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28328.827,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.693Z","time":7.674,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=performUnitOfWork&arguments=&lineNumber=25748&column=12","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"performUnitOfWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25748"},{"name":"column","value":"12"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":342,"mimeType":"application/json","compression":0,"_sha1":"f7382aab14f8501df740bfebfde9f46f917132f9.json"},"headersSize":186,"bodySize":354,"redirectURL":"","_transferSize":540},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.351,"receive":0.323},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28328.889,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.693Z","time":14.244,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=workLoopSync&arguments=&lineNumber=25464&column=5","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"workLoopSync"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25464"},{"name":"column","value":"5"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":337,"mimeType":"application/json","compression":0,"_sha1":"bcf0740ca067b04d6e4c1de1dbd03d7792023e40.json"},"headersSize":186,"bodySize":349,"redirectURL":"","_transferSize":535},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.822,"receive":0.422},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28328.946,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.693Z","time":7.092,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=renderRootSync&arguments=&lineNumber=25419&column=7","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"renderRootSync"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25419"},{"name":"column","value":"7"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":339,"mimeType":"application/json","compression":0,"_sha1":"9d88218838d17f32ded8e054b97afa10ffbc5dcf.json"},"headersSize":186,"bodySize":351,"redirectURL":"","_transferSize":537},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.757,"receive":0.335},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.007,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.693Z","time":6.819999999999999,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=performSyncWorkOnRoot&arguments=&lineNumber=24887&column=20","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"performSyncWorkOnRoot"},{"name":"arguments","value":""},{"name":"lineNumber","value":"24887"},{"name":"column","value":"20"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":346,"mimeType":"application/json","compression":0,"_sha1":"22e42e74ce029bfb314a4487f6c3102d2f7f6079.json"},"headersSize":186,"bodySize":358,"redirectURL":"","_transferSize":544},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.494,"receive":0.326},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.069,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.693Z","time":6.734,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushSyncWorkAcrossRoots_impl&arguments=&lineNumber=7758&column=13","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushSyncWorkAcrossRoots_impl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7758"},{"name":"column","value":"13"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":353,"mimeType":"application/json","compression":0,"_sha1":"794346a4af602db7ccacf57a88ab4194c0cf5b7d.json"},"headersSize":186,"bodySize":365,"redirectURL":"","_transferSize":551},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.353,"receive":0.381},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.356,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.694Z","time":12.316999999999998,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushSyncWorkOnAllRoots&arguments=&lineNumber=7718&column=3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushSyncWorkOnAllRoots"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7718"},{"name":"column","value":"3"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":347,"mimeType":"application/json","compression":0,"_sha1":"0bb88ae2bd6698f692a00823d0a939b1be71f3ee.json"},"headersSize":186,"bodySize":359,"redirectURL":"","_transferSize":545},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.979,"receive":0.338},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.415,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.694Z","time":6.135999999999999,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushPassiveEffectsImpl&arguments=&lineNumber=26518&column=3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushPassiveEffectsImpl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26518"},{"name":"column","value":"3"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":348,"mimeType":"application/json","compression":0,"_sha1":"a04820dc22a0795826e1b0e5b5638813c1f7cceb.json"},"headersSize":186,"bodySize":360,"redirectURL":"","_transferSize":546},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.693,"receive":0.443},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.474,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.694Z","time":5.984,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushPassiveEffects&arguments=&lineNumber=26438&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushPassiveEffects"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26438"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":344,"mimeType":"application/json","compression":0,"_sha1":"8e676c0de18d14ee9fe60609c9d47229e353d6ce.json"},"headersSize":186,"bodySize":356,"redirectURL":"","_transferSize":542},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.669,"receive":0.315},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.532,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.694Z","time":6.11,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=eval&arguments=&lineNumber=26172&column=9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"eval"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26172"},{"name":"column","value":"9"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":329,"mimeType":"application/json","compression":0,"_sha1":"1829053a22e33f2a12819b088d3f1e14c0e487d4.json"},"headersSize":186,"bodySize":341,"redirectURL":"","_transferSize":527},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.738,"receive":0.372},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.592,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.694Z","time":8.554,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=workLoop&arguments=&lineNumber=256&column=34","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"workLoop"},{"name":"arguments","value":""},{"name":"lineNumber","value":"256"},{"name":"column","value":"34"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":331,"mimeType":"application/json","compression":0,"_sha1":"3b0fcfbc2ab1e8019d3bb4cb89f07ea49871704a.json"},"headersSize":186,"bodySize":343,"redirectURL":"","_transferSize":529},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.058,"receive":0.496},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.65,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.694Z","time":5.005,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=flushWork&arguments=&lineNumber=225&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"flushWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"225"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":332,"mimeType":"application/json","compression":0,"_sha1":"43defe855a222e09a5dda774d593c5d8ae1371b8.json"},"headersSize":186,"bodySize":344,"redirectURL":"","_transferSize":530},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.704,"receive":0.301},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.706,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":3.852,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=MessagePort.performWorkUntilDeadline&arguments=&lineNumber=534&column=21","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"MessagePort.performWorkUntilDeadline"},{"name":"arguments","value":""},{"name":"lineNumber","value":"534"},{"name":"column","value":"21"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":359,"mimeType":"application/json","compression":0,"_sha1":"6d9db5c37a092b526bd2033869de9f30d53c2c2e.json"},"headersSize":186,"bodySize":371,"redirectURL":"","_transferSize":557},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.562,"receive":0.29},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.767,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":3.879,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=throwOnHydrationMismatch&arguments=&lineNumber=6981&column=9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"throwOnHydrationMismatch"},{"name":"arguments","value":""},{"name":"lineNumber","value":"6981"},{"name":"column","value":"9"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":348,"mimeType":"application/json","compression":0,"_sha1":"9eec75fe5676dad186535c1643ec3d66e30b5ce8.json"},"headersSize":186,"bodySize":360,"redirectURL":"","_transferSize":546},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.425,"receive":0.454},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.874,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":7.09,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=tryToClaimNextHydratableInstance&arguments=&lineNumber=7040&column=7","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"tryToClaimNextHydratableInstance"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7040"},{"name":"column","value":"7"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":356,"mimeType":"application/json","compression":0,"_sha1":"cfd978cfd55f2216715fe252a8a0e5fe8a4cfaef.json"},"headersSize":186,"bodySize":368,"redirectURL":"","_transferSize":554},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.828,"receive":0.262},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.915,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":3.734,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=updateHostComponent%241&arguments=&lineNumber=16621&column=5","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"updateHostComponent$1"},{"name":"arguments","value":""},{"name":"lineNumber","value":"16621"},{"name":"column","value":"5"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":346,"mimeType":"application/json","compression":0,"_sha1":"782efd8169339aec761e00b0b7f8af4668bbee9f.json"},"headersSize":186,"bodySize":358,"redirectURL":"","_transferSize":544},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.443,"receive":0.291},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28329.958,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":5.218,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=beginWork%241&arguments=&lineNumber=18503&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"beginWork$1"},{"name":"arguments","value":""},{"name":"lineNumber","value":"18503"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":336,"mimeType":"application/json","compression":0,"_sha1":"0ad0a35fd6e6f931ee1cc3c7d2b6e0c33549a465.json"},"headersSize":186,"bodySize":348,"redirectURL":"","_transferSize":534},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.94,"receive":0.278},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.017,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":10.098,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=HTMLUnknownElement.callCallback&arguments=&lineNumber=20565&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"HTMLUnknownElement.callCallback"},{"name":"arguments","value":""},{"name":"lineNumber","value":"20565"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":356,"mimeType":"application/json","compression":0,"_sha1":"a04963cb88a925c66a2a466bf7ca0552e81f7c0d.json"},"headersSize":186,"bodySize":368,"redirectURL":"","_transferSize":554},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.766,"receive":0.332},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.059,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":5.139,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=beginWork&arguments=&lineNumber=26949&column=7","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"beginWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26949"},{"name":"column","value":"7"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":334,"mimeType":"application/json","compression":0,"_sha1":"4e1672a96f75cb07adec98fae8bc280ec0d49ff2.json"},"headersSize":186,"bodySize":346,"redirectURL":"","_transferSize":532},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.868,"receive":0.271},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.185,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":5.045,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=performUnitOfWork&arguments=&lineNumber=25748&column=12","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"performUnitOfWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25748"},{"name":"column","value":"12"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":342,"mimeType":"application/json","compression":0,"_sha1":"f7382aab14f8501df740bfebfde9f46f917132f9.json"},"headersSize":186,"bodySize":354,"redirectURL":"","_transferSize":540},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.699,"receive":0.346},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.535,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":12.078999999999999,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=invokeGuardedCallback&arguments=&lineNumber=20689&column=29","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"invokeGuardedCallback"},{"name":"arguments","value":""},{"name":"lineNumber","value":"20689"},{"name":"column","value":"29"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":346,"mimeType":"application/json","compression":0,"_sha1":"994e35cd03c4b3ce7cb7b994ba9f3543dd64e900.json"},"headersSize":186,"bodySize":358,"redirectURL":"","_transferSize":544},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.802,"receive":0.277},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.145,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":6.941999999999999,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=renderRootSync&arguments=&lineNumber=25419&column=7","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"renderRootSync"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25419"},{"name":"column","value":"7"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":339,"mimeType":"application/json","compression":0,"_sha1":"9d88218838d17f32ded8e054b97afa10ffbc5dcf.json"},"headersSize":186,"bodySize":351,"redirectURL":"","_transferSize":537},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.709,"receive":0.233},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.624,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":7.076,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=performSyncWorkOnRoot&arguments=&lineNumber=24887&column=20","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"performSyncWorkOnRoot"},{"name":"arguments","value":""},{"name":"lineNumber","value":"24887"},{"name":"column","value":"20"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":346,"mimeType":"application/json","compression":0,"_sha1":"22e42e74ce029bfb314a4487f6c3102d2f7f6079.json"},"headersSize":186,"bodySize":358,"redirectURL":"","_transferSize":544},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.68,"receive":0.396},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.67,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":7.249,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushSyncWorkAcrossRoots_impl&arguments=&lineNumber=7758&column=13","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushSyncWorkAcrossRoots_impl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7758"},{"name":"column","value":"13"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":353,"mimeType":"application/json","compression":0,"_sha1":"794346a4af602db7ccacf57a88ab4194c0cf5b7d.json"},"headersSize":186,"bodySize":365,"redirectURL":"","_transferSize":551},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.853,"receive":0.396},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.712,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":14.362,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=Object.invokeGuardedCallbackImpl&arguments=&lineNumber=20614&column=16","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"Object.invokeGuardedCallbackImpl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"20614"},{"name":"column","value":"16"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":357,"mimeType":"application/json","compression":0,"_sha1":"1f414bc61b9ba60898dc36ca81d059801dedf11f.json"},"headersSize":186,"bodySize":369,"redirectURL":"","_transferSize":555},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.939,"receive":0.423},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.105,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":7.417,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushPassiveEffectsImpl&arguments=&lineNumber=26518&column=3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushPassiveEffectsImpl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26518"},{"name":"column","value":"3"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":348,"mimeType":"application/json","compression":0,"_sha1":"a04820dc22a0795826e1b0e5b5638813c1f7cceb.json"},"headersSize":186,"bodySize":360,"redirectURL":"","_transferSize":546},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.018,"receive":0.399},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.797,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":7.4559999999999995,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushPassiveEffects&arguments=&lineNumber=26438&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushPassiveEffects"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26438"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":344,"mimeType":"application/json","compression":0,"_sha1":"8e676c0de18d14ee9fe60609c9d47229e353d6ce.json"},"headersSize":186,"bodySize":356,"redirectURL":"","_transferSize":542},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.068,"receive":0.388},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.839,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":7.135000000000001,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=eval&arguments=&lineNumber=26172&column=9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"eval"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26172"},{"name":"column","value":"9"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":329,"mimeType":"application/json","compression":0,"_sha1":"1829053a22e33f2a12819b088d3f1e14c0e487d4.json"},"headersSize":186,"bodySize":341,"redirectURL":"","_transferSize":527},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.783,"receive":0.352},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.881,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.695Z","time":13.51,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=workLoopSync&arguments=&lineNumber=25464&column=5","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"workLoopSync"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25464"},{"name":"column","value":"5"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":337,"mimeType":"application/json","compression":0,"_sha1":"bcf0740ca067b04d6e4c1de1dbd03d7792023e40.json"},"headersSize":186,"bodySize":349,"redirectURL":"","_transferSize":535},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.29,"receive":0.22},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.576,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":5.134,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=flushWork&arguments=&lineNumber=225&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"flushWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"225"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":332,"mimeType":"application/json","compression":0,"_sha1":"43defe855a222e09a5dda774d593c5d8ae1371b8.json"},"headersSize":186,"bodySize":344,"redirectURL":"","_transferSize":530},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.764,"receive":0.37},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.976,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":3.5090000000000003,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=MessagePort.performWorkUntilDeadline&arguments=&lineNumber=534&column=21","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"MessagePort.performWorkUntilDeadline"},{"name":"arguments","value":""},{"name":"lineNumber","value":"534"},{"name":"column","value":"21"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":359,"mimeType":"application/json","compression":0,"_sha1":"6d9db5c37a092b526bd2033869de9f30d53c2c2e.json"},"headersSize":186,"bodySize":371,"redirectURL":"","_transferSize":557},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.119,"receive":0.39},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28331.021,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":2.097,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=workLoop&arguments=&lineNumber=256&column=34","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"workLoop"},{"name":"arguments","value":""},{"name":"lineNumber","value":"256"},{"name":"column","value":"34"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":331,"mimeType":"application/json","compression":0,"_sha1":"3b0fcfbc2ab1e8019d3bb4cb89f07ea49871704a.json"},"headersSize":186,"bodySize":343,"redirectURL":"","_transferSize":529},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.722,"receive":0.375},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.934,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.696Z","time":8.645,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushSyncWorkOnAllRoots&arguments=&lineNumber=7718&column=3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushSyncWorkOnAllRoots"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7718"},{"name":"column","value":"3"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":347,"mimeType":"application/json","compression":0,"_sha1":"0bb88ae2bd6698f692a00823d0a939b1be71f3ee.json"},"headersSize":186,"bodySize":359,"redirectURL":"","_transferSize":545},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.036,"receive":0.609},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28330.753,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.752Z","time":4.41,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=throwOnHydrationMismatch&arguments=&lineNumber=6981&column=9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"throwOnHydrationMismatch"},{"name":"arguments","value":""},{"name":"lineNumber","value":"6981"},{"name":"column","value":"9"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":348,"mimeType":"application/json","compression":0,"_sha1":"9eec75fe5676dad186535c1643ec3d66e30b5ce8.json"},"headersSize":186,"bodySize":360,"redirectURL":"","_transferSize":546},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.833,"receive":1.577},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.057,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.752Z","time":4.46,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=tryToClaimNextHydratableInstance&arguments=&lineNumber=7040&column=7","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"tryToClaimNextHydratableInstance"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7040"},{"name":"column","value":"7"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":356,"mimeType":"application/json","compression":0,"_sha1":"cfd978cfd55f2216715fe252a8a0e5fe8a4cfaef.json"},"headersSize":186,"bodySize":368,"redirectURL":"","_transferSize":554},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.16,"receive":0.3},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.122,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.753Z","time":6.219,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=updateHostComponent%241&arguments=&lineNumber=16621&column=5","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"updateHostComponent$1"},{"name":"arguments","value":""},{"name":"lineNumber","value":"16621"},{"name":"column","value":"5"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":346,"mimeType":"application/json","compression":0,"_sha1":"782efd8169339aec761e00b0b7f8af4668bbee9f.json"},"headersSize":186,"bodySize":358,"redirectURL":"","_transferSize":544},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.75,"receive":0.469},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.186,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.753Z","time":4.778,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=performUnitOfWork&arguments=&lineNumber=25748&column=12","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"performUnitOfWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25748"},{"name":"column","value":"12"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":342,"mimeType":"application/json","compression":0,"_sha1":"f7382aab14f8501df740bfebfde9f46f917132f9.json"},"headersSize":186,"bodySize":354,"redirectURL":"","_transferSize":540},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.327,"receive":0.451},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.399,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.753Z","time":6.886,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=workLoopSync&arguments=&lineNumber=25464&column=5","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"workLoopSync"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25464"},{"name":"column","value":"5"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":337,"mimeType":"application/json","compression":0,"_sha1":"bcf0740ca067b04d6e4c1de1dbd03d7792023e40.json"},"headersSize":186,"bodySize":349,"redirectURL":"","_transferSize":535},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.505,"receive":0.381},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.457,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.753Z","time":12.637,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=beginWork&arguments=&lineNumber=26927&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"beginWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26927"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":334,"mimeType":"application/json","compression":0,"_sha1":"b41b79323eca6e7f111d8bb093f70c4515758ab8.json"},"headersSize":186,"bodySize":346,"redirectURL":"","_transferSize":532},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.208,"receive":0.429},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.326,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.753Z","time":14.79,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=beginWork%241&arguments=&lineNumber=18503&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"beginWork$1"},{"name":"arguments","value":""},{"name":"lineNumber","value":"18503"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":336,"mimeType":"application/json","compression":0,"_sha1":"0ad0a35fd6e6f931ee1cc3c7d2b6e0c33549a465.json"},"headersSize":186,"bodySize":348,"redirectURL":"","_transferSize":534},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":14.171,"receive":0.619},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.264,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.753Z","time":8.019,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=performSyncWorkOnRoot&arguments=&lineNumber=24887&column=20","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"performSyncWorkOnRoot"},{"name":"arguments","value":""},{"name":"lineNumber","value":"24887"},{"name":"column","value":"20"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":346,"mimeType":"application/json","compression":0,"_sha1":"22e42e74ce029bfb314a4487f6c3102d2f7f6079.json"},"headersSize":186,"bodySize":358,"redirectURL":"","_transferSize":544},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.757,"receive":0.262},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.589,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.754Z","time":6.981,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushSyncWorkAcrossRoots_impl&arguments=&lineNumber=7758&column=13","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushSyncWorkAcrossRoots_impl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7758"},{"name":"column","value":"13"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":353,"mimeType":"application/json","compression":0,"_sha1":"794346a4af602db7ccacf57a88ab4194c0cf5b7d.json"},"headersSize":186,"bodySize":365,"redirectURL":"","_transferSize":551},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.687,"receive":0.294},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.649,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.754Z","time":7.064,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushSyncWorkOnAllRoots&arguments=&lineNumber=7718&column=3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushSyncWorkOnAllRoots"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7718"},{"name":"column","value":"3"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":347,"mimeType":"application/json","compression":0,"_sha1":"0bb88ae2bd6698f692a00823d0a939b1be71f3ee.json"},"headersSize":186,"bodySize":359,"redirectURL":"","_transferSize":545},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.741,"receive":0.323},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.7,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.753Z","time":15.483,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=renderRootSync&arguments=&lineNumber=25419&column=7","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"renderRootSync"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25419"},{"name":"column","value":"7"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":339,"mimeType":"application/json","compression":0,"_sha1":"9d88218838d17f32ded8e054b97afa10ffbc5dcf.json"},"headersSize":186,"bodySize":351,"redirectURL":"","_transferSize":537},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":15.169,"receive":0.314},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.535,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.754Z","time":6.819,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushPassiveEffects&arguments=&lineNumber=26438&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushPassiveEffects"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26438"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":344,"mimeType":"application/json","compression":0,"_sha1":"8e676c0de18d14ee9fe60609c9d47229e353d6ce.json"},"headersSize":186,"bodySize":356,"redirectURL":"","_transferSize":542},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.483,"receive":0.336},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.836,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.754Z","time":7.046,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=eval&arguments=&lineNumber=26172&column=9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"eval"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26172"},{"name":"column","value":"9"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":329,"mimeType":"application/json","compression":0,"_sha1":"1829053a22e33f2a12819b088d3f1e14c0e487d4.json"},"headersSize":186,"bodySize":341,"redirectURL":"","_transferSize":527},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.747,"receive":0.299},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.899,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.754Z","time":5.768,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=workLoop&arguments=&lineNumber=256&column=34","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"workLoop"},{"name":"arguments","value":""},{"name":"lineNumber","value":"256"},{"name":"column","value":"34"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":331,"mimeType":"application/json","compression":0,"_sha1":"3b0fcfbc2ab1e8019d3bb4cb89f07ea49871704a.json"},"headersSize":186,"bodySize":343,"redirectURL":"","_transferSize":529},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.3,"receive":0.468},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.952,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.754Z","time":12.572999999999999,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushPassiveEffectsImpl&arguments=&lineNumber=26518&column=3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushPassiveEffectsImpl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26518"},{"name":"column","value":"3"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":348,"mimeType":"application/json","compression":0,"_sha1":"a04820dc22a0795826e1b0e5b5638813c1f7cceb.json"},"headersSize":186,"bodySize":360,"redirectURL":"","_transferSize":546},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.187,"receive":0.386},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28340.772,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.755Z","time":4.3839999999999995,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=MessagePort.performWorkUntilDeadline&arguments=&lineNumber=534&column=21","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"MessagePort.performWorkUntilDeadline"},{"name":"arguments","value":""},{"name":"lineNumber","value":"534"},{"name":"column","value":"21"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":359,"mimeType":"application/json","compression":0,"_sha1":"6d9db5c37a092b526bd2033869de9f30d53c2c2e.json"},"headersSize":186,"bodySize":371,"redirectURL":"","_transferSize":557},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.09,"receive":0.294},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28341.137,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.754Z","time":6.667,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+Hydration+failed+because+the+initial+UI+does+not+match+what+was+rendered+on+the+server.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=flushWork&arguments=&lineNumber=225&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"flushWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"225"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":332,"mimeType":"application/json","compression":0,"_sha1":"43defe855a222e09a5dda774d593c5d8ae1371b8.json"},"headersSize":186,"bodySize":344,"redirectURL":"","_transferSize":530},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.181,"receive":0.486},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28341.03,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.782Z","time":2.428,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=updateDehydratedSuspenseComponent&arguments=&lineNumber=17594&column=57","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"updateDehydratedSuspenseComponent"},{"name":"arguments","value":""},{"name":"lineNumber","value":"17594"},{"name":"column","value":"57"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":358,"mimeType":"application/json","compression":0,"_sha1":"efaabda3d61e31f422e37f941a3fc7288ff77735.json"},"headersSize":186,"bodySize":370,"redirectURL":"","_transferSize":556},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.055,"receive":0.373},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28358.411,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.782Z","time":3.7889999999999997,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=updateSuspenseComponent&arguments=&lineNumber=17193&column=16","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"updateSuspenseComponent"},{"name":"arguments","value":""},{"name":"lineNumber","value":"17193"},{"name":"column","value":"16"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":348,"mimeType":"application/json","compression":0,"_sha1":"bf49c87008b9e30ed36063cbb448f9a1f06ae0d9.json"},"headersSize":186,"bodySize":360,"redirectURL":"","_transferSize":546},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.424,"receive":0.365},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28358.472,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.782Z","time":5.351,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=beginWork%241&arguments=&lineNumber=18509&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"beginWork$1"},{"name":"arguments","value":""},{"name":"lineNumber","value":"18509"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":336,"mimeType":"application/json","compression":0,"_sha1":"77b09b4b857b54729b6f8dd90b4281156569bd2d.json"},"headersSize":186,"bodySize":348,"redirectURL":"","_transferSize":534},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.085,"receive":0.266},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28358.521,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.782Z","time":7.102,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=beginWork&arguments=&lineNumber=26927&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"beginWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26927"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":334,"mimeType":"application/json","compression":0,"_sha1":"b41b79323eca6e7f111d8bb093f70c4515758ab8.json"},"headersSize":186,"bodySize":346,"redirectURL":"","_transferSize":532},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.689,"receive":0.413},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28358.646,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:48.778Z","time":12.5099999999984,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-E2Y3dKj0wkMfopzM5ZTiONEi+yI\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"13663774a8f4c2431fa29ccce594e238d122fb22.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":0.41200000000026193,"wait":12.350999999998749,"receive":0.15899999999965075,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.23799999999755528},"_monotonicTime":28351.461,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.782Z","time":8.451,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=performUnitOfWork&arguments=&lineNumber=25748&column=12","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"performUnitOfWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25748"},{"name":"column","value":"12"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":342,"mimeType":"application/json","compression":0,"_sha1":"f7382aab14f8501df740bfebfde9f46f917132f9.json"},"headersSize":186,"bodySize":354,"redirectURL":"","_transferSize":540},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.087,"receive":0.364},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28358.687,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.783Z","time":6.796,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=renderRootSync&arguments=&lineNumber=25419&column=7","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"renderRootSync"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25419"},{"name":"column","value":"7"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":339,"mimeType":"application/json","compression":0,"_sha1":"9d88218838d17f32ded8e054b97afa10ffbc5dcf.json"},"headersSize":186,"bodySize":351,"redirectURL":"","_transferSize":537},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.37,"receive":0.426},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28358.912,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.783Z","time":6.654000000000001,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=performSyncWorkOnRoot&arguments=&lineNumber=24887&column=20","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"performSyncWorkOnRoot"},{"name":"arguments","value":""},{"name":"lineNumber","value":"24887"},{"name":"column","value":"20"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":346,"mimeType":"application/json","compression":0,"_sha1":"22e42e74ce029bfb314a4487f6c3102d2f7f6079.json"},"headersSize":186,"bodySize":358,"redirectURL":"","_transferSize":544},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.424,"receive":0.23},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28359.044,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.783Z","time":6.63,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushSyncWorkAcrossRoots_impl&arguments=&lineNumber=7758&column=13","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushSyncWorkAcrossRoots_impl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7758"},{"name":"column","value":"13"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":353,"mimeType":"application/json","compression":0,"_sha1":"794346a4af602db7ccacf57a88ab4194c0cf5b7d.json"},"headersSize":186,"bodySize":365,"redirectURL":"","_transferSize":551},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.278,"receive":0.352},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28359.086,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.782Z","time":13.463,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=workLoopSync&arguments=&lineNumber=25464&column=5","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"workLoopSync"},{"name":"arguments","value":""},{"name":"lineNumber","value":"25464"},{"name":"column","value":"5"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":337,"mimeType":"application/json","compression":0,"_sha1":"bcf0740ca067b04d6e4c1de1dbd03d7792023e40.json"},"headersSize":186,"bodySize":349,"redirectURL":"","_transferSize":535},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.133,"receive":0.33},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28358.849,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.783Z","time":6.722,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushPassiveEffectsImpl&arguments=&lineNumber=26518&column=3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushPassiveEffectsImpl"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26518"},{"name":"column","value":"3"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":348,"mimeType":"application/json","compression":0,"_sha1":"a04820dc22a0795826e1b0e5b5638813c1f7cceb.json"},"headersSize":186,"bodySize":360,"redirectURL":"","_transferSize":546},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.407,"receive":0.315},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28359.232,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.783Z","time":6.8020000000000005,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushPassiveEffects&arguments=&lineNumber=26438&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushPassiveEffects"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26438"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":344,"mimeType":"application/json","compression":0,"_sha1":"8e676c0de18d14ee9fe60609c9d47229e353d6ce.json"},"headersSize":186,"bodySize":356,"redirectURL":"","_transferSize":542},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.554,"receive":0.248},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28359.273,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.783Z","time":6.542,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=eval&arguments=&lineNumber=26172&column=9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"eval"},{"name":"arguments","value":""},{"name":"lineNumber","value":"26172"},{"name":"column","value":"9"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":329,"mimeType":"application/json","compression":0,"_sha1":"1829053a22e33f2a12819b088d3f1e14c0e487d4.json"},"headersSize":186,"bodySize":341,"redirectURL":"","_transferSize":527},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.288,"receive":0.254},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28359.312,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.783Z","time":13.711,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Freact-dom%2Fcjs%2Freact-dom.development.js&methodName=flushSyncWorkOnAllRoots&arguments=&lineNumber=7718&column=3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"},{"name":"methodName","value":"flushSyncWorkOnAllRoots"},{"name":"arguments","value":""},{"name":"lineNumber","value":"7718"},{"name":"column","value":"3"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":347,"mimeType":"application/json","compression":0,"_sha1":"0bb88ae2bd6698f692a00823d0a939b1be71f3ee.json"},"headersSize":186,"bodySize":359,"redirectURL":"","_transferSize":545},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.074,"receive":0.637},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28359.136,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.783Z","time":5.397,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=flushWork&arguments=&lineNumber=225&column=14","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"flushWork"},{"name":"arguments","value":""},{"name":"lineNumber","value":"225"},{"name":"column","value":"14"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":332,"mimeType":"application/json","compression":0,"_sha1":"43defe855a222e09a5dda774d593c5d8ae1371b8.json"},"headersSize":186,"bodySize":344,"redirectURL":"","_transferSize":530},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.739,"receive":0.658},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28359.425,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.784Z","time":3.784,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=MessagePort.performWorkUntilDeadline&arguments=&lineNumber=534&column=21","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"MessagePort.performWorkUntilDeadline"},{"name":"arguments","value":""},{"name":"lineNumber","value":"534"},{"name":"column","value":"21"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":359,"mimeType":"application/json","compression":0,"_sha1":"6d9db5c37a092b526bd2033869de9f30d53c2c2e.json"},"headersSize":186,"bodySize":371,"redirectURL":"","_transferSize":557},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.137,"receive":0.647},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28359.486,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.783Z","time":7.381,"request":{"method":"GET","url":"http://localhost:5174/__nextjs_original-stack-frame?isServer=false&isEdgeServer=false&isAppDirectory=true&errorMessage=Error%3A+There+was+an+error+while+hydrating+this+Suspense+boundary.+Switched+to+client+rendering.%0ASee+more+info+here%3A+https%3A%2F%2Fnextjs.org%2Fdocs%2Fmessages%2Freact-hydration-error&file=webpack-internal%3A%2F%2F%2F%28app-pages-browser%29%2F..%2F..%2F..%2Fnode_modules%2F.pnpm%2Fnext%4014.2.35_babel-plugin-macros%403.1.0_react-dom%4018.3.1_react%4018.3.1__react%4018.3.1%2Fnode_modules%2Fnext%2Fdist%2Fcompiled%2Fscheduler%2Fcjs%2Fscheduler.development.js&methodName=workLoop&arguments=&lineNumber=256&column=34","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"isServer","value":"false"},{"name":"isEdgeServer","value":"false"},{"name":"isAppDirectory","value":"true"},{"name":"errorMessage","value":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error"},{"name":"file","value":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"},{"name":"methodName","value":"workLoop"},{"name":"arguments","value":""},{"name":"lineNumber","value":"256"},{"name":"column","value":"34"}],"headersSize":538,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Connection","value":"keep-alive"},{"name":"Content-Type","value":"application/json"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":331,"mimeType":"application/json","compression":0,"_sha1":"3b0fcfbc2ab1e8019d3bb4cb89f07ea49871704a.json"},"headersSize":186,"bodySize":343,"redirectURL":"","_transferSize":529},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.816,"receive":0.565},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28359.385,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.688Z","time":119.73899999999999,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_features_support_SupportWidget_tsx.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":593,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"f9fd6-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":233760,"redirectURL":"","_transferSize":234130},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.874,"receive":117.865},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28327.35,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.849Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":-1,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"WebSocket is closed before the connection is established."},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28423.304,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.833Z","time":4.119,"request":{"method":"GET","url":"http://localhost:4000/support/device/unread-count?deviceId=09aab790-cd4c-4d72-8055-32efc70297e2","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"50-74cL26VYSSaNqeey0i8Z3kIMuHc\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"deviceId","value":"09aab790-cd4c-4d72-8055-32efc70297e2"}],"headersSize":901,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"80"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"ETag","value":"W/\"50-O6zw2kGaJmJ8meXgJlBjFGtRTsI\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":80,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"3bacf0da419a26627c99e5e0265063146b514ec2.json"},"headersSize":981,"bodySize":80,"redirectURL":"","_transferSize":1061},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.942,"receive":1.177},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28423.416,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:49.295Z","time":11.875,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-CuBaKLDQVGYFR+dNwVVtxhKJQH0\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:49 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"0ae05a28b0d054660547e74dc1556dc61289407d.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":0.27299999999740976,"wait":11.689000000002125,"receive":0.18599999999787542,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.2109999999993306},"_monotonicTime":28869.19,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:49.813Z","time":11.358000000000175,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-DGeoscL+zMgHR62Gd0FqjW9QjxU\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:49 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"0c67a8b1c2feccc80747ad8677416a8d6f508f15.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":0.21299999999973807,"wait":11.236000000000786,"receive":0.12199999999938882,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.15499999999883585},"_monotonicTime":29387.259,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:50.328Z","time":10.75,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-Vi6wt/h00gKLotL7c3QvfjCRoFw\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:50 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"562eb0b7f874d2028ba2d2fb73742f7e3091a05c.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":0.24200000000200816,"wait":10.63799999999901,"receive":0.11200000000098953,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.17400000000270666},"_monotonicTime":29902.147,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:50.844Z","time":7.459999999999127,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-qB+nhNQwtIpRyDlA2D3s6obZ840\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:50 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"a81fa784d430b48a51c83940d83decea86d9f38d.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":0.25,"wait":7.235999999997148,"receive":0.22400000000197906,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.19099999999889405},"_monotonicTime":30418.088,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:51.357Z","time":13.128000000000611,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-mReV/0aOIDh1TOEiSZyuU2+ZQjs\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:51 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"991795ff468e2038754ce122499cae536f99423b.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":0.23699999999735155,"wait":12.962000000003172,"receive":0.16599999999743886,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.18599999999787542},"_monotonicTime":30930.784,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:51.876Z","time":13.350999999998749,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-pFahNy4jkl736S6JoZZaehCoZH4\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:51 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"a456a1372e23925ef7e92e89a1965a7a10a8647e.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":0.31600000000253203,"wait":13.149999999997817,"receive":0.20100000000093132,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.25},"_monotonicTime":31450.036,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:52.395Z","time":7.382000000001426,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-YRUhhJiEvPOTGvc3DyA58qgIgmw\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:52 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"611521849884bcf3931af7370f2039f2a808826c.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":0.24899999999979627,"wait":7.226999999998952,"receive":0.15500000000247383,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.19199999999909778},"_monotonicTime":31968.398,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"startedDateTime":"2026-07-21T10:44:52.906Z","time":11.614000000001397,"request":{"method":"GET","url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"user-agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"accept","value":"*/*"},{"name":"accept-encoding","value":"gzip,deflate,br"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"1.1","cookies":[],"headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-N0uBWF6v58dfRJ+OPXCibrnDOV0\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:52 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"content":{"size":1234,"mimeType":"application/json; charset=utf-8","_sha1":"374b81585eafe7c75f449f8e3d70a26eb9c3395d.json"},"headersSize":-1,"bodySize":1234,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":0.20899999999892316,"wait":11.472000000001572,"receive":0.14199999999982538,"dns":-1,"connect":-1,"ssl":-1,"blocked":0.1610000000000582},"_monotonicTime":32480.28,"_apiRequest":true,"serverIPAddress":"::1","_serverPort":4000}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.742Z","time":2416.906005859375,"request":{"method":"GET","url":"ws://localhost:5174/_next/webpack-hmr","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"Wz16VeaEYMYVJI0cDWRHZg=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[],"headersSize":483,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Sec-WebSocket-Accept","value":"VEVa5hs/cPQMjHuJcHkYrmwDUek="},{"name":"Connection","value":"Upgrade"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"05fb1a94b8159a5c4555db59ff5818ac.jsonl"},"headersSize":129,"bodySize":-1,"redirectURL":"","_transferSize":291},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28338.143,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@e600c850f86c7fc16a2602b9a1330d97","startedDateTime":"2026-07-21T10:44:48.858Z","time":0.4619140625,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"zKut4ehwlLxrllNDJBnMDQ=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Sec-WebSocket-Accept","value":"CQJzWyx00z6VAisvkTPaGamLyM4="},{"name":"Connection","value":"Upgrade"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Vary","value":"Origin"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"065ef44152c1c4345f00d3042543541a.jsonl"},"headersSize":235,"bodySize":-1,"redirectURL":"","_transferSize":410},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@93158020af7521c6efd9454e39f2c4aa","_monotonicTime":28432.597,"_resourceType":"websocket"}} diff --git a/test-results/.playwright-artifacts-0/traces/5061af5a0cc06b625bd4-a6f45a78328343399c82-recording3.trace b/test-results/.playwright-artifacts-0/traces/5061af5a0cc06b625bd4-a6f45a78328343399c82-recording3.trace new file mode 100644 index 000000000..989a9b0cc --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/5061af5a0cc06b625bd4-a6f45a78328343399c82-recording3.trace @@ -0,0 +1,1585 @@ +{"version":8,"type":"context-options","origin":"library","browserName":"chromium","playwrightVersion":"1.61.1","options":{"noDefaultViewport":false,"viewport":{"width":1280,"height":720},"ignoreHTTPSErrors":false,"javaScriptEnabled":true,"bypassCSP":false,"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36","locale":"en-US","offline":false,"deviceScaleFactor":1,"isMobile":false,"hasTouch":false,"colorScheme":"light","acceptDownloads":"accept","baseURL":"http://localhost:5174","serviceWorkers":"allow","selectorEngines":[],"testIdAttributeName":"data-testid","storageState":{"cookies":[],"origins":[{"origin":"http://localhost:5174","localStorage":[{"name":"auth_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"auth_user","value":"{\"iamUserId\":\"11111111-0000-4000-8000-000000000001\",\"passengerId\":\"11111111-0000-4000-8000-000000000001\",\"email\":\"test.passenger@edr.local\",\"phone\":null,\"fullName\":\"Test Passenger\",\"nationality\":null,\"faydaVerified\":false,\"preferredCurrency\":\"USD\",\"createdAt\":\"2026-07-21T10:44:20.904Z\",\"passenger\":{\"id\":\"11111111-0000-4000-8000-000000000001\",\"preferredLanguage\":null,\"loyalty\":{\"tier\":\"BRONZE\",\"pointsBalance\":500,\"lifetimePoints\":0},\"wallet\":{\"balanceMinor\":100000000,\"currency\":\"ETB\"}}}"}]}]}},"platform":"darwin","wallTime":1784630682869,"monotonicTime":22442.395,"sdkLanguage":"javascript","testIdAttributeName":"data-testid","contextId":"browser-context@a68c71dfbc4c6b01fefcaf0315ef54b9","title":"portal/ua15-telebirr-shortpay.spec.ts:16 › UA-15: a short-paid gateway settlement does NOT confirm the booking (C-4)"} +{"type":"before","callId":"call@364","startTime":22443.214,"class":"BrowserContext","method":"newPage","params":{},"stepId":"pw:api@24"} +{"type":"event","time":22475.204,"class":"BrowserContext","method":"page","params":{"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"}} +{"type":"after","callId":"call@364","endTime":22475.265,"result":{"page":""}} +{"type":"before","callId":"call@366","startTime":22476.519,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"1e3da3d5a40a0beb0c1e4cd0f1e98eff","phase":"before","event":"response"},"stepId":"pw:api@25","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"before","callId":"call@369","startTime":22476.561,"class":"Frame","method":"goto","params":{"url":"/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","timeout":0,"waitUntil":"load"},"stepId":"pw:api@26","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@369"} +{"type":"frame-snapshot","snapshot":{"callId":"call@369","snapshotName":"before@call@369","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"about:blank","html":["HTML",{},["HEAD",{},["BASE",{"href":"about:blank"}]],["BODY"]],"viewport":{"width":1280,"height":720},"timestamp":22477.618,"wallTime":1784630682904,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@369","time":22477.955,"message":"navigating to \"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN\", waiting until \"load\""} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630682910.jpeg","width":1280,"height":720,"timestamp":22483.798,"frameSwapWallTime":1784630682909.005} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630682959.jpeg","width":1280,"height":720,"timestamp":22533.032,"frameSwapWallTime":1784630682958.063} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630682971.jpeg","width":1280,"height":720,"timestamp":22544.362,"frameSwapWallTime":1784630682969.493} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630682980.jpeg","width":1280,"height":720,"timestamp":22554.291,"frameSwapWallTime":1784630682979.254} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630682998.jpeg","width":1280,"height":720,"timestamp":22571.65,"frameSwapWallTime":1784630682996.636} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683036.jpeg","width":1280,"height":720,"timestamp":22609.53,"frameSwapWallTime":1784630683028.837} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683036.jpeg","width":1280,"height":720,"timestamp":22609.613,"frameSwapWallTime":1784630683029.379} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683036.jpeg","width":1280,"height":720,"timestamp":22609.654,"frameSwapWallTime":1784630683032.843} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683044.jpeg","width":1280,"height":720,"timestamp":22617.786,"frameSwapWallTime":1784630683042.564} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683061.jpeg","width":1280,"height":720,"timestamp":22634.655,"frameSwapWallTime":1784630683059.501} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683070.jpeg","width":1280,"height":720,"timestamp":22643.638,"frameSwapWallTime":1784630683068.523} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683117.jpeg","width":1280,"height":720,"timestamp":22690.95,"frameSwapWallTime":1784630683108.584} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683117.jpeg","width":1280,"height":720,"timestamp":22691.017,"frameSwapWallTime":1784630683109.802} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683117.jpeg","width":1280,"height":720,"timestamp":22691.059,"frameSwapWallTime":1784630683110.2458} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683131.jpeg","width":1280,"height":720,"timestamp":22705.094,"frameSwapWallTime":1784630683129.927} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683140.jpeg","width":1280,"height":720,"timestamp":22714.179,"frameSwapWallTime":1784630683139.256} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683150.jpeg","width":1280,"height":720,"timestamp":22723.985,"frameSwapWallTime":1784630683148.751} +{"type":"console","messageType":"info","text":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold","args":[{"preview":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools","value":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools"},{"preview":"font-weight:bold","value":"font-weight:bold"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":38559,"columnNumber":16},"time":22727.634,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683159.jpeg","width":1280,"height":720,"timestamp":22733.252,"frameSwapWallTime":1784630683158.087} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683173.jpeg","width":1280,"height":720,"timestamp":22746.456,"frameSwapWallTime":1784630683171.344} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683182.jpeg","width":1280,"height":720,"timestamp":22756.161,"frameSwapWallTime":1784630683180.9412} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683192.jpeg","width":1280,"height":720,"timestamp":22765.722,"frameSwapWallTime":1784630683190.655} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683201.jpeg","width":1280,"height":720,"timestamp":22774.85,"frameSwapWallTime":1784630683199.882} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683210.jpeg","width":1280,"height":720,"timestamp":22784.225,"frameSwapWallTime":1784630683208.9119} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683220.jpeg","width":1280,"height":720,"timestamp":22793.419,"frameSwapWallTime":1784630683218.236} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683236.jpeg","width":1280,"height":720,"timestamp":22809.995,"frameSwapWallTime":1784630683234.773} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683245.jpeg","width":1280,"height":720,"timestamp":22819.135,"frameSwapWallTime":1784630683243.9429} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683255.jpeg","width":1280,"height":720,"timestamp":22828.406,"frameSwapWallTime":1784630683253.239} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683271.jpeg","width":1280,"height":720,"timestamp":22845.182,"frameSwapWallTime":1784630683270.002} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683281.jpeg","width":1280,"height":720,"timestamp":22854.361,"frameSwapWallTime":1784630683279.2349} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683290.jpeg","width":1280,"height":720,"timestamp":22863.342,"frameSwapWallTime":1784630683288.1418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683298.jpeg","width":1280,"height":720,"timestamp":22872.215,"frameSwapWallTime":1784630683297.174} +{"type":"after","callId":"call@369","endTime":22995.186,"result":{"response":""},"afterSnapshot":"after@call@369"} +{"type":"console","messageType":"error","text":"Warning: Prop `%s` did not match. Server: %s Client: %s%s nonce \"\" \"MTM4ZTE0MjctYjI1Zi00N2NlLWFiNDctZjg3NzExMjNjZWY3\" \n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","args":[{"preview":"Warning: Prop `%s` did not match. Server: %s Client: %s%s","value":"Warning: Prop `%s` did not match. Server: %s Client: %s%s"},{"preview":"nonce","value":"nonce"},{"preview":"\"\"","value":"\"\""},{"preview":"\"MTM4ZTE0MjctYjI1Zi00N2NlLWFiNDctZjg3NzExMjNjZWY3\"","value":"\"MTM4ZTE0MjctYjI1Zi00N2NlLWFiNDctZjg3NzExMjNjZWY3\""},{"preview":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","value":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js","lineNumber":32,"columnNumber":21},"time":22995.634,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683423.jpeg","width":1280,"height":720,"timestamp":22996.495,"frameSwapWallTime":1784630683397.708} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683423.jpeg","width":1280,"height":720,"timestamp":22996.87,"frameSwapWallTime":1784630683398.8198} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683423.jpeg","width":1280,"height":720,"timestamp":22996.947,"frameSwapWallTime":1784630683399.2158} +{"type":"after","callId":"call@366","endTime":22998.007} +{"type":"frame-snapshot","snapshot":{"callId":"call@369","snapshotName":"after@call@369","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},["HEAD",{},["BASE",{"href":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"}],["META",{"charset":"utf-8"}],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["LINK",{"rel":"stylesheet","href":"/_next/static/css/app/layout.css?v=1784630682911","data-precedence":"next_static/css/app/layout.css"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},["A",{"class":"flex items-center px-5 h-20 flex-shrink-0 hover:opacity-80 transition-opacity","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-16 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-house w-5 h-5","aria-hidden":"true"},["path",{"d":"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{"d":"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],"Home"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/booking/lookup"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-ticket w-5 h-5","aria-hidden":"true"},["path",{"d":"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{"d":"M13 5v2"}],["path",{"d":"M13 17v2"}],["path",{"d":"M13 11v2"}]],"My Bookings"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/contact"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-phone w-5 h-5","aria-hidden":"true"},["path",{"d":"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],"Contact"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/help"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-question-mark w-5 h-5","aria-hidden":"true"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{"d":"M12 17h.01"}]],"Help"],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},["P",{"class":"px-3 pb-2 text-xs font-semibold uppercase tracking-wide text-gray-200/80"},"Your booking"],["OL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},"Search"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},"2"],["SPAN",{"class":"text-sm text-white font-semibold"},"Results"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"3"],["SPAN",{"class":"text-sm text-white/50"},"Passengers"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"4"],["SPAN",{"class":"text-sm text-white/50"},"Seats"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"5"],["SPAN",{"class":"text-sm text-white/50"},"Review"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"6"],["SPAN",{"class":"text-sm text-white/50"},"Payment"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"7"],["SPAN",{"class":"text-sm text-white/50"},"Done"]]]]],["DIV",{"class":"flex-shrink-0 border-t border-white/15 p-3 space-y-1"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium text-gray-100 hover:bg-white/10 hover:text-white transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-moon w-5 h-5","aria-hidden":"true"},["path",{"d":"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],"Dark mode"],["DIV",{"class":"relative"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2 rounded-lg hover:bg-white/10 transition-colors"},["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full bg-white text-[rgb(20_113_76)] font-semibold text-sm"},"T"],["SPAN",{"class":"flex-1 text-left text-sm font-medium text-white truncate"},"Test Passenger"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-200 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]]]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},["DIV",{"class":"lg:hidden relative bg-[rgb(20_113_76)] dark:bg-gray-900 border-b border-[rgb(16_89_60)] dark:border-gray-800 px-4 h-16 flex items-center flex-shrink-0"},["A",{"class":"flex items-center hover:opacity-80 transition-opacity","aria-label":"Go to home","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-14 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["DIV",{"class":"ml-auto"},["BUTTON",{"class":"p-2 rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors","title":"Current theme: Light. Click to cycle."},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-sun w-5 h-5"},["circle",{"cx":"12","cy":"12","r":"4"}],["path",{"d":"M12 2v2"}],["path",{"d":"M12 20v2"}],["path",{"d":"m4.93 4.93 1.41 1.41"}],["path",{"d":"m17.66 17.66 1.41 1.41"}],["path",{"d":"M2 12h2"}],["path",{"d":"M20 12h2"}],["path",{"d":"m6.34 17.66-1.41 1.41"}],["path",{"d":"m19.07 4.93-1.41 1.41"}]]]]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 invisible"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},"Search"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},"2"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},"Results"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"3"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Passengers"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"4"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Seats"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"5"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Review"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"6"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Payment"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"7"]],["DIV",{"class":"flex-1 h-0.5 invisible"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Done"]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"mb-8"},["BUTTON",{"class":"btn-ghost px-0 py-4 flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Modify search"],["H1",{"class":"section-title"},"Available schedules"],["DIV",{"class":"hidden sm:flex flex-wrap items-center gap-4 text-gray-600 dark:text-gray-400 mt-3"},["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar w-4 h-4"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}]],["SPAN",{},"Thursday, July 23, 2026"]],["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-users w-4 h-4"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["path",{"d":"M22 21v-2a4 4 0 0 0-3-3.87"}],["path",{"d":"M16 3.13a4 4 0 0 1 0 7.75"}]],["SPAN",{},"1"," adult(s), ","0"," ","child(ren)"]]]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg flex items-center justify-center flex-shrink-0"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-5 h-5 text-primary"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]]],["DIV",{},["DIV",{"class":"font-bold text-lg text-gray-900 dark:text-gray-100"},"UI-100"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400"},"UI Test Express"]]],["DIV",{"class":"flex items-center gap-2 md:gap-4"},["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"Jul 23 · Morning"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Alpha"]],["DIV",{"class":"flex-1 min-w-0 flex flex-col items-center"},["DIV",{"class":"flex items-center gap-1 md:gap-2 mb-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]],["SPAN",{},"4h 0m"]],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}]],["DIV",{"class":"flex items-center gap-1 mt-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{},"1"," stops"]]],["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5 flex items-center justify-center gap-1"},["SPAN",{},"Jul 23 · Afternoon"]],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Charlie"]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-1"},"Starting from"],["DIV",{"class":"text-3xl font-bold text-primary"},"ETB 750.00"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 mb-4"},"per adult"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Select"]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-100 dark:border-gray-800 flex flex-wrap gap-2"},["SPAN",{"class":"inline-flex items-center gap-1.5 text-xs font-medium px-2.5 py-1 rounded-full bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 flex-shrink-0"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],"Standard Coach",["SPAN",{"class":"font-semibold"},"45 left"]]]]]]]]]]]]],["NEXT-ROUTE-ANNOUNCER",{"style":"position: absolute;"},["template",{"__playwright_shadow_root_":"open"},["DIV",{"aria-live":"assertive","id":"__next-route-announcer__","role":"alert","style":"position: absolute; border: 0px; height: 1px; margin: -1px; padding: 0px; width: 1px; clip: rect(0px, 0px, 0px, 0px); overflow: hidden; white-space: nowrap; overflow-wrap: normal;"}]]]]],"viewport":{"width":1280,"height":720},"timestamp":23002.449,"wallTime":1784630683428,"collectionTime":1.300000000745058,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683430.jpeg","width":1280,"height":720,"timestamp":23003.924,"frameSwapWallTime":1784630683427.4038} +{"type":"before","callId":"call@374","startTime":23005.889,"class":"Response","method":"body","params":{},"stepId":"pw:api@27","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"after","callId":"call@374","endTime":23006.031,"result":{"binary":""}} +{"type":"before","callId":"call@376","startTime":23007.008,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"result-select-btn\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@29","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@376"} +{"type":"console","messageType":"warning","text":"WebSocket connection to 'ws://localhost:4000/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.","args":[],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/engine.io-client@6.6.5/node_modules/engine.io-client/build/esm/transports/websocket.js","lineNumber":89,"columnNumber":0},"time":23039.692,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"frame-snapshot","snapshot":{"callId":"call@376","snapshotName":"before@call@376","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[1,29]],["BODY",{"class":"font-sans antialiased"},[[1,108]],[[1,293]],[[1,296]],["DIV",{"class":"fixed bottom-6 right-6 z-40 flex flex-col items-end gap-3"},["BUTTON",{"aria-label":"Open support chat","class":"group relative flex items-center gap-2.5 rounded-full p-2 pr-2 text-white transition-transform duration-150 hover:-translate-y-0.5 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-[3px] focus-visible:outline-primary active:translate-y-0 motion-reduce:transition-none motion-reduce:hover:translate-y-0 sm:pr-5","style":"background: linear-gradient(135deg, rgb(20, 113, 76), rgb(30, 140, 96)); box-shadow: rgba(20, 113, 76, 0.4) 0px 10px 28px;"},["SPAN",{"class":"pointer-events-none absolute -inset-1 animate-pulse rounded-full ring-2 ring-primary/50 motion-reduce:animate-none"}],["SPAN",{"class":"relative grid h-[42px] w-[42px] shrink-0 place-items-center rounded-full bg-white/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"22","height":"22","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-headset"},["path",{"d":"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{"d":"M21 16v2a4 4 0 0 1-4 4h-5"}]]],["SPAN",{"class":"relative hidden text-left leading-tight sm:block"},["SPAN",{"class":"block whitespace-nowrap text-sm font-semibold"},"👋 Need help?"],["SPAN",{"class":"block whitespace-nowrap text-[11px] opacity-85"},"Chat with our team"]]]]]],"viewport":{"width":1280,"height":720},"timestamp":23039.817,"wallTime":1784630683456,"collectionTime":3.300000000745058,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@376","time":23039.95,"message":"waiting for getByTestId('result-select-btn').first()"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683467.jpeg","width":1280,"height":720,"timestamp":23040.912,"frameSwapWallTime":1784630683462.688} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683468.jpeg","width":1280,"height":720,"timestamp":23041.837,"frameSwapWallTime":1784630683466.6418} +{"type":"log","callId":"call@376","time":23050.501,"message":" locator resolved to "} +{"type":"log","callId":"call@376","time":23051.051,"message":"attempting click action"} +{"type":"log","callId":"call@376","time":23051.065,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683480.jpeg","width":1280,"height":720,"timestamp":23053.488,"frameSwapWallTime":1784630683478.209} +{"type":"log","callId":"call@376","time":23062.639,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@376","time":23062.643,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@376","time":23062.877,"message":" done scrolling"} +{"type":"input","callId":"call@376","point":{"x":1141.5,"y":340},"inputSnapshot":"input@call@376"} +{"type":"frame-snapshot","snapshot":{"callId":"call@376","snapshotName":"input@call@376","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[2,29]],["BODY",{"class":"font-sans antialiased"},[[2,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[2,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[2,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[2,264]],[[2,266]],[[2,268]],["BUTTON",{"__playwright_target__":"","data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[2,269]]]]]],[[2,283]]]]]]]]]]]],[[2,296]],[[1,11]]]],"viewport":{"width":1280,"height":720},"timestamp":23064.032,"wallTime":1784630683490,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@376","time":23064.799,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683494.jpeg","width":1280,"height":720,"timestamp":23067.502,"frameSwapWallTime":1784630683492.25} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683509.jpeg","width":1280,"height":720,"timestamp":23082.8,"frameSwapWallTime":1784630683507.542} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683518.jpeg","width":1280,"height":720,"timestamp":23091.751,"frameSwapWallTime":1784630683516.571} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683526.jpeg","width":1280,"height":720,"timestamp":23100.148,"frameSwapWallTime":1784630683524.886} +{"type":"log","callId":"call@376","time":23104.666,"message":" click action done"} +{"type":"log","callId":"call@376","time":23104.674,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@376","time":23104.844,"message":" navigations have finished"} +{"type":"after","callId":"call@376","endTime":23104.904,"afterSnapshot":"after@call@376"} +{"type":"frame-snapshot","snapshot":{"callId":"call@376","snapshotName":"after@call@376","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[3,29]],["BODY",{"class":"font-sans antialiased"},[[3,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[3,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[3,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"fixed inset-0 z-[99] bg-black/50 backdrop-blur-sm"}],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},["DIV",{"class":"flex items-center justify-between px-6 py-5 border-b border-gray-100 dark:border-gray-800 flex-shrink-0"},["DIV",{},["H2",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"Choose Your Coach"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-3.5 h-3.5"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],["SPAN",{"class":"font-medium"},"UI-100"],["SPAN",{"class":"text-gray-400"},"·"],["SPAN",{},"Alpha"," → ","Charlie"]]],["BUTTON",{"type":"button","class":"w-10 h-10 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800 transition-all","aria-label":"Close"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-gray-300 dark:border-gray-600 group-hover:border-primary/50"}],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-gray-100 dark:bg-gray-700 group-hover:bg-primary/10"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-gray-600 dark:text-gray-400 group-hover:text-primary"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]],["DIV",{"class":"flex-1 min-w-0"},["DIV",{"class":"flex items-start justify-between gap-2 mb-2"},["DIV",{},["H3",{"class":"font-bold text-base text-gray-900 dark:text-white leading-tight"},"Standard Coach"]]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"From"],["SPAN",{"class":"text-2xl font-bold tracking-tight text-gray-900 dark:text-white"},"ETB 750.00"]]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-200/60 dark:border-gray-700/60"},["DIV",{"class":"flex items-center justify-between mb-3"},["P",{"class":"text-xs font-bold text-gray-700 dark:text-gray-300 uppercase tracking-wider"},"Class Options"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"45"," seats left"]],["DIV",{"class":"space-y-2.5"},["DIV",{"class":"flex items-center justify-between py-2 px-3 rounded-lg bg-gray-50/80 dark:bg-gray-800/40"},["DIV",{"class":"flex items-center gap-2.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 text-gray-500 dark:text-gray-400"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],["DIV",{"class":"flex flex-col"},["SPAN",{"class":"text-sm font-medium text-gray-700 dark:text-gray-300"},"Economy Regular"],["SPAN",{"class":"text-[11px] font-medium text-gray-400 dark:text-gray-500"},"45 seats left"]]],["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-base font-bold tabular-nums text-gray-900 dark:text-white"},"750.00"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium ml-1"},"ETB"]]]]],["P",{"class":"mt-4 pt-3 border-t border-gray-200/60 dark:border-gray-700/60 text-xs text-gray-400 dark:text-gray-500 italic text-center"},"Click to select this coach"]]]]]],["STYLE",{},"\n @keyframes drawer-slide-in{from{transform:translateX(100%)}to{transform:translateX(0)}}\n @keyframes fade-in-up{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}\n @keyframes scale-in{from{transform:scale(0)}to{transform:scale(1)}}\n "],[[3,218]],[[1,6]]]]]]]]],[[3,296]],[[2,11]]]],"viewport":{"width":1280,"height":720},"timestamp":23106.216,"wallTime":1784630683532,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@378","startTime":23107.115,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"coach-option\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@30","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@378"} +{"type":"frame-snapshot","snapshot":{"callId":"call@378","snapshotName":"before@call@378","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[4,29]],["BODY",{"class":"font-sans antialiased"},[[4,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[4,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,0]],[[1,76]],[[1,78]],[[4,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[4,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[4,264]],[[4,266]],[[4,268]],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[4,269]]]]]],[[4,283]]]]]]]]]]]],[[4,296]],[[3,11]]]],"viewport":{"width":1280,"height":720},"timestamp":23107.885,"wallTime":1784630683534,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@378","time":23107.985,"message":"waiting for getByTestId('coach-option').first()"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683535.jpeg","width":1280,"height":720,"timestamp":23108.494,"frameSwapWallTime":1784630683533.357} +{"type":"log","callId":"call@378","time":23108.868,"message":" locator resolved to
"} +{"type":"log","callId":"call@378","time":23109.16,"message":"attempting click action"} +{"type":"log","callId":"call@378","time":23109.169,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@378","time":23129.436,"message":" element is not stable"} +{"type":"log","callId":"call@378","time":23129.446,"message":"retrying click action"} +{"type":"log","callId":"call@378","time":23129.467,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683576.jpeg","width":1280,"height":720,"timestamp":23149.511,"frameSwapWallTime":1784630683574.346} +{"type":"log","callId":"call@378","time":23167.487,"message":" element is not stable"} +{"type":"log","callId":"call@378","time":23167.496,"message":"retrying click action"} +{"type":"log","callId":"call@378","time":23167.497,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683595.jpeg","width":1280,"height":720,"timestamp":23168.602,"frameSwapWallTime":1784630683593.549} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683614.jpeg","width":1280,"height":720,"timestamp":23188.325,"frameSwapWallTime":1784630683613.208} +{"type":"log","callId":"call@378","time":23189.001,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@378","time":23207.274,"message":" element is not stable"} +{"type":"log","callId":"call@378","time":23207.287,"message":"retrying click action"} +{"type":"log","callId":"call@378","time":23207.288,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683634.jpeg","width":1280,"height":720,"timestamp":23208.238,"frameSwapWallTime":1784630683633.3079} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683655.jpeg","width":1280,"height":720,"timestamp":23228.817,"frameSwapWallTime":1784630683653.764} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683675.jpeg","width":1280,"height":720,"timestamp":23249.074,"frameSwapWallTime":1784630683674.063} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683696.jpeg","width":1280,"height":720,"timestamp":23269.996,"frameSwapWallTime":1784630683695.0222} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683717.jpeg","width":1280,"height":720,"timestamp":23290.582,"frameSwapWallTime":1784630683715.594} +{"type":"log","callId":"call@378","time":23308.756,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@378","time":23310.485,"message":" element is not stable"} +{"type":"log","callId":"call@378","time":23310.492,"message":"retrying click action"} +{"type":"log","callId":"call@378","time":23310.493,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683738.jpeg","width":1280,"height":720,"timestamp":23311.432,"frameSwapWallTime":1784630683736.553} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683759.jpeg","width":1280,"height":720,"timestamp":23332.42,"frameSwapWallTime":1784630683757.376} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683779.jpeg","width":1280,"height":720,"timestamp":23352.871,"frameSwapWallTime":1784630683777.8809} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683800.jpeg","width":1280,"height":720,"timestamp":23373.672,"frameSwapWallTime":1784630683798.7139} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683820.jpeg","width":1280,"height":720,"timestamp":23394.085,"frameSwapWallTime":1784630683819.129} +{"type":"log","callId":"call@378","time":23412.214,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683842.jpeg","width":1280,"height":720,"timestamp":23416.331,"frameSwapWallTime":1784630683841.393} +{"type":"log","callId":"call@378","time":23438.382,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@378","time":23438.399,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@378","time":23438.565,"message":" done scrolling"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683865.jpeg","width":1280,"height":720,"timestamp":23438.982,"frameSwapWallTime":1784630683863.8142} +{"type":"input","callId":"call@378","point":{"x":330.66,"y":246.25},"inputSnapshot":"input@call@378"} +{"type":"frame-snapshot","snapshot":{"callId":"call@378","snapshotName":"input@call@378","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[5,29]],["BODY",{"class":"font-sans antialiased"},[[5,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[5,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[2,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,26]],[[2,72]]]]]],[[2,78]],[[5,218]],[[1,6]]]]]]]]],[[5,296]],[[4,11]]]],"viewport":{"width":1280,"height":720},"timestamp":23440.135,"wallTime":1784630683866,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@378","time":23440.842,"message":" performing click action"} +{"type":"log","callId":"call@378","time":23446.376,"message":" click action done"} +{"type":"log","callId":"call@378","time":23446.382,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@378","time":23446.583,"message":" navigations have finished"} +{"type":"after","callId":"call@378","endTime":23446.633,"afterSnapshot":"after@call@378"} +{"type":"frame-snapshot","snapshot":{"callId":"call@378","snapshotName":"after@call@378","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[6,29]],["BODY",{"class":"font-sans antialiased"},[[6,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[6,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[6,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[3,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[3,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-primary"},["SPAN",{"class":"w-2.5 h-2.5 rounded-full bg-primary animate-scale-in"}]],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-primary/15 dark:bg-primary/25 shadow-inner"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-primary"},[[3,27]],[[3,28]],[[3,29]],[[3,30]]]],["DIV",{"class":"flex-1 min-w-0"},[[3,36]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},[[3,38]],["SPAN",{"class":"text-2xl font-bold tracking-tight text-primary"},[[3,39]]]]]]],[[3,69]],["BUTTON",{"type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},["SPAN",{},"Continue to Passenger Details"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-right w-4 h-4"},["path",{"d":"M5 12h14"}],["path",{"d":"m12 5 7 7-7 7"}]]]]]]]],[[3,78]],[[6,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[6,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[6,264]],[[6,266]],[[6,268]],["P",{"class":"text-xs text-primary font-semibold mb-2"},"Standard Coach"," selected"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Change"]]]],[[6,283]]]]]]]]]]]],[[6,296]],[[5,11]]]],"viewport":{"width":1280,"height":720},"timestamp":23447.5,"wallTime":1784630683873,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@380","startTime":23448.192,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"continue-passenger-details\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@31","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@380"} +{"type":"frame-snapshot","snapshot":{"callId":"call@380","snapshotName":"before@call@380","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[7,29]],["BODY",{"class":"font-sans antialiased"},[[7,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[7,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[7,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[4,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[1,1]],[[1,15]]]]]],[[4,78]],[[7,218]],[[1,30]]]]]]]]],[[7,296]],[[6,11]]]],"viewport":{"width":1280,"height":720},"timestamp":23448.735,"wallTime":1784630683875,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@380","time":23448.829,"message":"waiting for getByTestId('continue-passenger-details').first()"} +{"type":"log","callId":"call@380","time":23449.636,"message":" locator resolved to "} +{"type":"log","callId":"call@380","time":23449.947,"message":"attempting click action"} +{"type":"log","callId":"call@380","time":23449.961,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683885.jpeg","width":1280,"height":720,"timestamp":23458.371,"frameSwapWallTime":1784630683883.453} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683903.jpeg","width":1280,"height":720,"timestamp":23476.892,"frameSwapWallTime":1784630683901.867} +{"type":"log","callId":"call@380","time":23495.096,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@380","time":23495.107,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@380","time":23495.529,"message":" done scrolling"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683922.jpeg","width":1280,"height":720,"timestamp":23495.96,"frameSwapWallTime":1784630683921.0352} +{"type":"input","callId":"call@380","point":{"x":330.66,"y":346.5},"inputSnapshot":"input@call@380"} +{"type":"frame-snapshot","snapshot":{"callId":"call@380","snapshotName":"input@call@380","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[8,29]],["BODY",{"class":"font-sans antialiased"},[[8,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[8,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[8,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[5,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,1]],["DIV",{"class":"flex flex-col"},[[2,8]],[[5,69]],["BUTTON",{"__playwright_target__":"","type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},[[2,10]],[[2,13]]]]]]]],[[5,78]],[[8,218]],[[2,30]]]]]]]]],[[8,296]],[[7,11]]]],"viewport":{"width":1280,"height":720},"timestamp":23496.944,"wallTime":1784630683923,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@380","time":23497.953,"message":" performing click action"} +{"type":"log","callId":"call@380","time":23503.163,"message":" click action done"} +{"type":"log","callId":"call@380","time":23503.167,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@380","time":23503.421,"message":" navigations have finished"} +{"type":"after","callId":"call@380","endTime":23503.475,"afterSnapshot":"after@call@380"} +{"type":"frame-snapshot","snapshot":{"callId":"call@380","snapshotName":"after@call@380","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":[[1,14]],"viewport":{"width":1280,"height":720},"timestamp":23504.086,"wallTime":1784630683930,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@382","startTime":23504.799,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"f2bc6e321f36a350a920667b1c421c3f","phase":"before","event":""},"stepId":"pw:api@32","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"log","callId":"call@382","time":23504.824,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683946.jpeg","width":1280,"height":720,"timestamp":23519.405,"frameSwapWallTime":1784630683940.897} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683963.jpeg","width":1280,"height":720,"timestamp":23536.9,"frameSwapWallTime":1784630683961.308} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630683983.jpeg","width":1280,"height":720,"timestamp":23556.518,"frameSwapWallTime":1784630683981.544} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684002.jpeg","width":1280,"height":720,"timestamp":23575.552,"frameSwapWallTime":1784630684000.692} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684032.jpeg","width":1280,"height":720,"timestamp":23606.269,"frameSwapWallTime":1784630684027.956} +{"type":"log","callId":"call@382","time":23606.331,"message":" navigated to \"http://localhost:5174/booking/auth-check\""} +{"type":"after","callId":"call@382","endTime":23606.338} +{"type":"before","callId":"call@387","startTime":23606.376,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"35d3bcb348225b17d6d50fb685031d78","phase":"before","event":""},"stepId":"pw:api@33","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"log","callId":"call@387","time":23606.386,"message":"waiting for navigation until \"load\""} +{"type":"before","callId":"call@390","startTime":23606.401,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue as guest/i]","strict":true,"timeout":15000},"stepId":"pw:api@34","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@390"} +{"type":"frame-snapshot","snapshot":{"callId":"call@390","snapshotName":"before@call@390","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/auth-check","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[10,0]],[[10,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[10,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[10,36]],[[10,43]],[[10,47]],[[10,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[10,55]],["OL",{"class":"space-y-1"},[[10,61]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[10,64]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[10,67]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[10,69]]]],[[10,76]],[[10,81]],[[10,86]],[[10,91]]]]],[[10,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[10,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[10,132]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[10,139]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[10,142]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[10,143]]]],[[10,146]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[10,148]]]],[[10,159]],[[10,168]],[[10,177]],[[10,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center px-4"},["DIV",{"class":"w-full max-w-sm"},["H1",{"class":"text-2xl font-bold text-center text-gray-900 dark:text-gray-100 mb-1"},"Continue your booking"],["P",{"class":"text-sm text-center text-gray-500 dark:text-gray-400 mb-8"},"Choose how you'd like to proceed"],["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"relative"},["BUTTON",{"class":"w-full flex items-center justify-center gap-2.5 px-5 py-3.5 bg-primary hover:bg-primary/90 active:scale-[0.98] text-white font-semibold rounded-xl transition-all shadow-md shadow-primary/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-user-plus w-5 h-5 flex-shrink-0"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["line",{"x1":"19","x2":"19","y1":"8","y2":"14"}],["line",{"x1":"22","x2":"16","y1":"11","y2":"11"}]],"Continue as guest"],["DIV",{"role":"tooltip","class":"absolute bottom-[calc(100%+8px)] left-1/2 -translate-x-1/2 w-52 bg-gray-900 dark:bg-gray-700 text-white text-xs rounded-lg px-3 py-2.5 shadow-xl pointer-events-none transition-all duration-150 z-50 opacity-0 translate-y-1"},["UL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"No account required"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Quick checkout"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Create account later (optional)"]],["DIV",{"class":"absolute top-full left-1/2 -translate-x-1/2 border-4 border-transparent border-t-gray-900 dark:border-t-gray-700"}]]]],["DIV",{"class":"mt-8 text-center"},["BUTTON",{"class":"inline-flex items-center gap-1.5 text-sm text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back to results"]]]]]]]],[[10,296]],[[9,11]]]],"viewport":{"width":1280,"height":720},"timestamp":23607.738,"wallTime":1784630684033,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@390","time":23607.955,"message":"waiting for getByRole('button', { name: /continue as guest/i })"} +{"type":"log","callId":"call@390","time":23614.108,"message":" locator resolved to "} +{"type":"log","callId":"call@390","time":23615.47,"message":"attempting click action"} +{"type":"log","callId":"call@390","time":23615.494,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684042.jpeg","width":1280,"height":720,"timestamp":23615.894,"frameSwapWallTime":1784630684039.984} +{"type":"log","callId":"call@390","time":23634.558,"message":" element is not stable"} +{"type":"log","callId":"call@390","time":23634.57,"message":"retrying click action"} +{"type":"log","callId":"call@390","time":23634.588,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684062.jpeg","width":1280,"height":720,"timestamp":23635.378,"frameSwapWallTime":1784630684060.369} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684065.jpeg","width":1280,"height":720,"timestamp":23639.1,"frameSwapWallTime":1784630684064.2039} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684069.jpeg","width":1280,"height":720,"timestamp":23643.178,"frameSwapWallTime":1784630684068.1938} +{"type":"log","callId":"call@390","time":23644.954,"message":" element is not stable"} +{"type":"log","callId":"call@390","time":23644.961,"message":"retrying click action"} +{"type":"log","callId":"call@390","time":23644.963,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684077.jpeg","width":1280,"height":720,"timestamp":23650.346,"frameSwapWallTime":1784630684075.334} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684086.jpeg","width":1280,"height":720,"timestamp":23659.555,"frameSwapWallTime":1784630684084.475} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684102.jpeg","width":1280,"height":720,"timestamp":23675.974,"frameSwapWallTime":1784630684101.075} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684110.jpeg","width":1280,"height":720,"timestamp":23683.958,"frameSwapWallTime":1784630684109.0479} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684119.jpeg","width":1280,"height":720,"timestamp":23692.422,"frameSwapWallTime":1784630684117.418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684135.jpeg","width":1280,"height":720,"timestamp":23708.438,"frameSwapWallTime":1784630684133.364} +{"type":"log","callId":"call@390","time":23748.521,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684175.jpeg","width":1280,"height":720,"timestamp":23749.152,"frameSwapWallTime":1784630684167.3} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684176.jpeg","width":1280,"height":720,"timestamp":23749.511,"frameSwapWallTime":1784630684167.9739} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684176.jpeg","width":1280,"height":720,"timestamp":23749.549,"frameSwapWallTime":1784630684168.356} +{"type":"log","callId":"call@387","time":23752.304,"message":" navigated to \"http://localhost:5174/booking/passengers\""} +{"type":"after","callId":"call@387","endTime":23752.312} +{"type":"before","callId":"call@394","startTime":23752.375,"title":"Wait for load state \"load\"","class":"Page","method":"__waitInfo__","params":{"waitId":"c9a12b2237251b4e2e7ddcc21e579088","phase":"before","event":""},"stepId":"pw:api@35","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"log","callId":"call@394","time":23752.398,"message":" not waiting, \"load\" event already fired"} +{"type":"after","callId":"call@394","endTime":23752.403} +{"type":"before","callId":"call@398","startTime":23752.429,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@36","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@398"} +{"type":"before","callId":"call@400","startTime":23752.621,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@37","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@400"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684179.jpeg","width":1280,"height":720,"timestamp":23752.834,"frameSwapWallTime":1784630684177.602} +{"type":"frame-snapshot","snapshot":{"callId":"call@398","snapshotName":"before@call@398","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[11,0]],[[11,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[11,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Passenger details"],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","1"," ","(Primary)"," - Adult",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Ethiopian",")"]],["DIV",{"class":"text-center py-8"},["P",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-4"},"Fayda verification is currently unavailable"],["BUTTON",{"type":"button","class":"btn-primary"},"Enter details manually"]]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},"Continue to seat selection"]]]]]]]]]],[[11,296]],[[10,11]]]],"viewport":{"width":1280,"height":720},"timestamp":23753.523,"wallTime":1784630684179,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@398","time":23753.712,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@400","snapshotName":"before@call@400","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,62]],"viewport":{"width":1280,"height":720},"timestamp":23753.959,"wallTime":1784630684180,"collectionTime":0.20000000298023224,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@400","time":23754.089,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"log","callId":"call@400","time":23756.199,"message":" locator resolved to visible "} +{"type":"after","callId":"call@400","endTime":23756.214,"result":{},"afterSnapshot":"after@call@400"} +{"type":"frame-snapshot","snapshot":{"callId":"call@400","snapshotName":"after@call@400","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,62]],"viewport":{"width":1280,"height":720},"timestamp":23756.678,"wallTime":1784630684183,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@402","startTime":23757.232,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true},"stepId":"pw:api@38","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@402"} +{"type":"frame-snapshot","snapshot":{"callId":"call@402","snapshotName":"before@call@402","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,62]],"viewport":{"width":1280,"height":720},"timestamp":23757.695,"wallTime":1784630684184,"collectionTime":0.20000000298023224,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@402","time":23757.772,"message":" checking visibility of locator('input[name=\"passengers.0.name\"]')"} +{"type":"after","callId":"call@402","endTime":23758.334,"result":{"value":false},"afterSnapshot":"after@call@402"} +{"type":"frame-snapshot","snapshot":{"callId":"call@402","snapshotName":"after@call@402","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,62]],"viewport":{"width":1280,"height":720},"timestamp":23761.243,"wallTime":1784630684185,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684188.jpeg","width":1280,"height":720,"timestamp":23761.336,"frameSwapWallTime":1784630684185.8489} +{"type":"log","callId":"call@390","time":23762.064,"message":"element was detached from the DOM, retrying"} +{"type":"before","callId":"call@404","startTime":23762.288,"class":"Frame","method":"isVisible","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true},"stepId":"pw:api@39","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@404"} +{"type":"frame-snapshot","snapshot":{"callId":"call@404","snapshotName":"before@call@404","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,62]],"viewport":{"width":1280,"height":720},"timestamp":23762.919,"wallTime":1784630684189,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@404","time":23763.121,"message":" checking visibility of locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"after","callId":"call@404","endTime":23763.852,"result":{"value":true},"afterSnapshot":"after@call@404"} +{"type":"frame-snapshot","snapshot":{"callId":"call@404","snapshotName":"after@call@404","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,62]],"viewport":{"width":1280,"height":720},"timestamp":23764.37,"wallTime":1784630684190,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@406","startTime":23764.996,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@40","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@406"} +{"type":"frame-snapshot","snapshot":{"callId":"call@406","snapshotName":"before@call@406","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,62]],"viewport":{"width":1280,"height":720},"timestamp":23765.474,"wallTime":1784630684192,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@406","time":23765.591,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"log","callId":"call@406","time":23766.542,"message":" locator resolved to "} +{"type":"log","callId":"call@406","time":23766.807,"message":"attempting click action"} +{"type":"log","callId":"call@406","time":23766.815,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684195.jpeg","width":1280,"height":720,"timestamp":23768.596,"frameSwapWallTime":1784630684193.537} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684204.jpeg","width":1280,"height":720,"timestamp":23777.534,"frameSwapWallTime":1784630684202.54} +{"type":"log","callId":"call@406","time":23778.404,"message":" element is not stable"} +{"type":"log","callId":"call@406","time":23778.412,"message":"retrying click action"} +{"type":"log","callId":"call@406","time":23778.436,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684220.jpeg","width":1280,"height":720,"timestamp":23794.088,"frameSwapWallTime":1784630684219.0608} +{"type":"log","callId":"call@406","time":23794.882,"message":" element is not stable"} +{"type":"log","callId":"call@406","time":23794.889,"message":"retrying click action"} +{"type":"log","callId":"call@406","time":23794.891,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684227.jpeg","width":1280,"height":720,"timestamp":23801.315,"frameSwapWallTime":1784630684226.282} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684237.jpeg","width":1280,"height":720,"timestamp":23810.825,"frameSwapWallTime":1784630684235.729} +{"type":"log","callId":"call@406","time":23816.768,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684253.jpeg","width":1280,"height":720,"timestamp":23827.26,"frameSwapWallTime":1784630684252.209} +{"type":"log","callId":"call@406","time":23828.165,"message":" element is not stable"} +{"type":"log","callId":"call@406","time":23828.172,"message":"retrying click action"} +{"type":"log","callId":"call@406","time":23828.173,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684261.jpeg","width":1280,"height":720,"timestamp":23834.543,"frameSwapWallTime":1784630684259.529} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684270.jpeg","width":1280,"height":720,"timestamp":23843.834,"frameSwapWallTime":1784630684268.7869} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684286.jpeg","width":1280,"height":720,"timestamp":23860.235,"frameSwapWallTime":1784630684285.229} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684295.jpeg","width":1280,"height":720,"timestamp":23868.541,"frameSwapWallTime":1784630684293.4722} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684303.jpeg","width":1280,"height":720,"timestamp":23877.241,"frameSwapWallTime":1784630684302.174} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684320.jpeg","width":1280,"height":720,"timestamp":23893.65,"frameSwapWallTime":1784630684318.5881} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684328.jpeg","width":1280,"height":720,"timestamp":23901.946,"frameSwapWallTime":1784630684326.896} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684336.jpeg","width":1280,"height":720,"timestamp":23910.172,"frameSwapWallTime":1784630684335.207} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684353.jpeg","width":1280,"height":720,"timestamp":23927.038,"frameSwapWallTime":1784630684352.012} +{"type":"log","callId":"call@406","time":23928.934,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684362.jpeg","width":1280,"height":720,"timestamp":23935.472,"frameSwapWallTime":1784630684360.465} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684369.jpeg","width":1280,"height":720,"timestamp":23943.026,"frameSwapWallTime":1784630684367.843} +{"type":"log","callId":"call@406","time":23945.612,"message":" element is not stable"} +{"type":"log","callId":"call@406","time":23945.619,"message":"retrying click action"} +{"type":"log","callId":"call@406","time":23945.62,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684378.jpeg","width":1280,"height":720,"timestamp":23952.306,"frameSwapWallTime":1784630684377.2668} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684395.jpeg","width":1280,"height":720,"timestamp":23969.004,"frameSwapWallTime":1784630684393.7969} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684403.jpeg","width":1280,"height":720,"timestamp":23977.181,"frameSwapWallTime":1784630684402.048} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684412.jpeg","width":1280,"height":720,"timestamp":23985.632,"frameSwapWallTime":1784630684410.499} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684428.jpeg","width":1280,"height":720,"timestamp":24001.554,"frameSwapWallTime":1784630684426.492} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684437.jpeg","width":1280,"height":720,"timestamp":24010.493,"frameSwapWallTime":1784630684435.44} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684445.jpeg","width":1280,"height":720,"timestamp":24018.766,"frameSwapWallTime":1784630684443.668} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684454.jpeg","width":1280,"height":720,"timestamp":24027.413,"frameSwapWallTime":1784630684452.2969} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684470.jpeg","width":1280,"height":720,"timestamp":24044.181,"frameSwapWallTime":1784630684469.121} +{"type":"log","callId":"call@406","time":24046.841,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684478.jpeg","width":1280,"height":720,"timestamp":24051.925,"frameSwapWallTime":1784630684476.9338} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684486.jpeg","width":1280,"height":720,"timestamp":24060.161,"frameSwapWallTime":1784630684485.146} +{"type":"log","callId":"call@406","time":24062.194,"message":" element is not stable"} +{"type":"log","callId":"call@406","time":24062.199,"message":"retrying click action"} +{"type":"log","callId":"call@406","time":24062.2,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684503.jpeg","width":1280,"height":720,"timestamp":24077.019,"frameSwapWallTime":1784630684501.95} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684510.jpeg","width":1280,"height":720,"timestamp":24083.696,"frameSwapWallTime":1784630684508.73} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684518.jpeg","width":1280,"height":720,"timestamp":24091.4,"frameSwapWallTime":1784630684516.391} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684526.jpeg","width":1280,"height":720,"timestamp":24099.77,"frameSwapWallTime":1784630684524.799} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684543.jpeg","width":1280,"height":720,"timestamp":24116.851,"frameSwapWallTime":1784630684541.697} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684550.jpeg","width":1280,"height":720,"timestamp":24124.187,"frameSwapWallTime":1784630684549.074} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684560.jpeg","width":1280,"height":720,"timestamp":24133.472,"frameSwapWallTime":1784630684558.42} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684576.jpeg","width":1280,"height":720,"timestamp":24149.906,"frameSwapWallTime":1784630684574.843} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684584.jpeg","width":1280,"height":720,"timestamp":24158.197,"frameSwapWallTime":1784630684583.1858} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684593.jpeg","width":1280,"height":720,"timestamp":24166.52,"frameSwapWallTime":1784630684591.513} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684609.jpeg","width":1280,"height":720,"timestamp":24182.492,"frameSwapWallTime":1784630684607.41} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684618.jpeg","width":1280,"height":720,"timestamp":24191.768,"frameSwapWallTime":1784630684616.6748} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684626.jpeg","width":1280,"height":720,"timestamp":24200.011,"frameSwapWallTime":1784630684624.918} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684634.jpeg","width":1280,"height":720,"timestamp":24208.257,"frameSwapWallTime":1784630684633.2048} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684651.jpeg","width":1280,"height":720,"timestamp":24225.106,"frameSwapWallTime":1784630684649.953} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684659.jpeg","width":1280,"height":720,"timestamp":24233.184,"frameSwapWallTime":1784630684658.166} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684668.jpeg","width":1280,"height":720,"timestamp":24241.431,"frameSwapWallTime":1784630684666.456} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684685.jpeg","width":1280,"height":720,"timestamp":24258.677,"frameSwapWallTime":1784630684683.444} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684693.jpeg","width":1280,"height":720,"timestamp":24266.728,"frameSwapWallTime":1784630684691.555} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630684901.jpeg","width":1280,"height":720,"timestamp":24475.021,"frameSwapWallTime":1784630684899.904} +{"type":"log","callId":"call@406","time":24563.34,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@406","time":24578.915,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@406","time":24578.922,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@406","time":24579.475,"message":" done scrolling"} +{"type":"input","callId":"call@406","point":{"x":768,"y":254},"inputSnapshot":"input@call@406"} +{"type":"frame-snapshot","snapshot":{"callId":"call@406","snapshotName":"input@call@406","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[8,62]],"viewport":{"width":1280,"height":720},"timestamp":24580.484,"wallTime":1784630685007,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@406","time":24581.371,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685010.jpeg","width":1280,"height":720,"timestamp":24583.64,"frameSwapWallTime":1784630685008.3699} +{"type":"log","callId":"call@406","time":24588.914,"message":" click action done"} +{"type":"log","callId":"call@406","time":24588.924,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@406","time":24590.698,"message":" navigations have finished"} +{"type":"after","callId":"call@406","endTime":24590.8,"afterSnapshot":"after@call@406"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685018.jpeg","width":1280,"height":720,"timestamp":24592.094,"frameSwapWallTime":1784630685016.9539} +{"type":"frame-snapshot","snapshot":{"callId":"call@406","snapshotName":"after@call@406","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[9,27]],["BODY",{"class":"font-sans antialiased"},[[10,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[20,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[10,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[9,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[9,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"ETHIOPIAN","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.0.nationality"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Phone Number *"],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},["DIV",{"class":"flex items-center gap-1.5 px-3 py-2.5 bg-gray-50 dark:bg-gray-800 border-r border-gray-300 dark:border-gray-600 select-none flex-shrink-0"},["SPAN",{"class":"text-sm leading-none"},"🇪🇹"],["SPAN",{"class":"text-xs font-semibold text-gray-600 dark:text-gray-300"},"+251"]],["INPUT",{"__playwright_value_":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],["P",{"class":"text-xs text-gray-400 dark:text-gray-500 mt-1"},"Format: ","+251912345678 or 0912345678"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Email (optional)"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"email@example.com","type":"email","name":"passengers.0.email"}]]]]],[[9,52]]]]]]]]]],[[20,296]],[[19,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24592.292,"wallTime":1784630685018,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@408","startTime":24593.005,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@41","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@408"} +{"type":"frame-snapshot","snapshot":{"callId":"call@408","snapshotName":"before@call@408","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,66]],"viewport":{"width":1280,"height":720},"timestamp":24593.517,"wallTime":1784630685020,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@408","time":24593.63,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"log","callId":"call@408","time":24594.394,"message":" locator resolved to visible "} +{"type":"after","callId":"call@408","endTime":24594.454,"result":{},"afterSnapshot":"after@call@408"} +{"type":"frame-snapshot","snapshot":{"callId":"call@408","snapshotName":"after@call@408","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,66]],"viewport":{"width":1280,"height":720},"timestamp":24594.882,"wallTime":1784630685021,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@410","startTime":24595.503,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"value":"Adult 1","timeout":15000},"stepId":"pw:api@42","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@410"} +{"type":"frame-snapshot","snapshot":{"callId":"call@410","snapshotName":"before@call@410","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,66]],"viewport":{"width":1280,"height":720},"timestamp":24596.093,"wallTime":1784630685022,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@410","time":24596.191,"message":"waiting for locator('input[name=\"passengers.0.name\"]')"} +{"type":"log","callId":"call@410","time":24596.917,"message":" locator resolved to "} +{"type":"log","callId":"call@410","time":24597.214,"message":" fill(\"Adult 1\")"} +{"type":"log","callId":"call@410","time":24597.221,"message":"attempting fill action"} +{"type":"input","callId":"call@410","inputSnapshot":"input@call@410"} +{"type":"frame-snapshot","snapshot":{"callId":"call@410","snapshotName":"input@call@410","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[13,27]],["BODY",{"class":"font-sans antialiased"},[[14,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[24,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[14,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[13,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[13,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[4,1]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[4,21]],[[4,31]],[[4,35]],[[4,49]],[[4,53]]]]],[[13,52]]]]]]]]]],[[24,296]],[[23,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24597.798,"wallTime":1784630685024,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@410","time":24597.867,"message":" waiting for element to be visible, enabled and editable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685027.jpeg","width":1280,"height":720,"timestamp":24601.102,"frameSwapWallTime":1784630685025.7449} +{"type":"after","callId":"call@410","endTime":24602.572,"afterSnapshot":"after@call@410"} +{"type":"frame-snapshot","snapshot":{"callId":"call@410","snapshotName":"after@call@410","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[14,27]],["BODY",{"class":"font-sans antialiased"},[[15,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[25,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[15,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[14,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[14,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[5,1]],["INPUT",{"__playwright_value_":"Adult 1","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[5,21]],[[5,31]],[[5,35]],[[5,49]],[[5,53]]]]],[[14,52]]]]]]]]]],[[25,296]],[[24,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24603.173,"wallTime":1784630685029,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@412","startTime":24603.998,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.0.gender\"]","strict":true,"options":[{"valueOrLabel":"Male"}],"timeout":15000},"stepId":"pw:api@43","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@412"} +{"type":"frame-snapshot","snapshot":{"callId":"call@412","snapshotName":"before@call@412","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[15,27]],["BODY",{"class":"font-sans antialiased"},[[16,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[26,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[16,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[15,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[15,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[6,1]],["INPUT",{"__playwright_value_":"Adult 1","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[6,21]],[[6,31]],[[6,35]],[[6,49]],[[6,53]]]]],[[15,52]]]]]]]]]],[[26,296]],[[25,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24604.636,"wallTime":1784630685031,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@412","time":24604.783,"message":"waiting for locator('select[name=\"passengers.0.gender\"]')"} +{"type":"log","callId":"call@412","time":24605.478,"message":" locator resolved to "} +{"type":"log","callId":"call@412","time":24605.759,"message":"attempting select option action"} +{"type":"input","callId":"call@412","inputSnapshot":"input@call@412"} +{"type":"frame-snapshot","snapshot":{"callId":"call@412","snapshotName":"input@call@412","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[16,27]],["BODY",{"class":"font-sans antialiased"},[[17,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[27,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[17,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[16,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[16,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[7,21]],["DIV",{},[[7,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},[[7,25]],[[7,27]],[[7,29]]]],[[7,35]],[[7,49]],[[7,53]]]]],[[16,52]]]]]]]]]],[[27,296]],[[26,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24606.268,"wallTime":1784630685032,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@412","time":24606.321,"message":" waiting for element to be visible and enabled"} +{"type":"log","callId":"call@412","time":24607.979,"message":" selected specified option(s)"} +{"type":"after","callId":"call@412","endTime":24608.023,"result":{"values":["Male"]},"afterSnapshot":"after@call@412"} +{"type":"frame-snapshot","snapshot":{"callId":"call@412","snapshotName":"after@call@412","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[17,27]],["BODY",{"class":"font-sans antialiased"},[[18,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[28,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[18,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[17,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[17,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[8,21]],["DIV",{},[[8,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[8,24]]],["OPTION",{"__playwright_selected_":"true","value":"Male"},[[8,26]]],[[8,29]]]],[[8,35]],[[8,49]],[[8,53]]]]],[[17,52]]]]]]]]]],[[28,296]],[[27,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24608.757,"wallTime":1784630685035,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@414","startTime":24609.329,"class":"Frame","method":"fill","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> input[type=\"tel\"] >> nth=0","strict":true,"value":"912345678","timeout":15000},"stepId":"pw:api@44","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@414"} +{"type":"frame-snapshot","snapshot":{"callId":"call@414","snapshotName":"before@call@414","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[18,27]],["BODY",{"class":"font-sans antialiased"},[[19,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[29,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[19,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[18,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[18,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[9,21]],["DIV",{},[[9,23]],["SELECT",{"name":"passengers.0.gender","class":"input-field "},[[1,0]],[[1,1]],[[9,29]]]],[[9,35]],[[9,49]],[[9,53]]]]],[[18,52]]]]]]]]]],[[29,296]],[[28,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24609.827,"wallTime":1784630685036,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@414","time":24609.923,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).locator('input[type=\"tel\"]').first()"} +{"type":"log","callId":"call@414","time":24610.843,"message":" locator resolved to "} +{"type":"log","callId":"call@414","time":24611.095,"message":" fill(\"912345678\")"} +{"type":"log","callId":"call@414","time":24611.098,"message":"attempting fill action"} +{"type":"input","callId":"call@414","inputSnapshot":"input@call@414"} +{"type":"frame-snapshot","snapshot":{"callId":"call@414","snapshotName":"input@call@414","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[19,27]],["BODY",{"class":"font-sans antialiased"},[[20,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[30,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[20,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[19,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[19,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],[[10,21]],[[1,1]],[[10,35]],["DIV",{},[[10,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[10,42]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],[[10,47]]]],[[10,53]]]]],[[19,52]]]]]]]]]],[[30,296]],[[29,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24612.172,"wallTime":1784630685038,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@414","time":24612.244,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@414","endTime":24614.534,"afterSnapshot":"after@call@414"} +{"type":"frame-snapshot","snapshot":{"callId":"call@414","snapshotName":"after@call@414","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[20,27]],["BODY",{"class":"font-sans antialiased"},[[21,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[31,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[21,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[20,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[20,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],[[11,21]],[[2,1]],[[11,35]],["DIV",{},[[11,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[11,42]],["INPUT",{"__playwright_value_":"912345678","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[11,47]]]],[[11,53]]]]],[[20,52]]]]]]]]]],[[31,296]],[[30,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24615.374,"wallTime":1784630685041,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@416","startTime":24616.134,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@45","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@416"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685043.jpeg","width":1280,"height":720,"timestamp":24616.914,"frameSwapWallTime":1784630685041.533} +{"type":"frame-snapshot","snapshot":{"callId":"call@416","snapshotName":"before@call@416","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[21,27]],["BODY",{"class":"font-sans antialiased"},[[22,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[32,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[22,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[21,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[21,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],[[12,21]],[[3,1]],[[12,35]],["DIV",{},[[12,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[12,42]],["INPUT",{"__playwright_value_":"912345678","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[12,47]]]],[[12,53]]]]],[[21,52]]]]]]]]]],[[32,296]],[[31,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24616.988,"wallTime":1784630685043,"collectionTime":0.20000000298023224,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@416","time":24617.095,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"log","callId":"call@416","time":24618.279,"message":" locator resolved to "} +{"type":"log","callId":"call@416","time":24618.523,"message":"attempting click action"} +{"type":"log","callId":"call@416","time":24618.533,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685052.jpeg","width":1280,"height":720,"timestamp":24626.011,"frameSwapWallTime":1784630685050.748} +{"type":"log","callId":"call@416","time":24629.117,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@416","time":24629.123,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@416","time":24629.309,"message":" done scrolling"} +{"type":"input","callId":"call@416","point":{"x":1007.5,"y":210},"inputSnapshot":"input@call@416"} +{"type":"frame-snapshot","snapshot":{"callId":"call@416","snapshotName":"input@call@416","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[22,27]],["BODY",{"class":"font-sans antialiased"},[[23,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[33,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[23,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[22,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[22,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[7,1]],["DIV",{},[[13,5]],["DIV",{},["BUTTON",{"__playwright_target__":"","type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[13,7]],[[13,18]]]]],[[4,1]],[[13,35]],[[1,3]],[[13,53]]]]],[[22,52]]]]]]]]]],[[33,296]],[[32,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24630.353,"wallTime":1784630685056,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@416","time":24630.847,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685060.jpeg","width":1280,"height":720,"timestamp":24634.148,"frameSwapWallTime":1784630685058.903} +{"type":"log","callId":"call@416","time":24640.245,"message":" click action done"} +{"type":"log","callId":"call@416","time":24640.25,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@416","time":24640.467,"message":" navigations have finished"} +{"type":"after","callId":"call@416","endTime":24640.546,"afterSnapshot":"after@call@416"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685068.jpeg","width":1280,"height":720,"timestamp":24641.672,"frameSwapWallTime":1784630685066.3828} +{"type":"frame-snapshot","snapshot":{"callId":"call@416","snapshotName":"after@call@416","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[23,27]],["BODY",{"class":"font-sans antialiased"},[[24,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[34,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[24,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[23,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[23,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],["DIV",{},[[14,5]],["DIV",{},[[1,0]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2020"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2019"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2018"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2017"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2016"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2015"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2014"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2013"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2012"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2011"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2010"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2009"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2008"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2007"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2006"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2005"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2004"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2003"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2002"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2001"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2000"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1999"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1998"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1997"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1996"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1995"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1994"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1993"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1992"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1991"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1990"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1989"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1988"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1987"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1986"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1985"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1984"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1983"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1982"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1981"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1980"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1979"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1978"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1977"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1976"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1975"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1974"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1973"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1972"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1971"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1970"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1969"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1968"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1967"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1966"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1965"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1964"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1963"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1962"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1961"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1960"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1959"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1958"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1957"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1956"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1955"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1954"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1953"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1952"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1951"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1950"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1949"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1948"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1947"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1946"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1945"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1944"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1943"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1942"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1941"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1940"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1939"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1938"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1937"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1936"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1935"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1934"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1933"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1932"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1931"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1930"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1929"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1928"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1927"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1926"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1925"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1924"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1923"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1922"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1921"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1920"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1919"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1918"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1917"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1916"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2000"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[5,1]],[[14,35]],[[2,3]],[[14,53]]]]],[[23,52]]]]]]]]]],[[34,296]],[[33,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24642.739,"wallTime":1784630685068,"collectionTime":1.1000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@418","startTime":24643.621,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@46","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@418"} +{"type":"frame-snapshot","snapshot":{"callId":"call@418","snapshotName":"before@call@418","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[24,27]],["BODY",{"class":"font-sans antialiased"},[[25,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[35,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[25,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[24,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[24,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[9,1]],["DIV",{},[[15,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[15,7]],[[15,18]]],[[1,0]],[[1,341]],[[1,343]]]],[[6,1]],[[15,35]],[[3,3]],[[15,53]]]]],[[24,52]]]]]]]]]],[[35,296]],[[34,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24644.484,"wallTime":1784630685071,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@418","time":24644.58,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@418","time":24646.626,"message":" locator resolved to "} +{"type":"log","callId":"call@418","time":24647.082,"message":"attempting click action"} +{"type":"log","callId":"call@418","time":24647.096,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685087.jpeg","width":1280,"height":720,"timestamp":24660.389,"frameSwapWallTime":1784630685085.239} +{"type":"log","callId":"call@418","time":24662.312,"message":" element is not stable"} +{"type":"log","callId":"call@418","time":24662.318,"message":"retrying click action"} +{"type":"log","callId":"call@418","time":24662.337,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685095.jpeg","width":1280,"height":720,"timestamp":24668.788,"frameSwapWallTime":1784630685093.659} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685104.jpeg","width":1280,"height":720,"timestamp":24677.746,"frameSwapWallTime":1784630685102.59} +{"type":"log","callId":"call@418","time":24678.262,"message":" element is not stable"} +{"type":"log","callId":"call@418","time":24678.268,"message":"retrying click action"} +{"type":"log","callId":"call@418","time":24678.269,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685121.jpeg","width":1280,"height":720,"timestamp":24694.477,"frameSwapWallTime":1784630685119.2888} +{"type":"log","callId":"call@418","time":24699.213,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685130.jpeg","width":1280,"height":720,"timestamp":24703.867,"frameSwapWallTime":1784630685128.542} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685138.jpeg","width":1280,"height":720,"timestamp":24711.985,"frameSwapWallTime":1784630685136.826} +{"type":"log","callId":"call@418","time":24712.599,"message":" element is not stable"} +{"type":"log","callId":"call@418","time":24712.606,"message":"retrying click action"} +{"type":"log","callId":"call@418","time":24712.608,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685148.jpeg","width":1280,"height":720,"timestamp":24721.796,"frameSwapWallTime":1784630685146.62} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685164.jpeg","width":1280,"height":720,"timestamp":24738.209,"frameSwapWallTime":1784630685163.021} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685172.jpeg","width":1280,"height":720,"timestamp":24746.047,"frameSwapWallTime":1784630685170.879} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685181.jpeg","width":1280,"height":720,"timestamp":24755.043,"frameSwapWallTime":1784630685179.801} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685190.jpeg","width":1280,"height":720,"timestamp":24763.605,"frameSwapWallTime":1784630685188.555} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685206.jpeg","width":1280,"height":720,"timestamp":24780.021,"frameSwapWallTime":1784630685204.9229} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685215.jpeg","width":1280,"height":720,"timestamp":24788.937,"frameSwapWallTime":1784630685213.8828} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685224.jpeg","width":1280,"height":720,"timestamp":24797.366,"frameSwapWallTime":1784630685222.2952} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685232.jpeg","width":1280,"height":720,"timestamp":24805.541,"frameSwapWallTime":1784630685230.4958} +{"type":"log","callId":"call@418","time":24814.085,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685248.jpeg","width":1280,"height":720,"timestamp":24821.896,"frameSwapWallTime":1784630685246.8481} +{"type":"log","callId":"call@418","time":24829.199,"message":" element is not stable"} +{"type":"log","callId":"call@418","time":24829.207,"message":"retrying click action"} +{"type":"log","callId":"call@418","time":24829.208,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685256.jpeg","width":1280,"height":720,"timestamp":24830.238,"frameSwapWallTime":1784630685255.2742} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685265.jpeg","width":1280,"height":720,"timestamp":24838.79,"frameSwapWallTime":1784630685263.726} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685273.jpeg","width":1280,"height":720,"timestamp":24847.156,"frameSwapWallTime":1784630685272.014} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685290.jpeg","width":1280,"height":720,"timestamp":24863.338,"frameSwapWallTime":1784630685288.216} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685298.jpeg","width":1280,"height":720,"timestamp":24872.104,"frameSwapWallTime":1784630685296.886} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685307.jpeg","width":1280,"height":720,"timestamp":24880.537,"frameSwapWallTime":1784630685305.437} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685323.jpeg","width":1280,"height":720,"timestamp":24897.119,"frameSwapWallTime":1784630685322.054} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685328.jpeg","width":1280,"height":720,"timestamp":24902.196,"frameSwapWallTime":1784630685327.2131} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685336.jpeg","width":1280,"height":720,"timestamp":24909.731,"frameSwapWallTime":1784630685334.7659} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685353.jpeg","width":1280,"height":720,"timestamp":24926.638,"frameSwapWallTime":1784630685351.629} +{"type":"log","callId":"call@418","time":24930.42,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685361.jpeg","width":1280,"height":720,"timestamp":24934.757,"frameSwapWallTime":1784630685359.843} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685369.jpeg","width":1280,"height":720,"timestamp":24943.039,"frameSwapWallTime":1784630685368.136} +{"type":"log","callId":"call@418","time":24945.711,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@418","time":24945.794,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@418","time":24945.915,"message":" done scrolling"} +{"type":"input","callId":"call@418","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@418"} +{"type":"frame-snapshot","snapshot":{"callId":"call@418","snapshotName":"input@call@418","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[25,27]],["BODY",{"class":"font-sans antialiased"},[[26,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[36,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[26,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[25,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[25,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[10,1]],["DIV",{},[[16,5]],["DIV",{},[[1,0]],[[2,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[2,2]],[[2,8]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[2,9]]]],[[2,15]]],[[2,19]],[[2,26]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},[[2,27]],["DIV",{"class":"flex gap-2 h-full"},[[2,93]],[[2,121]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"807","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},[[2,122]],[[2,124]],[[2,126]],[[2,128]],[[2,130]],[[2,132]],[[2,134]],[[2,136]],[[2,138]],[[2,140]],[[2,142]],[[2,144]],[[2,146]],[[2,148]],[[2,150]],[[2,152]],[[2,154]],[[2,156]],[[2,158]],[[2,160]],[[2,162]],[[2,164]],[[2,166]],[[2,168]],[[2,170]],[[2,172]],[[2,174]],[[2,176]],[[2,178]],[[2,180]],[[2,182]],[[2,184]],[[2,186]],[[2,188]],[[2,190]],[[2,192]],[[2,194]],[[2,196]],[[2,198]],[[2,200]],[[2,202]],[[2,204]],[[2,206]],[[2,208]],[[2,210]],[[2,212]],[[2,214]],[[2,216]],[[2,218]],[[2,220]],[[2,222]],[[2,224]],[[2,226]],[[2,228]],[[2,230]],[[2,232]],[[2,234]],[[2,236]],[[2,238]],[[2,240]],[[2,242]],[[2,244]],[[2,246]],[[2,248]],[[2,250]],[[2,252]],[[2,254]],[[2,256]],[[2,258]],[[2,260]],[[2,262]],[[2,264]],[[2,266]],[[2,268]],[[2,270]],[[2,272]],[[2,274]],[[2,276]],[[2,278]],[[2,280]],[[2,282]],[[2,284]],[[2,286]],[[2,288]],[[2,290]],[[2,292]],[[2,294]],[[2,296]],[[2,298]],[[2,300]],[[2,302]],[[2,304]],[[2,306]],[[2,308]],[[2,310]],[[2,312]],[[2,314]],[[2,316]],[[2,318]],[[2,320]],[[2,322]],[[2,324]],[[2,326]],[[2,328]],[[2,330]],[[2,332]],[[2,333]]]]]],[[2,340]]],[[2,343]]]],[[7,1]],[[16,35]],[[4,3]],[[16,53]]]]],[[25,52]]]]]]]]]],[[36,296]],[[35,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24947.394,"wallTime":1784630685373,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@418","time":24948.103,"message":" performing click action"} +{"type":"log","callId":"call@418","time":24951.201,"message":" click action done"} +{"type":"log","callId":"call@418","time":24951.207,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@418","time":24951.37,"message":" navigations have finished"} +{"type":"after","callId":"call@418","endTime":24951.406,"afterSnapshot":"after@call@418"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685378.jpeg","width":1280,"height":720,"timestamp":24951.757,"frameSwapWallTime":1784630685376.728} +{"type":"frame-snapshot","snapshot":{"callId":"call@418","snapshotName":"after@call@418","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[26,27]],["BODY",{"class":"font-sans antialiased"},[[27,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[37,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[27,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[26,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[26,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[11,1]],["DIV",{},[[17,5]],["DIV",{},[[2,0]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[3,2]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[3,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","1916"," – ","2020"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[3,343]]]],[[8,1]],[[17,35]],[[5,3]],[[17,53]]]]],[[26,52]]]]]]]]]],[[37,296]],[[36,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24952.418,"wallTime":1784630685378,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@420","startTime":24953.15,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"15","timeout":15000},"stepId":"pw:api@47","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@420"} +{"type":"frame-snapshot","snapshot":{"callId":"call@420","snapshotName":"before@call@420","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[27,27]],["BODY",{"class":"font-sans antialiased"},[[28,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[38,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[28,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[27,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[27,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[12,1]],["DIV",{},[[18,5]],["DIV",{},[[3,0]],[[4,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[4,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[1,0]]]],[[4,15]]],[[1,22]],[[1,25]]],[[4,343]]]],[[9,1]],[[18,35]],[[6,3]],[[18,53]]]]],[[27,52]]]]]]]]]],[[38,296]],[[37,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24953.809,"wallTime":1784630685380,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@420","time":24953.934,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@420","time":24955.218,"message":" locator resolved to "} +{"type":"log","callId":"call@420","time":24955.514,"message":" fill(\"15\")"} +{"type":"log","callId":"call@420","time":24955.518,"message":"attempting fill action"} +{"type":"input","callId":"call@420","inputSnapshot":"input@call@420"} +{"type":"frame-snapshot","snapshot":{"callId":"call@420","snapshotName":"input@call@420","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[28,27]],["BODY",{"class":"font-sans antialiased"},[[29,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[39,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[29,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[28,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[28,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[13,1]],["DIV",{},[[19,5]],["DIV",{},[[4,0]],[[5,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[1,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[5,343]]]],[[10,1]],[[19,35]],[[7,3]],[[19,53]]]]],[[28,52]]]]]]]]]],[[39,296]],[[38,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24956.175,"wallTime":1784630685382,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@420","time":24956.248,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@420","endTime":24959.02,"afterSnapshot":"after@call@420"} +{"type":"frame-snapshot","snapshot":{"callId":"call@420","snapshotName":"after@call@420","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[29,27]],["BODY",{"class":"font-sans antialiased"},[[30,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[40,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[30,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[29,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[29,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[14,1]],["DIV",{},[[20,5]],["DIV",{},[[5,0]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"15","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[6,343]]]],[[11,1]],[[20,35]],[[8,3]],[[20,53]]]]],[[29,52]]]]]]]]]],[[40,296]],[[39,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24959.647,"wallTime":1784630685386,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@422","startTime":24960.234,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"6","timeout":15000},"stepId":"pw:api@48","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@422"} +{"type":"frame-snapshot","snapshot":{"callId":"call@422","snapshotName":"before@call@422","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[30,27]],["BODY",{"class":"font-sans antialiased"},[[31,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[41,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[31,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[30,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[30,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[15,1]],["DIV",{},[[21,5]],["DIV",{},[[6,0]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[7,343]]]],[[12,1]],[[21,35]],[[9,3]],[[21,53]]]]],[[30,52]]]]]]]]]],[[41,296]],[[40,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24960.813,"wallTime":1784630685387,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@422","time":24960.892,"message":"waiting for getByPlaceholder('MM')"} +{"type":"log","callId":"call@422","time":24961.455,"message":" locator resolved to "} +{"type":"log","callId":"call@422","time":24961.658,"message":" fill(\"6\")"} +{"type":"log","callId":"call@422","time":24961.659,"message":"attempting fill action"} +{"type":"input","callId":"call@422","inputSnapshot":"input@call@422"} +{"type":"frame-snapshot","snapshot":{"callId":"call@422","snapshotName":"input@call@422","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[31,27]],["BODY",{"class":"font-sans antialiased"},[[32,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[42,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[32,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[31,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[31,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[16,1]],["DIV",{},[[22,5]],["DIV",{},[[7,0]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[8,343]]]],[[13,1]],[[22,35]],[[10,3]],[[22,53]]]]],[[31,52]]]]]]]]]],[[42,296]],[[41,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24962.225,"wallTime":1784630685388,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@422","time":24962.281,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@422","endTime":24964.482,"afterSnapshot":"after@call@422"} +{"type":"frame-snapshot","snapshot":{"callId":"call@422","snapshotName":"after@call@422","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[32,27]],["BODY",{"class":"font-sans antialiased"},[[33,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[43,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[33,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[32,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[32,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[17,1]],["DIV",{},[[23,5]],["DIV",{},[[8,0]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"15"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"6","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[9,343]]]],[[14,1]],[[23,35]],[[11,3]],[[23,53]]]]],[[32,52]]]]]]]]]],[[43,296]],[[42,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24965.216,"wallTime":1784630685391,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@424","startTime":24965.849,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"1990","timeout":15000},"stepId":"pw:api@49","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@424"} +{"type":"frame-snapshot","snapshot":{"callId":"call@424","snapshotName":"before@call@424","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[33,27]],["BODY",{"class":"font-sans antialiased"},[[34,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[44,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[34,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[33,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[33,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[18,1]],["DIV",{},[[24,5]],["DIV",{},[[9,0]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[10,343]]]],[[15,1]],[[24,35]],[[12,3]],[[24,53]]]]],[[33,52]]]]]]]]]],[[44,296]],[[43,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24966.501,"wallTime":1784630685392,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@424","time":24966.59,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"log","callId":"call@424","time":24967.711,"message":" locator resolved to "} +{"type":"log","callId":"call@424","time":24967.998,"message":" fill(\"1990\")"} +{"type":"log","callId":"call@424","time":24968.003,"message":"attempting fill action"} +{"type":"input","callId":"call@424","inputSnapshot":"input@call@424"} +{"type":"frame-snapshot","snapshot":{"callId":"call@424","snapshotName":"input@call@424","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[34,27]],["BODY",{"class":"font-sans antialiased"},[[35,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[45,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[35,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[34,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[34,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[19,1]],["DIV",{},[[25,5]],["DIV",{},[[10,0]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[11,343]]]],[[16,1]],[[25,35]],[[13,3]],[[25,53]]]]],[[34,52]]]]]]]]]],[[45,296]],[[44,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24968.677,"wallTime":1784630685395,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@424","time":24968.743,"message":" waiting for element to be visible, enabled and editable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685395.jpeg","width":1280,"height":720,"timestamp":24969.065,"frameSwapWallTime":1784630685393.962} +{"type":"after","callId":"call@424","endTime":24971.445,"afterSnapshot":"after@call@424"} +{"type":"frame-snapshot","snapshot":{"callId":"call@424","snapshotName":"after@call@424","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[35,27]],["BODY",{"class":"font-sans antialiased"},[[36,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[46,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[36,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[35,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[35,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[26,5]],["DIV",{},[[11,0]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"6"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"1990","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 15/6/1990"]]],[[12,343]]]],[[17,1]],[[26,35]],[[14,3]],[[26,53]]]]],[[35,52]]]]]]]]]],[[46,296]],[[45,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24972.966,"wallTime":1784630685399,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@426","startTime":24973.776,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@50","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@426"} +{"type":"frame-snapshot","snapshot":{"callId":"call@426","snapshotName":"before@call@426","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[36,27]],["BODY",{"class":"font-sans antialiased"},[[37,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[47,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[37,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[36,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[36,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[21,1]],["DIV",{},[[27,5]],["DIV",{},[[12,0]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"1990","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[13,343]]]],[[18,1]],[[27,35]],[[15,3]],[[27,53]]]]],[[36,52]]]]]]]]]],[[47,296]],[[46,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24974.493,"wallTime":1784630685400,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@426","time":24974.61,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"log","callId":"call@426","time":24976.394,"message":" locator resolved to "} +{"type":"log","callId":"call@426","time":24976.694,"message":"attempting click action"} +{"type":"log","callId":"call@426","time":24976.732,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685404.jpeg","width":1280,"height":720,"timestamp":24977.741,"frameSwapWallTime":1784630685402.641} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685411.jpeg","width":1280,"height":720,"timestamp":24984.788,"frameSwapWallTime":1784630685409.637} +{"type":"log","callId":"call@426","time":24987.456,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@426","time":24987.462,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@426","time":24987.75,"message":" done scrolling"} +{"type":"input","callId":"call@426","point":{"x":1163.4,"y":668},"inputSnapshot":"input@call@426"} +{"type":"frame-snapshot","snapshot":{"callId":"call@426","snapshotName":"input@call@426","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[37,27]],["BODY",{"class":"font-sans antialiased"},[[38,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[48,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[38,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[37,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[37,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[22,1]],["DIV",{},[[28,5]],["DIV",{},[[13,0]],[[14,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[10,2]],[[1,3]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"__playwright_target__":"","type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},[[2,6]]]]],[[14,343]]]],[[19,1]],[[28,35]],[[16,3]],[[28,53]]]]],[[37,52]]]]]]]]]],[[48,296]],[[47,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24988.816,"wallTime":1784630685415,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@426","time":24989.404,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685420.jpeg","width":1280,"height":720,"timestamp":24993.747,"frameSwapWallTime":1784630685418.715} +{"type":"log","callId":"call@426","time":24993.895,"message":" click action done"} +{"type":"log","callId":"call@426","time":24993.9,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@426","time":24994.038,"message":" navigations have finished"} +{"type":"after","callId":"call@426","endTime":24994.067,"afterSnapshot":"after@call@426"} +{"type":"frame-snapshot","snapshot":{"callId":"call@426","snapshotName":"after@call@426","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[38,27]],["BODY",{"class":"font-sans antialiased"},[[39,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[49,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[39,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[38,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[38,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[23,1]],["DIV",{},[[29,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"June 15, 1990"],[[29,18]]]]],[[20,1]],[[29,35]],[[17,3]],[[29,53]]]]],[[38,52]]]]]]]]]],[[49,296]],[[48,11]]]],"viewport":{"width":1280,"height":720},"timestamp":24994.657,"wallTime":1784630685421,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@428","startTime":24995.244,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue to seat selection/i]","strict":true,"timeout":15000},"stepId":"pw:api@51","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@428"} +{"type":"frame-snapshot","snapshot":{"callId":"call@428","snapshotName":"before@call@428","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":24995.758,"wallTime":1784630685422,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@428","time":24995.851,"message":"waiting for getByRole('button', { name: /continue to seat selection/i })"} +{"type":"log","callId":"call@428","time":24997.62,"message":" locator resolved to "} +{"type":"log","callId":"call@428","time":24997.862,"message":"attempting click action"} +{"type":"log","callId":"call@428","time":24997.882,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685435.jpeg","width":1280,"height":720,"timestamp":25009.293,"frameSwapWallTime":1784630685433.889} +{"type":"log","callId":"call@428","time":25011.456,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@428","time":25011.461,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@428","time":25011.711,"message":" done scrolling"} +{"type":"input","callId":"call@428","point":{"x":1021,"y":507},"inputSnapshot":"input@call@428"} +{"type":"frame-snapshot","snapshot":{"callId":"call@428","snapshotName":"input@call@428","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[40,27]],["BODY",{"class":"font-sans antialiased"},[[41,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[51,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[41,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[40,29]],["FORM",{"class":"space-y-6"},[[2,7]],["DIV",{"class":"flex gap-4"},[[40,49]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},[[40,50]]]]]]]]]]]],[[51,296]],[[50,11]]]],"viewport":{"width":1280,"height":720},"timestamp":25012.751,"wallTime":1784630685439,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@428","time":25013.286,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685443.jpeg","width":1280,"height":720,"timestamp":25016.716,"frameSwapWallTime":1784630685441.4011} +{"type":"log","callId":"call@428","time":25017.328,"message":" click action done"} +{"type":"log","callId":"call@428","time":25017.332,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@428","time":25017.526,"message":" navigations have finished"} +{"type":"after","callId":"call@428","endTime":25017.552,"afterSnapshot":"after@call@428"} +{"type":"frame-snapshot","snapshot":{"callId":"call@428","snapshotName":"after@call@428","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[41,27]],["BODY",{"class":"font-sans antialiased"},[[42,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[52,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[42,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[41,29]],["FORM",{"class":"space-y-6"},[[3,7]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2","disabled":""},[[41,47]],[[41,48]]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2","disabled":""},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]]]]]]]]],[[52,296]],[[51,11]]]],"viewport":{"width":1280,"height":720},"timestamp":25018.222,"wallTime":1784630685444,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@430","startTime":25018.957,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"d1d341c9a3dff68c5d18534d72db9e70","phase":"before","event":""},"stepId":"pw:api@52","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"log","callId":"call@430","time":25018.985,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685452.jpeg","width":1280,"height":720,"timestamp":25026.224,"frameSwapWallTime":1784630685450.8481} +{"type":"log","callId":"call@398","time":25036.088,"message":" locator resolved to visible "} +{"type":"after","callId":"call@398","endTime":25036.108,"result":{},"afterSnapshot":"after@call@398"} +{"type":"frame-snapshot","snapshot":{"callId":"call@398","snapshotName":"after@call@398","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[42,27]],["BODY",{"class":"font-sans antialiased"},[[43,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[53,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[43,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[42,29]],["FORM",{"class":"space-y-6"},[[4,7]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2"},[[42,47]],[[42,48]]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},"Continue to seat selection"]]]]]]]]]],[[53,296]],[[52,11]]]],"viewport":{"width":1280,"height":720},"timestamp":25036.856,"wallTime":1784630685463,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685468.jpeg","width":1280,"height":720,"timestamp":25042.099,"frameSwapWallTime":1784630685466.848} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685477.jpeg","width":1280,"height":720,"timestamp":25050.857,"frameSwapWallTime":1784630685475.6838} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685484.jpeg","width":1280,"height":720,"timestamp":25058.206,"frameSwapWallTime":1784630685482.9941} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685494.jpeg","width":1280,"height":720,"timestamp":25067.592,"frameSwapWallTime":1784630685492.418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685511.jpeg","width":1280,"height":720,"timestamp":25084.331,"frameSwapWallTime":1784630685509.022} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685519.jpeg","width":1280,"height":720,"timestamp":25092.412,"frameSwapWallTime":1784630685517.176} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685527.jpeg","width":1280,"height":720,"timestamp":25100.412,"frameSwapWallTime":1784630685525.238} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685543.jpeg","width":1280,"height":720,"timestamp":25117.296,"frameSwapWallTime":1784630685542.037} +{"type":"console","messageType":"warning","text":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element: JSHandle@node","args":[{"preview":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:","value":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:"},{"preview":"JSHandle@node"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js","lineNumber":109,"columnNumber":20},"time":25157.941,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685586.jpeg","width":1280,"height":720,"timestamp":25159.995,"frameSwapWallTime":1784630685575.9438} +{"type":"log","callId":"call@430","time":25160.155,"message":" navigated to \"http://localhost:5174/booking/seats\""} +{"type":"after","callId":"call@430","endTime":25160.166} +{"type":"before","callId":"call@435","startTime":25160.227,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"c9e22e0d2d8faef3fc3e5b68f624a59e","phase":"before","event":"response"},"stepId":"pw:api@53","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"before","callId":"call@438","startTime":25160.282,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/auto assign seats/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@54","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@438"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685587.jpeg","width":1280,"height":720,"timestamp":25160.466,"frameSwapWallTime":1784630685577.076} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685587.jpeg","width":1280,"height":720,"timestamp":25160.513,"frameSwapWallTime":1784630685577.4382} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685591.jpeg","width":1280,"height":720,"timestamp":25164.369,"frameSwapWallTime":1784630685589.1262} +{"type":"frame-snapshot","snapshot":{"callId":"call@438","snapshotName":"before@call@438","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[54,0]],[[54,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[54,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[54,36]],[[54,43]],[[54,47]],[[54,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[54,55]],["OL",{"class":"space-y-1"},[[54,61]],[[44,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[54,69]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[54,72]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[54,74]]]],[[54,81]],[[54,86]],[[54,91]]]]],[[54,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[54,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[54,132]],[[44,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[54,148]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[54,151]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[54,152]]]],[[54,155]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[54,157]]]],[[54,168]],[[54,177]],[[54,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"0","/","1"," seats selected"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-400 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"]]],["STYLE",{},"@keyframes seats-slide-up{from{transform:translateY(100%)}to{transform:translateY(0)}}"],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},["BUTTON",{"class":"flex items-center gap-1.5 text-sm text-gray-600 dark:text-gray-400 hover:text-primary transition-colors font-medium"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["DIV",{"class":"text-center"},["H1",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Select Seats"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Now selecting: ","Adult 1"]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"0","/","1"]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"flex justify-end"},["BUTTON",{"type":"button","class":"flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 text-sm font-semibold text-gray-700 dark:text-gray-300 hover:border-primary hover:text-primary transition-colors shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-4 h-4"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],"Preview Train Coach"]],["DIV",{"class":"flex flex-col items-stretch"},["DIV",{"class":"px-4"},["DIV",{"class":"relative bg-[rgb(20,113,76)] rounded-t-2xl px-5 pt-4 pb-3 text-white overflow-hidden"},["DIV",{"class":"absolute top-0 left-0 right-0 h-1 bg-white/20"}],["DIV",{"class":"flex items-center justify-between"},["DIV",{},["P",{"class":"text-[10px] font-bold uppercase tracking-widest text-white/60"},"EDR Express"],["P",{"class":"text-sm font-bold mt-0.5"},"1"," Coach"]],["DIV",{"class":"flex gap-2"},["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}]]],["DIV",{"class":"mt-3 flex items-center gap-2"},["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}],["DIV",{"class":"flex-1 h-1 bg-white/20 rounded-full"}],["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}]]],["DIV",{"class":"h-3 bg-[rgb(15,85,57)] mx-3 rounded-b-lg"}]],["DIV",{},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}],["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}]]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-900/30"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-gray-100 dark:bg-gray-700 text-gray-600 dark:text-gray-300"},"1"],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-gray-900 dark:text-white"},"UI-C1"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"45"," of ","48"," seats available"]]],["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"hidden sm:flex items-end gap-0.5 h-5"},["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-3 bg-gray-200 dark:bg-gray-600"}]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 text-gray-400"},["path",{"d":"m6 9 6 6 6-6"}]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}]]],["DIV",{"class":"px-4"},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}]]],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded-b-2xl"}]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-amber-100 text-amber-700 dark:bg-amber-900/30 dark:text-amber-400"},"0","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"Selecting seat for Adult 1 (1 of 1)"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 0%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)]/20 text-[rgb(20,113,76)] ring-2 ring-[rgb(20,113,76)]"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"],["SPAN",{"class":"text-[10px] font-semibold text-[rgb(20,113,76)] uppercase tracking-wide"},"Now selecting"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-gray-400"},"Not Assigned"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"],["BUTTON",{"class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],["DIV",{"class":"lg:hidden h-24"}]]]]]]]],[[54,296]],[[53,11]]]],"viewport":{"width":1280,"height":720},"timestamp":25169.086,"wallTime":1784630685594,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@438","time":25169.335,"message":"waiting for getByRole('button', { name: /auto assign seats/i }).first()"} +{"type":"log","callId":"call@438","time":25171.192,"message":" locator resolved to "} +{"type":"log","callId":"call@438","time":25171.61,"message":"attempting click action"} +{"type":"log","callId":"call@438","time":25171.63,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685600.jpeg","width":1280,"height":720,"timestamp":25173.421,"frameSwapWallTime":1784630685598.255} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685608.jpeg","width":1280,"height":720,"timestamp":25181.666,"frameSwapWallTime":1784630685606.662} +{"type":"log","callId":"call@438","time":25187.657,"message":" element is not stable"} +{"type":"log","callId":"call@438","time":25187.666,"message":"retrying click action"} +{"type":"log","callId":"call@438","time":25187.692,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685615.jpeg","width":1280,"height":720,"timestamp":25188.995,"frameSwapWallTime":1784630685613.796} +{"type":"log","callId":"call@438","time":25204.189,"message":" element is not stable"} +{"type":"log","callId":"call@438","time":25204.203,"message":"retrying click action"} +{"type":"log","callId":"call@438","time":25204.204,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685631.jpeg","width":1280,"height":720,"timestamp":25204.476,"frameSwapWallTime":1784630685629.212} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685639.jpeg","width":1280,"height":720,"timestamp":25212.604,"frameSwapWallTime":1784630685637.36} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685647.jpeg","width":1280,"height":720,"timestamp":25220.852,"frameSwapWallTime":1784630685645.71} +{"type":"log","callId":"call@438","time":25225.729,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685664.jpeg","width":1280,"height":720,"timestamp":25237.682,"frameSwapWallTime":1784630685662.3281} +{"type":"log","callId":"call@438","time":25237.843,"message":" element is not stable"} +{"type":"log","callId":"call@438","time":25237.847,"message":"retrying click action"} +{"type":"log","callId":"call@438","time":25237.848,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685672.jpeg","width":1280,"height":720,"timestamp":25245.737,"frameSwapWallTime":1784630685670.5288} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685681.jpeg","width":1280,"height":720,"timestamp":25254.495,"frameSwapWallTime":1784630685679.2942} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685697.jpeg","width":1280,"height":720,"timestamp":25271.093,"frameSwapWallTime":1784630685695.783} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685706.jpeg","width":1280,"height":720,"timestamp":25279.384,"frameSwapWallTime":1784630685704.023} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685714.jpeg","width":1280,"height":720,"timestamp":25287.686,"frameSwapWallTime":1784630685712.343} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685722.jpeg","width":1280,"height":720,"timestamp":25296.007,"frameSwapWallTime":1784630685720.8108} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685739.jpeg","width":1280,"height":720,"timestamp":25312.61,"frameSwapWallTime":1784630685737.3682} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685747.jpeg","width":1280,"height":720,"timestamp":25321.037,"frameSwapWallTime":1784630685745.743} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685755.jpeg","width":1280,"height":720,"timestamp":25329.029,"frameSwapWallTime":1784630685753.842} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685763.jpeg","width":1280,"height":720,"timestamp":25337.321,"frameSwapWallTime":1784630685762.213} +{"type":"log","callId":"call@438","time":25338.447,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685780.jpeg","width":1280,"height":720,"timestamp":25353.984,"frameSwapWallTime":1784630685778.784} +{"type":"log","callId":"call@438","time":25354.207,"message":" element is not stable"} +{"type":"log","callId":"call@438","time":25354.219,"message":"retrying click action"} +{"type":"log","callId":"call@438","time":25354.22,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685789.jpeg","width":1280,"height":720,"timestamp":25362.676,"frameSwapWallTime":1784630685787.183} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685797.jpeg","width":1280,"height":720,"timestamp":25371.098,"frameSwapWallTime":1784630685795.909} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685813.jpeg","width":1280,"height":720,"timestamp":25387.301,"frameSwapWallTime":1784630685812.0242} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685822.jpeg","width":1280,"height":720,"timestamp":25395.549,"frameSwapWallTime":1784630685820.345} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685830.jpeg","width":1280,"height":720,"timestamp":25403.902,"frameSwapWallTime":1784630685828.734} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685838.jpeg","width":1280,"height":720,"timestamp":25412.261,"frameSwapWallTime":1784630685837.08} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685855.jpeg","width":1280,"height":720,"timestamp":25428.735,"frameSwapWallTime":1784630685853.568} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685863.jpeg","width":1280,"height":720,"timestamp":25437.19,"frameSwapWallTime":1784630685861.9949} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685872.jpeg","width":1280,"height":720,"timestamp":25445.981,"frameSwapWallTime":1784630685870.625} +{"type":"log","callId":"call@438","time":25455.585,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685889.jpeg","width":1280,"height":720,"timestamp":25462.392,"frameSwapWallTime":1784630685887.1418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685897.jpeg","width":1280,"height":720,"timestamp":25470.616,"frameSwapWallTime":1784630685895.4922} +{"type":"log","callId":"call@438","time":25470.7,"message":" element is not stable"} +{"type":"log","callId":"call@438","time":25470.703,"message":"retrying click action"} +{"type":"log","callId":"call@438","time":25470.704,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685905.jpeg","width":1280,"height":720,"timestamp":25478.89,"frameSwapWallTime":1784630685903.744} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685922.jpeg","width":1280,"height":720,"timestamp":25495.74,"frameSwapWallTime":1784630685920.4521} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685927.jpeg","width":1280,"height":720,"timestamp":25500.691,"frameSwapWallTime":1784630685925.564} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685934.jpeg","width":1280,"height":720,"timestamp":25508.295,"frameSwapWallTime":1784630685933.176} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685943.jpeg","width":1280,"height":720,"timestamp":25516.631,"frameSwapWallTime":1784630685941.555} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685960.jpeg","width":1280,"height":720,"timestamp":25533.491,"frameSwapWallTime":1784630685958.239} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685968.jpeg","width":1280,"height":720,"timestamp":25542.087,"frameSwapWallTime":1784630685966.757} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685976.jpeg","width":1280,"height":720,"timestamp":25550.271,"frameSwapWallTime":1784630685975.105} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630685985.jpeg","width":1280,"height":720,"timestamp":25558.474,"frameSwapWallTime":1784630685983.275} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686001.jpeg","width":1280,"height":720,"timestamp":25574.434,"frameSwapWallTime":1784630685999.145} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686010.jpeg","width":1280,"height":720,"timestamp":25583.97,"frameSwapWallTime":1784630686008.678} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686018.jpeg","width":1280,"height":720,"timestamp":25592.235,"frameSwapWallTime":1784630686016.9512} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686026.jpeg","width":1280,"height":720,"timestamp":25600.292,"frameSwapWallTime":1784630686025.069} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686044.jpeg","width":1280,"height":720,"timestamp":25618.292,"frameSwapWallTime":1784630686043.056} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686054.jpeg","width":1280,"height":720,"timestamp":25628.175,"frameSwapWallTime":1784630686053.088} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686063.jpeg","width":1280,"height":720,"timestamp":25637.076,"frameSwapWallTime":1784630686061.883} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686072.jpeg","width":1280,"height":720,"timestamp":25645.709,"frameSwapWallTime":1784630686070.518} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686080.jpeg","width":1280,"height":720,"timestamp":25654.227,"frameSwapWallTime":1784630686078.9858} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686097.jpeg","width":1280,"height":720,"timestamp":25670.907,"frameSwapWallTime":1784630686095.6309} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686306.jpeg","width":1280,"height":720,"timestamp":25879.346,"frameSwapWallTime":1784630686304.218} +{"type":"log","callId":"call@438","time":25972.077,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@438","time":25983.16,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@438","time":25983.17,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@438","time":25983.541,"message":" done scrolling"} +{"type":"input","callId":"call@438","point":{"x":1105.32,"y":333},"inputSnapshot":"input@call@438"} +{"type":"frame-snapshot","snapshot":{"callId":"call@438","snapshotName":"input@call@438","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":[[1,204]],"viewport":{"width":1280,"height":720},"timestamp":25984.548,"wallTime":1784630686411,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@438","time":25985.141,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686414.jpeg","width":1280,"height":720,"timestamp":25987.902,"frameSwapWallTime":1784630686412.618} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686422.jpeg","width":1280,"height":720,"timestamp":25996.074,"frameSwapWallTime":1784630686420.796} +{"type":"log","callId":"call@438","time":25999.982,"message":" click action done"} +{"type":"log","callId":"call@438","time":25999.989,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@438","time":26001.551,"message":" navigations have finished"} +{"type":"after","callId":"call@438","endTime":26001.613,"afterSnapshot":"after@call@438"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686431.jpeg","width":1280,"height":720,"timestamp":26004.59,"frameSwapWallTime":1784630686429.3499} +{"type":"frame-snapshot","snapshot":{"callId":"call@438","snapshotName":"after@call@438","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[56,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"1",[[2,58]],[[2,59]],[[2,60]]],[[2,63]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."]]],[[2,70]],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},[[2,74]],["DIV",{"class":"text-center"},[[2,76]]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"1",[[2,82]],[[2,83]]]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[2,98]],["DIV",{"class":"flex flex-col items-stretch"},[[2,117]],["DIV",{},[[2,122]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-[rgb(20,113,76)] shadow-lg shadow-[rgb(20,113,76)]/10"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-[rgb(20,113,76)] text-white"},[[2,124]]],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-[rgb(20,113,76)]"},[[2,126]]],[[2,132]]]],["DIV",{"class":"flex items-center gap-3"},[[2,147]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 rotate-180 text-[rgb(20,113,76)]"},[[2,148]]]]],["DIV",{"class":"border-t border-gray-100 dark:border-gray-800 bg-white dark:bg-gray-800 p-4"},["DIV",{"class":"flex flex-wrap gap-3 mb-4"},["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-green-50 border border-green-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Available"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-blue-50 border-2 border-blue-500 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Selected"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-red-50 border border-red-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Booked"]]],["DIV",{"class":"overflow-x-auto"},["DIV",{"class":"inline-block bg-gray-50 dark:bg-gray-700/30 rounded-xl p-4 border border-gray-200 dark:border-gray-700"},["DIV",{"class":"space-y-0"},["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 1A - BOOKED - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 1B - BOOKED - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-yellow-500 text-white cursor-not-allowed opacity-75","title":"Seat 1C - HELD - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-[rgb(20_113_76)] text-white shadow-md scale-105","title":"Seat 1D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]]]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}]]],[[2,160]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400"},"1","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"All seats selected — ready to continue"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 100%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)] text-white"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"Seat 1D"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."],["BUTTON",{"disabled":"","class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],[[2,195]]]]]]]]],[[56,296]],[[55,11]]]],"viewport":{"width":1280,"height":720},"timestamp":26005.026,"wallTime":1784630686430,"collectionTime":1.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@440","startTime":26006.555,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"b018625fb26c8bb692b9e05d68b82896","phase":"before","event":""},"stepId":"pw:api@55","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"log","callId":"call@440","time":26006.581,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686447.jpeg","width":1280,"height":720,"timestamp":26021.312,"frameSwapWallTime":1784630686445.7778} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686457.jpeg","width":1280,"height":720,"timestamp":26030.542,"frameSwapWallTime":1784630686455.044} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686465.jpeg","width":1280,"height":720,"timestamp":26038.598,"frameSwapWallTime":1784630686463.1418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686473.jpeg","width":1280,"height":720,"timestamp":26047.086,"frameSwapWallTime":1784630686471.6338} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686489.jpeg","width":1280,"height":720,"timestamp":26063.217,"frameSwapWallTime":1784630686487.69} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686498.jpeg","width":1280,"height":720,"timestamp":26071.958,"frameSwapWallTime":1784630686496.46} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686506.jpeg","width":1280,"height":720,"timestamp":26080.126,"frameSwapWallTime":1784630686504.67} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686514.jpeg","width":1280,"height":720,"timestamp":26088.309,"frameSwapWallTime":1784630686512.886} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686562.jpeg","width":1280,"height":720,"timestamp":26135.986,"frameSwapWallTime":1784630686529.427} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686564.jpeg","width":1280,"height":720,"timestamp":26138.142,"frameSwapWallTime":1784630686556.429} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686564.jpeg","width":1280,"height":720,"timestamp":26138.222,"frameSwapWallTime":1784630686557.08} +{"type":"log","callId":"call@440","time":26138.857,"message":" navigated to \"http://localhost:5174/booking/review\""} +{"type":"after","callId":"call@440","endTime":26138.872} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686565.jpeg","width":1280,"height":720,"timestamp":26139.281,"frameSwapWallTime":1784630686562.791} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686572.jpeg","width":1280,"height":720,"timestamp":26145.878,"frameSwapWallTime":1784630686570.874} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686585.jpeg","width":1280,"height":720,"timestamp":26159.138,"frameSwapWallTime":1784630686584.0508} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686594.jpeg","width":1280,"height":720,"timestamp":26167.961,"frameSwapWallTime":1784630686592.8801} +{"type":"after","callId":"call@435","endTime":26169.736} +{"type":"before","callId":"call@448","startTime":26169.792,"class":"Response","method":"body","params":{},"stepId":"pw:api@56","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"after","callId":"call@448","endTime":26170.372,"result":{"binary":""}} +{"type":"before","callId":"call@450","startTime":26171.201,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"e25a7d74e56c5d06ff0028b0b28c0315","phase":"before","event":"response"},"stepId":"pw:api@57","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"before","callId":"call@453","startTime":26171.236,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@58","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@453"} +{"type":"frame-snapshot","snapshot":{"callId":"call@453","snapshotName":"before@call@453","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[57,0]],[[57,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[57,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[57,36]],[[57,43]],[[57,47]],[[57,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[57,55]],["OL",{"class":"space-y-1"},[[57,61]],[[47,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[57,74]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[57,77]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[57,79]]]],[[57,86]],[[57,91]]]]],[[57,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[57,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[57,132]],[[47,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[57,157]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[57,160]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[57,161]]]],[[57,164]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[57,166]]]],[[57,177]],[[57,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-28 lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Review your booking"],["DIV",{"class":"bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-3 mb-4 flex items-center gap-2"},["SPAN",{"class":"text-yellow-800 dark:text-yellow-200 text-sm"},"⏱️ Seats held for: ",["SPAN",{"class":"font-bold"}]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card overflow-hidden"},["DIV",{"class":"flex items-center gap-2 mb-6 pb-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"w-2 h-2 bg-primary rounded-full"}],["H2",{"class":"text-lg font-bold text-gray-900 dark:text-gray-100"},"Trip Details"],["SPAN",{"class":"ml-auto text-xs px-2.5 py-1 bg-primary/10 text-primary rounded-full font-semibold"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-8 flex-shrink-0"},["DIV",{"class":"w-4 h-4 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 dark:to-gray-700 my-2"}],["DIV",{"class":"w-4 h-4 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col"},["DIV",{"class":"pb-8"},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Alpha"]],["DIV",{"class":"pb-8"},["DIV",{"class":"flex items-center gap-6 text-sm text-gray-600 dark:text-gray-400"},["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"}]],["SPAN",{"class":"font-medium"},"4h 0m"]],["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M13 10V3L4 14h7v7l9-11h-7z"}]],["SPAN",{"class":"font-medium"},"Train ","UI-100"]]]],["DIV",{},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Charlie"]]]]],["DIV",{"class":"card"},["H2",{"class":"text-xl font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passengers"],["DIV",{"class":"space-y-3"},["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Adult 1"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Jun 15, 1990"," • ","ETHIOPIAN"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"1D"],["P",{"class":"text-[10px] text-gray-400 dark:text-gray-500 mt-0.5"},"Economy Regular"]]]]]],["DIV",{"class":"lg:hidden mt-4"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 py-3 z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"class":"btn-primary flex-1 py-2.5"},"Confirm "]]]]]]]],[[57,296]],[[56,11]]]],"viewport":{"width":1280,"height":720},"timestamp":26173.053,"wallTime":1784630686598,"collectionTime":1,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@453","time":26173.342,"message":"waiting for getByRole('button', { name: /^confirm/i }).first()"} +{"type":"log","callId":"call@453","time":26175.716,"message":" locator resolved to "} +{"type":"log","callId":"call@453","time":26176.212,"message":"attempting click action"} +{"type":"log","callId":"call@453","time":26176.226,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686611.jpeg","width":1280,"height":720,"timestamp":26184.592,"frameSwapWallTime":1784630686609.3381} +{"type":"log","callId":"call@453","time":26191.641,"message":" element is not stable"} +{"type":"log","callId":"call@453","time":26191.654,"message":"retrying click action"} +{"type":"log","callId":"call@453","time":26191.673,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686619.jpeg","width":1280,"height":720,"timestamp":26192.819,"frameSwapWallTime":1784630686617.6838} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686627.jpeg","width":1280,"height":720,"timestamp":26201.033,"frameSwapWallTime":1784630686625.76} +{"type":"log","callId":"call@453","time":26207.483,"message":" element is not stable"} +{"type":"log","callId":"call@453","time":26207.493,"message":"retrying click action"} +{"type":"log","callId":"call@453","time":26207.494,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686643.jpeg","width":1280,"height":720,"timestamp":26217.095,"frameSwapWallTime":1784630686641.706} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686652.jpeg","width":1280,"height":720,"timestamp":26226.232,"frameSwapWallTime":1784630686650.929} +{"type":"log","callId":"call@453","time":26228.814,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686661.jpeg","width":1280,"height":720,"timestamp":26234.487,"frameSwapWallTime":1784630686659.262} +{"type":"log","callId":"call@453","time":26241.667,"message":" element is not stable"} +{"type":"log","callId":"call@453","time":26241.672,"message":"retrying click action"} +{"type":"log","callId":"call@453","time":26241.673,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686668.jpeg","width":1280,"height":720,"timestamp":26242.316,"frameSwapWallTime":1784630686667.081} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686686.jpeg","width":1280,"height":720,"timestamp":26259.618,"frameSwapWallTime":1784630686684.223} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686694.jpeg","width":1280,"height":720,"timestamp":26267.776,"frameSwapWallTime":1784630686692.514} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686702.jpeg","width":1280,"height":720,"timestamp":26276.165,"frameSwapWallTime":1784630686700.841} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686719.jpeg","width":1280,"height":720,"timestamp":26293.102,"frameSwapWallTime":1784630686717.723} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686727.jpeg","width":1280,"height":720,"timestamp":26301.308,"frameSwapWallTime":1784630686725.9531} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686735.jpeg","width":1280,"height":720,"timestamp":26309.254,"frameSwapWallTime":1784630686733.9858} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686752.jpeg","width":1280,"height":720,"timestamp":26325.818,"frameSwapWallTime":1784630686750.5679} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686760.jpeg","width":1280,"height":720,"timestamp":26333.575,"frameSwapWallTime":1784630686758.292} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686768.jpeg","width":1280,"height":720,"timestamp":26341.857,"frameSwapWallTime":1784630686766.4138} +{"type":"log","callId":"call@453","time":26343.043,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686777.jpeg","width":1280,"height":720,"timestamp":26351.275,"frameSwapWallTime":1784630686775.928} +{"type":"log","callId":"call@453","time":26358.22,"message":" element is not stable"} +{"type":"log","callId":"call@453","time":26358.231,"message":"retrying click action"} +{"type":"log","callId":"call@453","time":26358.232,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686794.jpeg","width":1280,"height":720,"timestamp":26367.618,"frameSwapWallTime":1784630686792.188} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686802.jpeg","width":1280,"height":720,"timestamp":26376.124,"frameSwapWallTime":1784630686800.792} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686811.jpeg","width":1280,"height":720,"timestamp":26384.328,"frameSwapWallTime":1784630686808.98} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686819.jpeg","width":1280,"height":720,"timestamp":26392.783,"frameSwapWallTime":1784630686817.4429} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686835.jpeg","width":1280,"height":720,"timestamp":26408.56,"frameSwapWallTime":1784630686833.185} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686844.jpeg","width":1280,"height":720,"timestamp":26417.815,"frameSwapWallTime":1784630686842.501} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686852.jpeg","width":1280,"height":720,"timestamp":26425.837,"frameSwapWallTime":1784630686850.5771} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686860.jpeg","width":1280,"height":720,"timestamp":26434.152,"frameSwapWallTime":1784630686858.8618} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686877.jpeg","width":1280,"height":720,"timestamp":26450.958,"frameSwapWallTime":1784630686875.638} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686886.jpeg","width":1280,"height":720,"timestamp":26459.344,"frameSwapWallTime":1784630686884.018} +{"type":"log","callId":"call@453","time":26459.487,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686894.jpeg","width":1280,"height":720,"timestamp":26467.573,"frameSwapWallTime":1784630686892.191} +{"type":"log","callId":"call@453","time":26475.073,"message":" element is not stable"} +{"type":"log","callId":"call@453","time":26475.085,"message":"retrying click action"} +{"type":"log","callId":"call@453","time":26475.086,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686911.jpeg","width":1280,"height":720,"timestamp":26484.723,"frameSwapWallTime":1784630686909.351} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686919.jpeg","width":1280,"height":720,"timestamp":26492.477,"frameSwapWallTime":1784630686917.075} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686925.jpeg","width":1280,"height":720,"timestamp":26498.915,"frameSwapWallTime":1784630686923.568} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686939.jpeg","width":1280,"height":720,"timestamp":26513.156,"frameSwapWallTime":1784630686937.763} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686947.jpeg","width":1280,"height":720,"timestamp":26521.104,"frameSwapWallTime":1784630686945.864} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686956.jpeg","width":1280,"height":720,"timestamp":26529.372,"frameSwapWallTime":1784630686954.1099} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686972.jpeg","width":1280,"height":720,"timestamp":26545.926,"frameSwapWallTime":1784630686970.603} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686980.jpeg","width":1280,"height":720,"timestamp":26553.644,"frameSwapWallTime":1784630686978.3872} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686989.jpeg","width":1280,"height":720,"timestamp":26562.743,"frameSwapWallTime":1784630686987.476} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630686997.jpeg","width":1280,"height":720,"timestamp":26571.113,"frameSwapWallTime":1784630686995.801} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687014.jpeg","width":1280,"height":720,"timestamp":26588.073,"frameSwapWallTime":1784630687012.6628} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687022.jpeg","width":1280,"height":720,"timestamp":26596.206,"frameSwapWallTime":1784630687020.8918} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687031.jpeg","width":1280,"height":720,"timestamp":26604.723,"frameSwapWallTime":1784630687029.332} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687039.jpeg","width":1280,"height":720,"timestamp":26612.914,"frameSwapWallTime":1784630687037.607} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687056.jpeg","width":1280,"height":720,"timestamp":26629.629,"frameSwapWallTime":1784630687054.2778} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687064.jpeg","width":1280,"height":720,"timestamp":26637.814,"frameSwapWallTime":1784630687062.5378} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687072.jpeg","width":1280,"height":720,"timestamp":26646.089,"frameSwapWallTime":1784630687070.8352} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687089.jpeg","width":1280,"height":720,"timestamp":26662.851,"frameSwapWallTime":1784630687087.5398} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687097.jpeg","width":1280,"height":720,"timestamp":26671.231,"frameSwapWallTime":1784630687095.937} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687105.jpeg","width":1280,"height":720,"timestamp":26678.443,"frameSwapWallTime":1784630687103.231} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687306.jpeg","width":1280,"height":720,"timestamp":26879.757,"frameSwapWallTime":1784630687304.468} +{"type":"log","callId":"call@453","time":26975.986,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@453","time":26990.693,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@453","time":26990.703,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@453","time":26991.196,"message":" done scrolling"} +{"type":"input","callId":"call@453","point":{"x":1106.65,"y":327},"inputSnapshot":"input@call@453"} +{"type":"frame-snapshot","snapshot":{"callId":"call@453","snapshotName":"input@call@453","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[1,194]],"viewport":{"width":1280,"height":720},"timestamp":26992.227,"wallTime":1784630687418,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@453","time":26992.802,"message":" performing click action"} +{"type":"log","callId":"call@453","time":26994.632,"message":" click action done"} +{"type":"log","callId":"call@453","time":26994.637,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@453","time":26994.825,"message":" navigations have finished"} +{"type":"after","callId":"call@453","endTime":26994.882,"afterSnapshot":"after@call@453"} +{"type":"frame-snapshot","snapshot":{"callId":"call@453","snapshotName":"after@call@453","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[2,194]],"viewport":{"width":1280,"height":720},"timestamp":26995.531,"wallTime":1784630687422,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687431.jpeg","width":1280,"height":720,"timestamp":27004.746,"frameSwapWallTime":1784630687429.4219} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687439.jpeg","width":1280,"height":720,"timestamp":27013.176,"frameSwapWallTime":1784630687437.8618} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687448.jpeg","width":1280,"height":720,"timestamp":27021.722,"frameSwapWallTime":1784630687446.3652} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687456.jpeg","width":1280,"height":720,"timestamp":27030.002,"frameSwapWallTime":1784630687454.712} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687473.jpeg","width":1280,"height":720,"timestamp":27046.746,"frameSwapWallTime":1784630687471.367} +{"type":"after","callId":"call@450","endTime":27051.988} +{"type":"before","callId":"call@458","startTime":27052.086,"class":"Response","method":"body","params":{},"stepId":"pw:api@59","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687481.jpeg","width":1280,"height":720,"timestamp":27054.347,"frameSwapWallTime":1784630687479.072} +{"type":"after","callId":"call@458","endTime":27054.504,"result":{"binary":""}} +{"type":"before","callId":"call@460","startTime":27055.537,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"d2fd6b3d3b6aae7111bebb761d97d93a","phase":"before","event":""},"stepId":"pw:api@61","pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"log","callId":"call@460","time":27055.553,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687489.jpeg","width":1280,"height":720,"timestamp":27063.286,"frameSwapWallTime":1784630687488.021} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687506.jpeg","width":1280,"height":720,"timestamp":27079.826,"frameSwapWallTime":1784630687504.524} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687514.jpeg","width":1280,"height":720,"timestamp":27088.025,"frameSwapWallTime":1784630687512.791} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687523.jpeg","width":1280,"height":720,"timestamp":27096.36,"frameSwapWallTime":1784630687521.152} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687539.jpeg","width":1280,"height":720,"timestamp":27113.147,"frameSwapWallTime":1784630687537.8772} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687548.jpeg","width":1280,"height":720,"timestamp":27121.489,"frameSwapWallTime":1784630687546.266} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687556.jpeg","width":1280,"height":720,"timestamp":27129.973,"frameSwapWallTime":1784630687554.7} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687565.jpeg","width":1280,"height":720,"timestamp":27138.696,"frameSwapWallTime":1784630687563.459} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687581.jpeg","width":1280,"height":720,"timestamp":27154.712,"frameSwapWallTime":1784630687579.4138} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687589.jpeg","width":1280,"height":720,"timestamp":27162.43,"frameSwapWallTime":1784630687587.1921} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687597.jpeg","width":1280,"height":720,"timestamp":27170.738,"frameSwapWallTime":1784630687595.464} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687615.jpeg","width":1280,"height":720,"timestamp":27188.505,"frameSwapWallTime":1784630687613.251} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687623.jpeg","width":1280,"height":720,"timestamp":27196.736,"frameSwapWallTime":1784630687621.414} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687631.jpeg","width":1280,"height":720,"timestamp":27204.877,"frameSwapWallTime":1784630687629.61} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687648.jpeg","width":1280,"height":720,"timestamp":27221.463,"frameSwapWallTime":1784630687646.09} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687656.jpeg","width":1280,"height":720,"timestamp":27229.85,"frameSwapWallTime":1784630687654.499} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687696.jpeg","width":1280,"height":720,"timestamp":27269.57,"frameSwapWallTime":1784630687688.593} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687696.jpeg","width":1280,"height":720,"timestamp":27269.649,"frameSwapWallTime":1784630687689.484} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687697.jpeg","width":1280,"height":720,"timestamp":27271.227,"frameSwapWallTime":1784630687689.844} +{"type":"log","callId":"call@460","time":27271.343,"message":" navigated to \"http://localhost:5174/booking/payment\""} +{"type":"after","callId":"call@460","endTime":27271.351} +{"type":"before","callId":"call@465","startTime":27271.409,"class":"Frame","method":"evaluateExpression","params":{"expression":"() => localStorage.getItem(\"auth_token\")","isFunction":true,"arg":{"value":{"v":"undefined"},"handles":[]}},"stepId":"pw:api@62","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@465"} +{"type":"frame-snapshot","snapshot":{"callId":"call@465","snapshotName":"before@call@465","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[60,0]],[[60,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[60,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[60,36]],[[60,43]],[[60,47]],[[60,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[60,55]],["OL",{"class":"space-y-1"},[[60,61]],[[50,32]],[[6,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[60,79]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[60,82]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[60,84]]]],[[60,91]]]]],[[60,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[60,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[60,132]],[[50,47]],[[6,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[60,166]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[60,169]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[60,170]]]],[[60,173]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[60,175]]]],[[60,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Complete payment"],["DIV",{"class":"card bg-green-50 dark:bg-green-900/20 border border-green-200 dark:border-green-800 mb-4 flex items-start gap-3"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-check-big w-6 h-6 text-green-600 dark:text-green-400 flex-shrink-0 mt-0.5"},["path",{"d":"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{"d":"m9 11 3 3L22 4"}]],["DIV",{},["P",{"class":"text-sm font-semibold text-green-800 dark:text-green-300"},"Your booking is successfully reserved"],["P",{"class":"text-sm text-green-700 dark:text-green-400 mt-0.5"},"Booking Reference: ",["SPAN",{"class":"font-bold"},"GLLGTK"]],["P",{"class":"text-xs text-green-700/80 dark:text-green-400/80 mt-1"},"Please complete the payment below to confirm your booking. Your seats are held temporarily until payment is completed."]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 mb-4"},"Select payment method"],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-wallet w-5 h-5 text-primary"},["path",{"d":"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{"d":"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"Wallet"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]],["BUTTON",{"data-testid":"pay-method-TELEBIRR","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-smartphone w-5 h-5 text-primary"},["rect",{"width":"14","height":"20","x":"5","y":"2","rx":"2","ry":"2"}],["path",{"d":"M12 18h.01"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"telebirr"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"GLLGTK"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"GLLGTK"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"disabled":"","class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"]]]]]]]],[[60,296]],[[59,11]]]],"viewport":{"width":1280,"height":720},"timestamp":27273.415,"wallTime":1784630687699,"collectionTime":0.8999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"after","callId":"call@465","endTime":27274.471,"result":{"value":{"s":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}},"afterSnapshot":"after@call@465"} +{"type":"frame-snapshot","snapshot":{"callId":"call@465","snapshotName":"after@call@465","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":[[1,262]],"viewport":{"width":1280,"height":720},"timestamp":27275.898,"wallTime":1784630687702,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@467","startTime":27277.486,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/internal/payments/mark-paid","method":"POST","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"jsonData":"{\"version\":1,\"eventId\":\"3a4f3abb-a054-4081-b2dc-00db6086a607\",\"eventType\":\"payment.succeeded\",\"occurredAt\":\"2026-07-21T10:44:47.702Z\",\"service\":\"PASSENGER\",\"intentId\":\"81d60f30-86b0-41bc-895a-600f29b058aa\",\"referenceType\":\"BOOKING\",\"referenceId\":\"a9be972d-c95f-4ef3-b91b-4084df183dc3\",\"merchantOrderId\":\"e2e-a9be972d-c95f-4ef3-b91b-4084df183dc3\",\"provider\":\"TELEBIRR\",\"amountMinor\":1,\"currency\":\"ETB\",\"providerTxnId\":\"e2e-txn-a9be972d-c95f-4ef3-b91b-4084df183dc3\",\"paidAt\":\"2026-07-21T10:44:47.702Z\"}","timeout":15000},"stepId":"pw:api@63"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687705.jpeg","width":1280,"height":720,"timestamp":27278.605,"frameSwapWallTime":1784630687701.133} +{"type":"log","callId":"call@467","time":27285.543,"message":"→ POST http://localhost:4000/internal/payments/mark-paid"} +{"type":"log","callId":"call@467","time":27285.558,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@467","time":27285.561,"message":" accept: */*"} +{"type":"log","callId":"call@467","time":27285.562,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@467","time":27285.563,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"log","callId":"call@467","time":27285.565,"message":" content-type: application/json"} +{"type":"log","callId":"call@467","time":27285.566,"message":" content-length: 500"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687715.jpeg","width":1280,"height":720,"timestamp":27288.398,"frameSwapWallTime":1784630687709.347} +{"type":"log","callId":"call@467","time":27300.604,"message":"← 200 OK"} +{"type":"log","callId":"call@467","time":27300.611,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@467","time":27300.612,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@467","time":27300.613,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@467","time":27300.614,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@467","time":27300.615,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@467","time":27300.616,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@467","time":27300.617,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@467","time":27300.618,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@467","time":27300.619,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@467","time":27300.62,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@467","time":27300.621,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@467","time":27300.622,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@467","time":27300.623,"message":" vary: Origin"} +{"type":"log","callId":"call@467","time":27300.625,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@467","time":27300.626,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@467","time":27300.627,"message":" content-length: 109"} +{"type":"log","callId":"call@467","time":27300.628,"message":" etag: W/\"6d-0umrO7dNdPgdcy7+SHfU132lhCI\""} +{"type":"log","callId":"call@467","time":27300.629,"message":" date: Tue, 21 Jul 2026 10:44:47 GMT"} +{"type":"log","callId":"call@467","time":27300.63,"message":" connection: keep-alive"} +{"type":"log","callId":"call@467","time":27300.631,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@467","endTime":27300.719,"result":{"response":{"url":"http://localhost:4000/internal/payments/mark-paid","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"109"},{"name":"ETag","value":"W/\"6d-0umrO7dNdPgdcy7+SHfU132lhCI\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:47 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"258c7290a0d39a4ba1186233f01f6ba7"}}} +{"type":"before","callId":"call@469","startTime":27301.453,"class":"Frame","method":"goto","params":{"url":"/booking/confirmation","timeout":0,"waitUntil":"load"},"stepId":"pw:api@64","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@469"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687728.jpeg","width":1280,"height":720,"timestamp":27301.669,"frameSwapWallTime":1784630687725.894} +{"type":"frame-snapshot","snapshot":{"callId":"call@469","snapshotName":"before@call@469","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":[[2,262]],"viewport":{"width":1280,"height":720},"timestamp":27302.314,"wallTime":1784630687728,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@469","time":27302.572,"message":"navigating to \"http://localhost:5174/booking/confirmation\", waiting until \"load\""} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687736.jpeg","width":1280,"height":720,"timestamp":27309.335,"frameSwapWallTime":1784630687734.116} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687743.jpeg","width":1280,"height":720,"timestamp":27317.174,"frameSwapWallTime":1784630687741.854} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687760.jpeg","width":1280,"height":720,"timestamp":27333.946,"frameSwapWallTime":1784630687758.3398} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687769.jpeg","width":1280,"height":720,"timestamp":27342.348,"frameSwapWallTime":1784630687766.9958} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630687772.jpeg","width":1280,"height":720,"timestamp":27346.054,"frameSwapWallTime":1784630687771.112} +{"type":"console","messageType":"info","text":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold","args":[{"preview":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools","value":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools"},{"preview":"font-weight:bold","value":"font-weight:bold"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":38559,"columnNumber":16},"time":27532.32,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"after","callId":"call@469","endTime":27787.615,"result":{"response":""},"afterSnapshot":"after@call@469"} +{"type":"console","messageType":"error","text":"Warning: Prop `%s` did not match. Server: %s Client: %s%s nonce \"\" \"NGZlNzAxZDItZTZkOS00ODZmLWJiYTctYzgwNTYzMWRiZDQz\" \n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","args":[{"preview":"Warning: Prop `%s` did not match. Server: %s Client: %s%s","value":"Warning: Prop `%s` did not match. Server: %s Client: %s%s"},{"preview":"nonce","value":"nonce"},{"preview":"\"\"","value":"\"\""},{"preview":"\"NGZlNzAxZDItZTZkOS00ODZmLWJiYTctYzgwNTYzMWRiZDQz\"","value":"\"NGZlNzAxZDItZTZkOS00ODZmLWJiYTctYzgwNTYzMWRiZDQz\""},{"preview":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","value":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js","lineNumber":32,"columnNumber":21},"time":27787.859,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688217.jpeg","width":1280,"height":720,"timestamp":27790.353,"frameSwapWallTime":1784630688189.384} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688217.jpeg","width":1280,"height":720,"timestamp":27790.538,"frameSwapWallTime":1784630688190.8418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688217.jpeg","width":1280,"height":720,"timestamp":27790.575,"frameSwapWallTime":1784630688190.458} +{"type":"before","callId":"call@471","startTime":27791.205,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@65"} +{"type":"console","messageType":"warning","text":"WebSocket connection to 'ws://localhost:4000/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.","args":[],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/engine.io-client@6.6.5/node_modules/engine.io-client/build/esm/transports/websocket.js","lineNumber":89,"columnNumber":0},"time":27792.93,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"log","callId":"call@471","time":27794.737,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@471","time":27794.756,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@471","time":27794.758,"message":" accept: */*"} +{"type":"log","callId":"call@471","time":27794.76,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@471","time":27794.761,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688224.jpeg","width":1280,"height":720,"timestamp":27797.615,"frameSwapWallTime":1784630688220.676} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688232.jpeg","width":1280,"height":720,"timestamp":27805.605,"frameSwapWallTime":1784630688230.122} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688241.jpeg","width":1280,"height":720,"timestamp":27814.974,"frameSwapWallTime":1784630688238.0469} +{"type":"log","callId":"call@471","time":27817.774,"message":"← 200 OK"} +{"type":"log","callId":"call@471","time":27817.778,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@471","time":27817.78,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@471","time":27817.781,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@471","time":27817.782,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@471","time":27817.783,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@471","time":27817.784,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@471","time":27817.785,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@471","time":27817.786,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@471","time":27817.787,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@471","time":27817.788,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@471","time":27817.789,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@471","time":27817.79,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@471","time":27817.791,"message":" vary: Origin"} +{"type":"log","callId":"call@471","time":27817.792,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@471","time":27817.792,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@471","time":27817.793,"message":" content-length: 1234"} +{"type":"log","callId":"call@471","time":27817.794,"message":" etag: W/\"4d2-nTNMMuEsTCQaaPZo9Wl62ivUK2A\""} +{"type":"log","callId":"call@471","time":27817.796,"message":" date: Tue, 21 Jul 2026 10:44:48 GMT"} +{"type":"log","callId":"call@471","time":27817.798,"message":" connection: keep-alive"} +{"type":"log","callId":"call@471","time":27817.799,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@471","endTime":27817.862,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-nTNMMuEsTCQaaPZo9Wl62ivUK2A\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"e24c38534a620b90c0dc9b373eb3efd9"}}} +{"type":"before","callId":"call@474","startTime":27820.092,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@66","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@474"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688248.jpeg","width":1280,"height":720,"timestamp":27822.143,"frameSwapWallTime":1784630688246.766} +{"type":"frame-snapshot","snapshot":{"callId":"call@474","snapshotName":"before@call@474","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},["HEAD",{},["BASE",{"href":"http://localhost:5174/"}],["META",{"charset":"utf-8"}],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["LINK",{"rel":"stylesheet","href":"/_next/static/css/app/layout.css?v=1784630688201","data-precedence":"next_static/css/app/layout.css"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Search trains between Ethiopia and Djibouti with easy online booking, seat selection, and flexible payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["LINK",{"rel":"canonical","href":"https://passenger.edrsc.com"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Search and book train tickets across the Ethio-Djibouti Railway. Multiple seat classes available."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},["A",{"class":"flex items-center px-5 h-20 flex-shrink-0 hover:opacity-80 transition-opacity","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-16 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors bg-white/15 text-white","href":"/"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-house w-5 h-5","aria-hidden":"true"},["path",{"d":"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{"d":"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],"Home"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/booking/lookup"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-ticket w-5 h-5","aria-hidden":"true"},["path",{"d":"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{"d":"M13 5v2"}],["path",{"d":"M13 17v2"}],["path",{"d":"M13 11v2"}]],"My Bookings"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/contact"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-phone w-5 h-5","aria-hidden":"true"},["path",{"d":"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],"Contact"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/help"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-question-mark w-5 h-5","aria-hidden":"true"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{"d":"M12 17h.01"}]],"Help"]],["DIV",{"class":"flex-shrink-0 border-t border-white/15 p-3 space-y-1"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium text-gray-100 hover:bg-white/10 hover:text-white transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-moon w-5 h-5","aria-hidden":"true"},["path",{"d":"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],"Dark mode"]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},["DIV",{"class":"lg:hidden relative bg-[rgb(20_113_76)] dark:bg-gray-900 border-b border-[rgb(16_89_60)] dark:border-gray-800 px-4 h-16 flex items-center flex-shrink-0"},["A",{"class":"flex items-center hover:opacity-80 transition-opacity","aria-label":"Go to home","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-14 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["DIV",{"class":"ml-auto"},["DIV",{"class":"w-10 h-10 rounded-lg bg-gray-100 dark:bg-gray-800"}]]],["MAIN",{"class":"flex-1"},["DIV",{"class":"jsx-c6cfc4b19216884e bg-gray-50 dark:bg-gray-950"},["SECTION",{"class":"jsx-c6cfc4b19216884e relative md:h-[75vh] md:min-h-[500px]"},["DIV",{"class":"jsx-c6cfc4b19216884e absolute inset-0 overflow-hidden"},["DIV",{"style":"background-image:url(/edr-banner.jpg);position:absolute;top:0;left:0;right:0;bottom:0","class":"jsx-c6cfc4b19216884e w-full h-full bg-cover bg-center animate-bg-zoom"}]],["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block absolute inset-0 bg-gradient-to-br from-black/70 via-black/40 to-transparent"}],["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block absolute inset-0 bg-gradient-to-t from-black/80 via-transparent to-transparent"}],["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block relative z-10 pt-16 md:pt-20 px-6 md:px-12 max-w-6xl mx-auto"},["H1",{"class":"jsx-c6cfc4b19216884e text-4xl md:text-5xl lg:text-6xl font-extrabold text-white leading-tight drop-shadow-lg max-w-2xl animate-fade-in-up"},"Where are you",["BR",{"class":"jsx-c6cfc4b19216884e hidden sm:block"}]," headed today?"],["P",{"class":"jsx-c6cfc4b19216884e text-white/90 text-sm md:text-base mt-3 drop-shadow-lg animate-fade-in-up-delay"},"Book your train journey across East Africa"]],["DIV",{"class":"jsx-c6cfc4b19216884e relative pt-4 pb-4 md:pt-0 md:pb-0 md:absolute md:bottom-8 md:left-0 md:right-0 z-[30] px-4 md:px-6"},["DIV",{"class":"jsx-c6cfc4b19216884e max-w-6xl mx-auto"},["DIV",{"class":"jsx-c6cfc4b19216884e md:hidden mb-3"},["H1",{"class":"jsx-c6cfc4b19216884e text-lg font-extrabold text-gray-900 dark:text-gray-100 leading-tight"},"Where are you headed today?"]],["FORM",{"class":"jsx-c6cfc4b19216884e"},["DIV",{"class":"jsx-c6cfc4b19216884e bg-white dark:bg-gray-900 rounded-2xl shadow-none md:shadow-2xl border border-white/20 overflow-visible"},["DIV",{"class":"jsx-c6cfc4b19216884e p-4 md:p-5"},["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block"},["DIV",{"class":"mb-4"},["DIV",{"class":"inline-flex rounded-xl bg-gray-100 dark:bg-gray-800 p-1 w-full md:w-auto"},["BUTTON",{"type":"button","class":"flex-1 md:flex-none px-6 py-2.5 rounded-lg text-sm font-semibold transition-all bg-white dark:bg-gray-900 text-primary shadow-sm"},"One Way"],["BUTTON",{"type":"button","class":"flex-1 md:flex-none px-6 py-2.5 rounded-lg text-sm font-semibold transition-all text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-200"},"Round Trip"]]]],["DIV",{"class":"jsx-c6cfc4b19216884e flex flex-col gap-3 md:hidden"},["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"space-y-1.5 min-w-0"},["DIV",{"class":"h-5 flex items-center"},["LABEL",{"class":"text-xs font-semibold text-gray-500 uppercase tracking-wide"},"From"]],["BUTTON",{"type":"button","class":"w-full"},["DIV",{"class":"flex items-center gap-2 px-2.5 py-3 border-2 rounded-xl transition-all border-gray-200 dark:border-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-4 h-4 text-primary flex-shrink-0","aria-hidden":"true"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{"style":"color:#9ca3af","class":"text-sm truncate "},"Select departure station"]]]],["DIV",{"class":"space-y-1.5 min-w-0"},["DIV",{"class":"h-5 flex items-center justify-between"},["LABEL",{"class":"text-xs font-semibold text-gray-500 uppercase tracking-wide"},"To"],["BUTTON",{"type":"button","disabled":"","aria-label":"Swap origin and destination","class":"flex items-center justify-center gap-1 text-xs text-primary font-medium disabled:opacity-30 p-0 h-5 w-5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-left-right w-3.5 h-3.5 transition-transform duration-300","aria-hidden":"true"},["path",{"d":"M8 3 4 7l4 4"}],["path",{"d":"M4 7h16"}],["path",{"d":"m16 21 4-4-4-4"}],["path",{"d":"M20 17H4"}]]]],["BUTTON",{"type":"button","class":"w-full"},["DIV",{"class":"flex items-center gap-2 px-2.5 py-3 border-2 rounded-xl transition-all border-gray-200 dark:border-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-4 h-4 text-primary flex-shrink-0","aria-hidden":"true"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{"style":"color:#9ca3af","class":"text-sm truncate "},"Select destination station"]]]]],["BUTTON",{"type":"button","class":"jsx-c6cfc4b19216884e btn-primary w-full text-sm flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-search w-5 h-5","aria-hidden":"true"},["path",{"d":"m21 21-4.34-4.34"}],["circle",{"cx":"11","cy":"11","r":"8"}]],"Search"]],["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block"},["DIV",{"class":"jsx-c6cfc4b19216884e flex items-end gap-2"},["DIV",{"class":"jsx-c6cfc4b19216884e flex-1 min-w-0 space-y-1"},["LABEL",{"class":"jsx-c6cfc4b19216884e text-xs font-semibold text-gray-500 uppercase tracking-wide"},"From"],["DIV",{"class":"relative"},["DIV",{"class":"relative flex items-center border-2 rounded-xl transition-all duration-200 bg-white dark:bg-gray-800 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin absolute left-3.5 w-4 h-4 text-primary flex-shrink-0","aria-hidden":"true"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["INPUT",{"__playwright_value_":"","placeholder":"Departure station","class":"w-full pl-10 pr-8 py-3.5 bg-transparent rounded-xl focus:outline-none text-sm text-gray-900 dark:text-white placeholder-gray-400","value":""}]]]],["BUTTON",{"type":"button","disabled":"","class":"jsx-c6cfc4b19216884e flex-shrink-0 mb-0.5 w-9 h-9 bg-gray-50 border-2 border-gray-200 rounded-full flex items-center justify-center hover:border-primary hover:bg-primary/5 transition-all disabled:opacity-30 "},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-left-right w-4 h-4 text-gray-500","aria-hidden":"true"},["path",{"d":"M8 3 4 7l4 4"}],["path",{"d":"M4 7h16"}],["path",{"d":"m16 21 4-4-4-4"}],["path",{"d":"M20 17H4"}]]],["DIV",{"class":"jsx-c6cfc4b19216884e flex-1 min-w-0 space-y-1"},["LABEL",{"class":"jsx-c6cfc4b19216884e text-xs font-semibold text-gray-500 uppercase tracking-wide"},"To"],["DIV",{"class":"relative"},["DIV",{"class":"relative flex items-center border-2 rounded-xl transition-all duration-200 bg-white dark:bg-gray-800 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin absolute left-3.5 w-4 h-4 text-primary flex-shrink-0","aria-hidden":"true"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["INPUT",{"__playwright_value_":"","placeholder":"Destination station","class":"w-full pl-10 pr-8 py-3.5 bg-transparent rounded-xl focus:outline-none text-sm text-gray-900 dark:text-white placeholder-gray-400","value":""}]]]],["DIV",{"class":"jsx-c6cfc4b19216884e w-44 flex-shrink-0 space-y-1"},["LABEL",{"class":"jsx-c6cfc4b19216884e text-xs font-semibold text-gray-500 uppercase tracking-wide"},"Date"],["DIV",{"class":"jsx-c6cfc4b19216884e"},["DIV",{"class":"relative"},["BUTTON",{"type":"button","class":"w-full min-w-0 px-2.5 sm:px-3.5 py-3.5 border-2 rounded-xl focus:outline-none focus:ring-2 focus:ring-primary/30 focus:border-primary text-left flex items-center justify-between gap-1.5 bg-white dark:bg-gray-800 transition-all group border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["SPAN",{"class":"text-sm whitespace-nowrap truncate text-gray-400"},"Departure"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar w-4 h-4 text-gray-400 group-hover:text-primary transition-colors flex-shrink-0","aria-hidden":"true"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}]]]]]],["DIV",{"class":"jsx-c6cfc4b19216884e w-44 flex-shrink-0 space-y-1"},["LABEL",{"class":"jsx-c6cfc4b19216884e text-xs font-semibold text-gray-500 uppercase tracking-wide"},"Passengers"],["BUTTON",{"type":"button","class":"jsx-c6cfc4b19216884e w-full flex items-center justify-between px-3 py-3.5 border-2 rounded-xl bg-white dark:bg-gray-800 hover:border-gray-300 dark:hover:border-gray-600 transition-all border-gray-200 dark:border-gray-700"},["SPAN",{"class":"jsx-c6cfc4b19216884e flex items-center gap-1.5 text-sm font-medium text-gray-900 dark:text-white truncate"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-users w-4 h-4 text-primary flex-shrink-0","aria-hidden":"true"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["path",{"d":"M16 3.128a4 4 0 0 1 0 7.744"}],["path",{"d":"M22 21v-2a4 4 0 0 0-3-3.87"}],["circle",{"cx":"9","cy":"7","r":"4"}]],"1"," ","Passenger"," · Nationality"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-primary flex-shrink-0","aria-hidden":"true"},["path",{"d":"m6 9 6 6 6-6"}]]]],["BUTTON",{"type":"submit","class":"jsx-c6cfc4b19216884e flex-shrink-0 flex items-center justify-center gap-2 px-5 py-3.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all transform hover:-translate-y-0.5 shadow-lg hover:shadow-xl disabled:opacity-80"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-search w-5 h-5","aria-hidden":"true"},["path",{"d":"m21 21-4.34-4.34"}],["circle",{"cx":"11","cy":"11","r":"8"}]],"Search"]]]]]]]]]],["SECTION",{"class":"bg-gray-50 dark:bg-gray-950 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto space-y-6"},["DIV",{"class":"flex items-center justify-between"},["DIV",{"class":"flex items-center gap-2.5"},["SPAN",{"class":"text-xl"},"🏖️"],["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Holiday Packages"]]],["DIV",{"class":"rounded-3xl overflow-hidden border border-gray-100 dark:border-gray-800 animate-pulse flex flex-col md:flex-row min-h-[340px]"},["DIV",{"class":"md:w-[46%] h-64 md:h-auto bg-gray-200 dark:bg-gray-700 flex-shrink-0"}],["DIV",{"class":"flex-1 p-8 space-y-4"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-1/4"}],["DIV",{"class":"h-7 bg-gray-200 dark:bg-gray-700 rounded w-3/4"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-1/2"}],["DIV",{"class":"grid grid-cols-2 gap-4 pt-2"},["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded"}],["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded"}],["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded"}],["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded"}]],["DIV",{"class":"flex gap-2 pt-2"},["DIV",{"class":"h-6 w-28 bg-gray-200 dark:bg-gray-700 rounded-full"}],["DIV",{"class":"h-6 w-28 bg-gray-200 dark:bg-gray-700 rounded-full"}],["DIV",{"class":"h-6 w-28 bg-gray-200 dark:bg-gray-700 rounded-full"}]]]],["DIV",{"class":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-5"},["DIV",{"class":"rounded-2xl overflow-hidden border border-gray-100 dark:border-gray-800 animate-pulse"},["DIV",{"class":"h-44 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"p-4 space-y-3"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-3/4"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-1/2"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-2/3"}],["DIV",{"class":"h-1 bg-gray-200 dark:bg-gray-700 rounded"}]]],["DIV",{"class":"rounded-2xl overflow-hidden border border-gray-100 dark:border-gray-800 animate-pulse"},["DIV",{"class":"h-44 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"p-4 space-y-3"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-3/4"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-1/2"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-2/3"}],["DIV",{"class":"h-1 bg-gray-200 dark:bg-gray-700 rounded"}]]],["DIV",{"class":"rounded-2xl overflow-hidden border border-gray-100 dark:border-gray-800 animate-pulse"},["DIV",{"class":"h-44 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"p-4 space-y-3"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-3/4"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-1/2"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-2/3"}],["DIV",{"class":"h-1 bg-gray-200 dark:bg-gray-700 rounded"}]]]]]]]],["DIV",{"class":"lg:hidden h-16","aria-hidden":"true"}],["NAV",{"class":"lg:hidden fixed bottom-0 inset-x-0 z-40 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-800 shadow-[0_-2px_10px_rgba(0,0,0,0.05)]"},["UL",{"class":"flex items-stretch"},["LI",{"class":"flex-1"},["A",{"class":"flex flex-col items-center justify-center gap-0.5 py-2.5 text-[11px] font-medium transition-colors text-primary","href":"/"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2.5","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-house w-5 h-5 text-primary","aria-hidden":"true"},["path",{"d":"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{"d":"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],"Home"]],["LI",{"class":"flex-1"},["A",{"class":"flex flex-col items-center justify-center gap-0.5 py-2.5 text-[11px] font-medium transition-colors text-gray-500 dark:text-gray-400","href":"/booking/lookup"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-ticket w-5 h-5","aria-hidden":"true"},["path",{"d":"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{"d":"M13 5v2"}],["path",{"d":"M13 17v2"}],["path",{"d":"M13 11v2"}]],"Bookings"]],["LI",{"class":"flex-1"},["A",{"class":"flex flex-col items-center justify-center gap-0.5 py-2.5 text-[11px] font-medium transition-colors text-gray-500 dark:text-gray-400","href":"/contact"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-phone w-5 h-5","aria-hidden":"true"},["path",{"d":"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],"Contact"]]]]],["TEMPLATE",{"data-dgst":"BAILOUT_TO_CLIENT_SIDE_RENDERING","data-msg":"Bail out to client-side rendering: next/dynamic","data-stck":"\n at BailoutToCSR (webpack-internal:///(ssr)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/shared/lib/lazy-dynamic/dynamic-bailout-to-csr.js:13:11)\n at Suspense\n at LoadableComponent\n at Lazy\n at ThemeProvider (webpack-internal:///(ssr)/./src/components/ThemeProvider.tsx:13:26)\n at QueryClientProvider (webpack-internal:///(ssr)/../../../node_modules/.pnpm/@tanstack+react-query@5.101.0_react@18.3.1/node_modules/@tanstack/react-query/build/modern/QueryClientProvider.js:23:30)\n at Providers (webpack-internal:///(ssr)/./src/app/providers.tsx:16:22)\n at Lazy\n at body\n at html\n at RedirectErrorBoundary (webpack-internal:///(ssr)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:73:9)\n at RedirectBoundary (webpack-internal:///(ssr)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:81:11)\n at ReactDevOverlay (webpack-internal:///(ssr)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(ssr)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:322:11)\n at Router (webpack-internal:///(ssr)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:202:11)\n at ErrorBoundaryHandler (webpack-internal:///(ssr)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:112:9)\n at ErrorBoundary (webpack-internal:///(ssr)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:158:11)\n at AppRouter (webpack-internal:///(ssr)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:564:13)\n at Lazy\n at r7 (/Users/mulumehari/mulu-projects/smart-office/smartofficerepos/edr-platform/node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:40:19155)\n at r7 (/Users/mulumehari/mulu-projects/smart-office/smartofficerepos/edr-platform/node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:40:19155)\n at ServerInsertedHTMLProvider (/Users/mulumehari/mulu-projects/smart-office/smartofficerepos/edr-platform/node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:40:24939)"}]]],"viewport":{"width":1280,"height":720},"timestamp":27823.262,"wallTime":1784630688248,"collectionTime":1.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688265.jpeg","width":1280,"height":720,"timestamp":27839.034,"frameSwapWallTime":1784630688263.565} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688274.jpeg","width":1280,"height":720,"timestamp":27847.788,"frameSwapWallTime":1784630688272.5288} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688282.jpeg","width":1280,"height":720,"timestamp":27855.844,"frameSwapWallTime":1784630688279.897} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688290.jpeg","width":1280,"height":720,"timestamp":27864.263,"frameSwapWallTime":1784630688288.321} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688340.jpeg","width":1280,"height":720,"timestamp":27913.748,"frameSwapWallTime":1784630688304.873} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688340.jpeg","width":1280,"height":720,"timestamp":27913.827,"frameSwapWallTime":1784630688333.911} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688340.jpeg","width":1280,"height":720,"timestamp":27913.948,"frameSwapWallTime":1784630688334.271} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688349.jpeg","width":1280,"height":720,"timestamp":27923.308,"frameSwapWallTime":1784630688347.386} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688357.jpeg","width":1280,"height":720,"timestamp":27930.516,"frameSwapWallTime":1784630688354.661} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688366.jpeg","width":1280,"height":720,"timestamp":27939.932,"frameSwapWallTime":1784630688364.0498} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688382.jpeg","width":1280,"height":720,"timestamp":27955.575,"frameSwapWallTime":1784630688379.741} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688391.jpeg","width":1280,"height":720,"timestamp":27965.168,"frameSwapWallTime":1784630688389.3271} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688399.jpeg","width":1280,"height":720,"timestamp":27972.577,"frameSwapWallTime":1784630688396.796} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688407.jpeg","width":1280,"height":720,"timestamp":27981.267,"frameSwapWallTime":1784630688405.377} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688482.jpeg","width":1280,"height":720,"timestamp":28055.715,"frameSwapWallTime":1784630688468.876} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688482.jpeg","width":1280,"height":720,"timestamp":28056.078,"frameSwapWallTime":1784630688469.384} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688482.jpeg","width":1280,"height":720,"timestamp":28056.223,"frameSwapWallTime":1784630688469.9111} +{"type":"console","messageType":"info","text":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold","args":[{"preview":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools","value":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools"},{"preview":"font-weight:bold","value":"font-weight:bold"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":38559,"columnNumber":16},"time":28058.674,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688492.jpeg","width":1280,"height":720,"timestamp":28066.016,"frameSwapWallTime":1784630688489.213} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688508.jpeg","width":1280,"height":720,"timestamp":28081.733,"frameSwapWallTime":1784630688505.846} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688515.jpeg","width":1280,"height":720,"timestamp":28088.863,"frameSwapWallTime":1784630688513.0688} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688524.jpeg","width":1280,"height":720,"timestamp":28098.201,"frameSwapWallTime":1784630688522.414} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688541.jpeg","width":1280,"height":720,"timestamp":28114.915,"frameSwapWallTime":1784630688539.03} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688549.jpeg","width":1280,"height":720,"timestamp":28122.364,"frameSwapWallTime":1784630688546.584} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688558.jpeg","width":1280,"height":720,"timestamp":28131.445,"frameSwapWallTime":1784630688555.616} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688574.jpeg","width":1280,"height":720,"timestamp":28148.128,"frameSwapWallTime":1784630688572.295} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688582.jpeg","width":1280,"height":720,"timestamp":28155.61,"frameSwapWallTime":1784630688579.7852} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688591.jpeg","width":1280,"height":720,"timestamp":28164.879,"frameSwapWallTime":1784630688588.99} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688607.jpeg","width":1280,"height":720,"timestamp":28180.6,"frameSwapWallTime":1784630688604.776} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688616.jpeg","width":1280,"height":720,"timestamp":28189.671,"frameSwapWallTime":1784630688613.8} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688623.jpeg","width":1280,"height":720,"timestamp":28197.21,"frameSwapWallTime":1784630688621.471} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688632.jpeg","width":1280,"height":720,"timestamp":28205.675,"frameSwapWallTime":1784630688629.789} +{"type":"after","callId":"call@474","endTime":28325.573,"afterSnapshot":"after@call@474"} +{"type":"console","messageType":"error","text":"Warning: Prop `%s` did not match. Server: %s Client: %s%s nonce \"\" \"MmFiNzFjMWYtNzg3ZS00NDdhLThiMTktODJjMzhjNDBhMzQy\" \n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","args":[{"preview":"Warning: Prop `%s` did not match. Server: %s Client: %s%s","value":"Warning: Prop `%s` did not match. Server: %s Client: %s%s"},{"preview":"nonce","value":"nonce"},{"preview":"\"\"","value":"\"\""},{"preview":"\"MmFiNzFjMWYtNzg3ZS00NDdhLThiMTktODJjMzhjNDBhMzQy\"","value":"\"MmFiNzFjMWYtNzg3ZS00NDdhLThiMTktODJjMzhjNDBhMzQy\""},{"preview":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","value":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js","lineNumber":32,"columnNumber":21},"time":28326.663,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"event","time":28327.075,"class":"BrowserContext","method":"pageError","params":{"error":{"error":{"message":"Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error","stack":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error\n at throwOnHydrationMismatch (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:6981:9)\n at tryToClaimNextHydratableInstance (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:7040:7)\n at updateHostComponent$1 (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:16621:5)\n at beginWork$1 (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:18503:14)\n at HTMLUnknownElement.callCallback (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:20565:14)\n at Object.invokeGuardedCallbackImpl (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:20614:16)\n at invokeGuardedCallback (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:20689:29)\n at beginWork (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26949:7)\n at performUnitOfWork (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:25748:12)\n at workLoopSync (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:25464:5)\n at renderRootSync (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:25419:7)\n at performSyncWorkOnRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:24887:20)\n at flushSyncWorkAcrossRoots_impl (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:7758:13)\n at flushSyncWorkOnAllRoots (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:7718:3)\n at flushPassiveEffectsImpl (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26518:3)\n at flushPassiveEffects (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26438:14)\n at eval (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26172:9)\n at workLoop (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js:256:34)\n at flushWork (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js:225:14)\n at MessagePort.performWorkUntilDeadline (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js:534:21)","name":"Error"}},"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","line":6980,"column":8}},"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"event","time":28327.156,"class":"BrowserContext","method":"pageError","params":{"error":{"error":{"message":"Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error","stack":"Error: Hydration failed because the initial UI does not match what was rendered on the server.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error\n at throwOnHydrationMismatch (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:6981:9)\n at tryToClaimNextHydratableInstance (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:7040:7)\n at updateHostComponent$1 (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:16621:5)\n at beginWork$1 (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:18503:14)\n at beginWork (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26927:14)\n at performUnitOfWork (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:25748:12)\n at workLoopSync (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:25464:5)\n at renderRootSync (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:25419:7)\n at performSyncWorkOnRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:24887:20)\n at flushSyncWorkAcrossRoots_impl (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:7758:13)\n at flushSyncWorkOnAllRoots (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:7718:3)\n at flushPassiveEffectsImpl (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26518:3)\n at flushPassiveEffects (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26438:14)\n at eval (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26172:9)\n at workLoop (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js:256:34)\n at flushWork (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js:225:14)\n at MessagePort.performWorkUntilDeadline (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js:534:21)","name":"Error"}},"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","line":6980,"column":8}},"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"event","time":28327.208,"class":"BrowserContext","method":"pageError","params":{"error":{"error":{"message":"There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error","stack":"Error: There was an error while hydrating this Suspense boundary. Switched to client rendering.\nSee more info here: https://nextjs.org/docs/messages/react-hydration-error\n at updateDehydratedSuspenseComponent (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:17594:57)\n at updateSuspenseComponent (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:17193:16)\n at beginWork$1 (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:18509:14)\n at beginWork (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26927:14)\n at performUnitOfWork (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:25748:12)\n at workLoopSync (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:25464:5)\n at renderRootSync (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:25419:7)\n at performSyncWorkOnRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:24887:20)\n at flushSyncWorkAcrossRoots_impl (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:7758:13)\n at flushSyncWorkOnAllRoots (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:7718:3)\n at flushPassiveEffectsImpl (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26518:3)\n at flushPassiveEffects (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26438:14)\n at eval (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js:26172:9)\n at workLoop (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js:256:34)\n at flushWork (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js:225:14)\n at MessagePort.performWorkUntilDeadline (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js:534:21)","name":"Error"}},"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","line":17593,"column":56}},"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688758.jpeg","width":1280,"height":720,"timestamp":28331.92,"frameSwapWallTime":1784630688727.02} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688760.jpeg","width":1280,"height":720,"timestamp":28333.473,"frameSwapWallTime":1784630688732.586} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688760.jpeg","width":1280,"height":720,"timestamp":28333.992,"frameSwapWallTime":1784630688733.053} +{"type":"frame-snapshot","snapshot":{"callId":"call@474","snapshotName":"after@call@474","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},["HEAD",{},[[1,0]],[[1,1]],[[1,2]],[[1,3]],[[1,5]],[[1,6]],[[1,7]],[[1,8]],[[1,9]],[[1,10]],[[1,11]],[[1,12]],[[1,13]],[[1,14]],[[1,15]],[[1,16]],[[1,17]],[[1,18]],[[1,19]],[[1,20]],[[1,21]],[[1,22]],[[1,23]],["STYLE",{},"@-webkit-keyframes slide-up{from{-webkit-transform:translatey(100%);transform:translatey(100%);opacity:0}to{-webkit-transform:translatey(0);transform:translatey(0);opacity:1}}@-moz-keyframes slide-up{from{-moz-transform:translatey(100%);transform:translatey(100%);opacity:0}to{-moz-transform:translatey(0);transform:translatey(0);opacity:1}}@-o-keyframes slide-up{from{-o-transform:translatey(100%);transform:translatey(100%);opacity:0}to{-o-transform:translatey(0);transform:translatey(0);opacity:1}}@keyframes slide-up{from{-webkit-transform:translatey(100%);-moz-transform:translatey(100%);-o-transform:translatey(100%);transform:translatey(100%);opacity:0}to{-webkit-transform:translatey(0);-moz-transform:translatey(0);-o-transform:translatey(0);transform:translatey(0);opacity:1}}.animate-slide-up.jsx-c6cfc4b19216884e{-webkit-animation:slide-up.25s cubic-bezier(.32,.72,0,1);-moz-animation:slide-up.25s cubic-bezier(.32,.72,0,1);-o-animation:slide-up.25s cubic-bezier(.32,.72,0,1);animation:slide-up.25s cubic-bezier(.32,.72,0,1)}@-webkit-keyframes fade-in-up{from{opacity:0;-webkit-transform:translatey(20px);transform:translatey(20px)}to{opacity:1;-webkit-transform:translatey(0);transform:translatey(0)}}@-moz-keyframes fade-in-up{from{opacity:0;-moz-transform:translatey(20px);transform:translatey(20px)}to{opacity:1;-moz-transform:translatey(0);transform:translatey(0)}}@-o-keyframes fade-in-up{from{opacity:0;-o-transform:translatey(20px);transform:translatey(20px)}to{opacity:1;-o-transform:translatey(0);transform:translatey(0)}}@keyframes fade-in-up{from{opacity:0;-webkit-transform:translatey(20px);-moz-transform:translatey(20px);-o-transform:translatey(20px);transform:translatey(20px)}to{opacity:1;-webkit-transform:translatey(0);-moz-transform:translatey(0);-o-transform:translatey(0);transform:translatey(0)}}.animate-fade-in-up.jsx-c6cfc4b19216884e{-webkit-animation:fade-in-up.8s cubic-bezier(.16,1,.3,1)forwards;-moz-animation:fade-in-up.8s cubic-bezier(.16,1,.3,1)forwards;-o-animation:fade-in-up.8s cubic-bezier(.16,1,.3,1)forwards;animation:fade-in-up.8s cubic-bezier(.16,1,.3,1)forwards}.animate-fade-in-up-delay.jsx-c6cfc4b19216884e{opacity:0;-webkit-animation:fade-in-up.8s cubic-bezier(.16,1,.3,1).2s forwards;-moz-animation:fade-in-up.8s cubic-bezier(.16,1,.3,1).2s forwards;-o-animation:fade-in-up.8s cubic-bezier(.16,1,.3,1).2s forwards;animation:fade-in-up.8s cubic-bezier(.16,1,.3,1).2s forwards}@-webkit-keyframes bg-zoom{0%{-webkit-transform:scale(1.08);transform:scale(1.08)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-moz-keyframes bg-zoom{0%{-moz-transform:scale(1.08);transform:scale(1.08)}100%{-moz-transform:scale(1);transform:scale(1)}}@-o-keyframes bg-zoom{0%{-o-transform:scale(1.08);transform:scale(1.08)}100%{-o-transform:scale(1);transform:scale(1)}}@keyframes bg-zoom{0%{-webkit-transform:scale(1.08);-moz-transform:scale(1.08);-o-transform:scale(1.08);transform:scale(1.08)}100%{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}.animate-bg-zoom.jsx-c6cfc4b19216884e{-webkit-animation:bg-zoom 3s cubic-bezier(.16,1,.3,1)forwards;-moz-animation:bg-zoom 3s cubic-bezier(.16,1,.3,1)forwards;-o-animation:bg-zoom 3s cubic-bezier(.16,1,.3,1)forwards;animation:bg-zoom 3s cubic-bezier(.16,1,.3,1)forwards;will-change:transform}"]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[1,26]],[[1,49]],["DIV",{"class":"flex-shrink-0 border-t border-white/15 p-3 space-y-1"},[[1,53]],["DIV",{"class":"relative"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2 rounded-lg hover:bg-white/10 transition-colors"},["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full bg-white text-[rgb(20_113_76)] font-semibold text-sm"},"T"],["SPAN",{"class":"flex-1 text-left text-sm font-medium text-white truncate"},"Test Passenger"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-200 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]]]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},["DIV",{"class":"lg:hidden relative bg-[rgb(20_113_76)] dark:bg-gray-900 border-b border-[rgb(16_89_60)] dark:border-gray-800 px-4 h-16 flex items-center flex-shrink-0"},[[1,57]],["DIV",{"class":"ml-auto"},["BUTTON",{"class":"p-2 rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors","title":"Current theme: Light. Click to cycle."},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-sun w-5 h-5"},["circle",{"cx":"12","cy":"12","r":"4"}],["path",{"d":"M12 2v2"}],["path",{"d":"M12 20v2"}],["path",{"d":"m4.93 4.93 1.41 1.41"}],["path",{"d":"m17.66 17.66 1.41 1.41"}],["path",{"d":"M2 12h2"}],["path",{"d":"M20 12h2"}],["path",{"d":"m6.34 17.66-1.41 1.41"}],["path",{"d":"m19.07 4.93-1.41 1.41"}]]]]],["MAIN",{"class":"flex-1"},["DIV",{"class":"jsx-c6cfc4b19216884e bg-gray-50 dark:bg-gray-950"},["SECTION",{"class":"jsx-c6cfc4b19216884e relative md:h-[75vh] md:min-h-[500px]"},["DIV",{"class":"jsx-c6cfc4b19216884e absolute inset-0 overflow-hidden"},["DIV",{"class":"jsx-c6cfc4b19216884e w-full h-full bg-cover bg-center animate-bg-zoom","style":"background-image: url(\"/edr-banner.jpg\"); position: absolute; inset: 0px;"}]],["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block absolute inset-0 bg-gradient-to-br from-black/70 via-black/40 to-transparent"}],["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block absolute inset-0 bg-gradient-to-t from-black/80 via-transparent to-transparent"}],["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block relative z-10 pt-16 md:pt-20 px-6 md:px-12 max-w-6xl mx-auto"},["H1",{"class":"jsx-c6cfc4b19216884e text-4xl md:text-5xl lg:text-6xl font-extrabold text-white leading-tight drop-shadow-lg max-w-2xl animate-fade-in-up"},"Where are you",["BR",{"class":"jsx-c6cfc4b19216884e hidden sm:block"}]," headed today?"],["P",{"class":"jsx-c6cfc4b19216884e text-white/90 text-sm md:text-base mt-3 drop-shadow-lg animate-fade-in-up-delay"},"Book your train journey across East Africa"]],["DIV",{"class":"jsx-c6cfc4b19216884e relative pt-4 pb-4 md:pt-0 md:pb-0 md:absolute md:bottom-8 md:left-0 md:right-0 z-[30] px-4 md:px-6"},["DIV",{"class":"jsx-c6cfc4b19216884e max-w-6xl mx-auto"},["DIV",{"class":"jsx-c6cfc4b19216884e md:hidden mb-3"},["H1",{"class":"jsx-c6cfc4b19216884e text-lg font-extrabold text-gray-900 dark:text-gray-100 leading-tight"},"Where are you headed today?"]],["FORM",{"class":"jsx-c6cfc4b19216884e"},["DIV",{"class":"jsx-c6cfc4b19216884e bg-white dark:bg-gray-900 rounded-2xl shadow-none md:shadow-2xl border border-white/20 overflow-visible"},["DIV",{"class":"jsx-c6cfc4b19216884e p-4 md:p-5"},["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block"},["DIV",{"class":"mb-4"},["DIV",{"class":"inline-flex rounded-xl bg-gray-100 dark:bg-gray-800 p-1 w-full md:w-auto"},["BUTTON",{"type":"button","class":"flex-1 md:flex-none px-6 py-2.5 rounded-lg text-sm font-semibold transition-all bg-white dark:bg-gray-900 text-primary shadow-sm"},"One Way"],["BUTTON",{"type":"button","class":"flex-1 md:flex-none px-6 py-2.5 rounded-lg text-sm font-semibold transition-all text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-200"},"Round Trip"]]]],["DIV",{"class":"jsx-c6cfc4b19216884e flex flex-col gap-3 md:hidden"},["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"space-y-1.5 min-w-0"},["DIV",{"class":"h-5 flex items-center"},["LABEL",{"class":"text-xs font-semibold text-gray-500 uppercase tracking-wide"},"From"]],["BUTTON",{"type":"button","class":"w-full"},["DIV",{"class":"flex items-center gap-2 px-2.5 py-3 border-2 rounded-xl transition-all border-gray-200 dark:border-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-4 h-4 text-primary flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{"class":"text-sm truncate ","style":"color: rgb(156, 163, 175);"},"Select departure station"]]]],["DIV",{"class":"space-y-1.5 min-w-0"},["DIV",{"class":"h-5 flex items-center justify-between"},["LABEL",{"class":"text-xs font-semibold text-gray-500 uppercase tracking-wide"},"To"],["BUTTON",{"type":"button","disabled":"","aria-label":"Swap origin and destination","class":"flex items-center justify-center gap-1 text-xs text-primary font-medium disabled:opacity-30 p-0 h-5 w-5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-left-right w-3.5 h-3.5 transition-transform duration-300 "},["path",{"d":"M8 3 4 7l4 4"}],["path",{"d":"M4 7h16"}],["path",{"d":"m16 21 4-4-4-4"}],["path",{"d":"M20 17H4"}]]]],["BUTTON",{"type":"button","class":"w-full"},["DIV",{"class":"flex items-center gap-2 px-2.5 py-3 border-2 rounded-xl transition-all border-gray-200 dark:border-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-4 h-4 text-primary flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{"class":"text-sm truncate ","style":"color: rgb(156, 163, 175);"},"Select destination station"]]]]],["BUTTON",{"type":"button","class":"jsx-c6cfc4b19216884e btn-primary w-full text-sm flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-search w-5 h-5"},["circle",{"cx":"11","cy":"11","r":"8"}],["path",{"d":"m21 21-4.3-4.3"}]],"Search"]],["DIV",{"class":"jsx-c6cfc4b19216884e hidden md:block"},["DIV",{"class":"jsx-c6cfc4b19216884e flex items-end gap-2"},["DIV",{"class":"jsx-c6cfc4b19216884e flex-1 min-w-0 space-y-1"},["LABEL",{"class":"jsx-c6cfc4b19216884e text-xs font-semibold text-gray-500 uppercase tracking-wide"},"From"],["DIV",{"class":"relative"},["DIV",{"class":"relative flex items-center border-2 rounded-xl transition-all duration-200 bg-white dark:bg-gray-800 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin absolute left-3.5 w-4 h-4 text-primary flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["INPUT",{"__playwright_value_":"","placeholder":"Departure station","class":"w-full pl-10 pr-8 py-3.5 bg-transparent rounded-xl focus:outline-none text-sm text-gray-900 dark:text-white placeholder-gray-400","value":""}]]]],["BUTTON",{"type":"button","disabled":"","class":"jsx-c6cfc4b19216884e flex-shrink-0 mb-0.5 w-9 h-9 bg-gray-50 border-2 border-gray-200 rounded-full flex items-center justify-center hover:border-primary hover:bg-primary/5 transition-all disabled:opacity-30 "},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-left-right w-4 h-4 text-gray-500"},["path",{"d":"M8 3 4 7l4 4"}],["path",{"d":"M4 7h16"}],["path",{"d":"m16 21 4-4-4-4"}],["path",{"d":"M20 17H4"}]]],["DIV",{"class":"jsx-c6cfc4b19216884e flex-1 min-w-0 space-y-1"},["LABEL",{"class":"jsx-c6cfc4b19216884e text-xs font-semibold text-gray-500 uppercase tracking-wide"},"To"],["DIV",{"class":"relative"},["DIV",{"class":"relative flex items-center border-2 rounded-xl transition-all duration-200 bg-white dark:bg-gray-800 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin absolute left-3.5 w-4 h-4 text-primary flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["INPUT",{"__playwright_value_":"","placeholder":"Destination station","class":"w-full pl-10 pr-8 py-3.5 bg-transparent rounded-xl focus:outline-none text-sm text-gray-900 dark:text-white placeholder-gray-400","value":""}]]]],["DIV",{"class":"jsx-c6cfc4b19216884e w-44 flex-shrink-0 space-y-1"},["LABEL",{"class":"jsx-c6cfc4b19216884e text-xs font-semibold text-gray-500 uppercase tracking-wide"},"Date"],["DIV",{"class":"jsx-c6cfc4b19216884e"},["DIV",{"class":"relative"},["BUTTON",{"type":"button","class":"w-full min-w-0 px-2.5 sm:px-3.5 py-3.5 border-2 rounded-xl focus:outline-none focus:ring-2 focus:ring-primary/30 focus:border-primary text-left flex items-center justify-between gap-1.5 bg-white dark:bg-gray-800 transition-all group border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["SPAN",{"class":"text-sm whitespace-nowrap truncate text-gray-400"},"Departure"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar w-4 h-4 text-gray-400 group-hover:text-primary transition-colors flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}]]]]]],["DIV",{"class":"jsx-c6cfc4b19216884e w-44 flex-shrink-0 space-y-1"},["LABEL",{"class":"jsx-c6cfc4b19216884e text-xs font-semibold text-gray-500 uppercase tracking-wide"},"Passengers"],["BUTTON",{"type":"button","class":"jsx-c6cfc4b19216884e w-full flex items-center justify-between px-3 py-3.5 border-2 rounded-xl bg-white dark:bg-gray-800 hover:border-gray-300 dark:hover:border-gray-600 transition-all border-gray-200 dark:border-gray-700"},["SPAN",{"class":"jsx-c6cfc4b19216884e flex items-center gap-1.5 text-sm font-medium text-gray-900 dark:text-white truncate"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-users w-4 h-4 text-primary flex-shrink-0"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["path",{"d":"M22 21v-2a4 4 0 0 0-3-3.87"}],["path",{"d":"M16 3.13a4 4 0 0 1 0 7.75"}]],"1"," ","Passenger"," · Nationality"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-primary flex-shrink-0"},["path",{"d":"m6 9 6 6 6-6"}]]]],["BUTTON",{"type":"submit","class":"jsx-c6cfc4b19216884e flex-shrink-0 flex items-center justify-center gap-2 px-5 py-3.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all transform hover:-translate-y-0.5 shadow-lg hover:shadow-xl disabled:opacity-80"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-search w-5 h-5"},["circle",{"cx":"11","cy":"11","r":"8"}],["path",{"d":"m21 21-4.3-4.3"}]],"Search"]]]]]]]]]],["SECTION",{"class":"bg-gray-50 dark:bg-gray-950 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto space-y-6"},[[1,189]],["DIV",{"class":"py-16 text-center"},["SPAN",{"class":"text-5xl block mb-3"},"🏖️"],["P",{"class":"text-sm text-gray-400"},"No holiday packages available right now. Check back soon."]]]]]],[[1,231]],[[1,252]]],["NEXT-ROUTE-ANNOUNCER",{"style":"position: absolute;"},["template",{"__playwright_shadow_root_":"open"},["DIV",{"aria-live":"assertive","id":"__next-route-announcer__","role":"alert","style":"position: absolute; border: 0px; height: 1px; margin: -1px; padding: 0px; width: 1px; clip: rect(0px, 0px, 0px, 0px); overflow: hidden; white-space: nowrap; overflow-wrap: normal;"}]]],["NEXTJS-PORTAL",{},["template",{"__playwright_shadow_root_":"open"},["STYLE",{},"\n :host {\n all: initial;\n\n /* the direction property is not reset by 'all' */\n direction: ltr;\n }\n\n /*!\n * Bootstrap Reboot v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n }\n\n :host {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n }\n\n article,\n aside,\n figcaption,\n figure,\n footer,\n header,\n hgroup,\n main,\n nav,\n section {\n display: block;\n }\n\n :host {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,\n 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,\n 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',\n 'Noto Color Emoji';\n font-size: 16px;\n font-weight: 400;\n line-height: 1.5;\n color: var(--color-font);\n text-align: left;\n background-color: #fff;\n }\n\n [tabindex='-1']:focus:not(:focus-visible) {\n outline: 0 !important;\n }\n\n hr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n }\n\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n margin-top: 0;\n margin-bottom: 8px;\n }\n\n p {\n margin-top: 0;\n margin-bottom: 16px;\n }\n\n abbr[title],\n abbr[data-original-title] {\n text-decoration: underline;\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n -webkit-text-decoration-skip-ink: none;\n text-decoration-skip-ink: none;\n }\n\n address {\n margin-bottom: 16px;\n font-style: normal;\n line-height: inherit;\n }\n\n ol,\n ul,\n dl {\n margin-top: 0;\n margin-bottom: 16px;\n }\n\n ol ol,\n ul ul,\n ol ul,\n ul ol {\n margin-bottom: 0;\n }\n\n dt {\n font-weight: 700;\n }\n\n dd {\n margin-bottom: 8px;\n margin-left: 0;\n }\n\n blockquote {\n margin: 0 0 16px;\n }\n\n b,\n strong {\n font-weight: bolder;\n }\n\n small {\n font-size: 80%;\n }\n\n sub,\n sup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n }\n\n sub {\n bottom: -0.25em;\n }\n\n sup {\n top: -0.5em;\n }\n\n a {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n }\n\n a:hover {\n color: #0056b3;\n text-decoration: underline;\n }\n\n a:not([href]) {\n color: inherit;\n text-decoration: none;\n }\n\n a:not([href]):hover {\n color: inherit;\n text-decoration: none;\n }\n\n pre,\n code,\n kbd,\n samp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas,\n 'Liberation Mono', 'Courier New', monospace;\n font-size: 1em;\n }\n\n pre {\n margin-top: 0;\n margin-bottom: 16px;\n overflow: auto;\n }\n\n figure {\n margin: 0 0 16px;\n }\n\n img {\n vertical-align: middle;\n border-style: none;\n }\n\n svg {\n overflow: hidden;\n vertical-align: middle;\n }\n\n table {\n border-collapse: collapse;\n }\n\n caption {\n padding-top: 12px;\n padding-bottom: 12px;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n }\n\n th {\n text-align: inherit;\n }\n\n label {\n display: inline-block;\n margin-bottom: 8px;\n }\n\n button {\n border-radius: 0;\n }\n\n button:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n }\n\n input,\n button,\n select,\n optgroup,\n textarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n }\n\n button,\n input {\n overflow: visible;\n }\n\n button,\n select {\n text-transform: none;\n }\n\n select {\n word-wrap: normal;\n }\n\n button,\n [type='button'],\n [type='reset'],\n [type='submit'] {\n -webkit-appearance: button;\n }\n\n button:not(:disabled),\n [type='button']:not(:disabled),\n [type='reset']:not(:disabled),\n [type='submit']:not(:disabled) {\n cursor: pointer;\n }\n\n button::-moz-focus-inner,\n [type='button']::-moz-focus-inner,\n [type='reset']::-moz-focus-inner,\n [type='submit']::-moz-focus-inner {\n padding: 0;\n border-style: none;\n }\n\n input[type='radio'],\n input[type='checkbox'] {\n box-sizing: border-box;\n padding: 0;\n }\n\n input[type='date'],\n input[type='time'],\n input[type='datetime-local'],\n input[type='month'] {\n -webkit-appearance: listbox;\n }\n\n textarea {\n overflow: auto;\n resize: vertical;\n }\n\n fieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n }\n\n legend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: 8px;\n font-size: 24px;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n }\n\n progress {\n vertical-align: baseline;\n }\n\n [type='number']::-webkit-inner-spin-button,\n [type='number']::-webkit-outer-spin-button {\n height: auto;\n }\n\n [type='search'] {\n outline-offset: -2px;\n -webkit-appearance: none;\n }\n\n [type='search']::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n\n ::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n }\n\n output {\n display: inline-block;\n }\n\n summary {\n display: list-item;\n cursor: pointer;\n }\n\n template {\n display: none;\n }\n\n [hidden] {\n display: none !important;\n }\n "],["STYLE",{},"\n :host {\n --size-gap-half: 4px;\n --size-gap: 8px;\n --size-gap-double: 16px;\n --size-gap-triple: 24px;\n --size-gap-quad: 32px;\n\n --size-font-small: 14px;\n --size-font: 16px;\n --size-font-big: 20px;\n --size-font-bigger: 24px;\n\n --color-background: white;\n --color-font: #757575;\n --color-backdrop: rgba(17, 17, 17, 0.2);\n\n --color-title-color: #1f1f1f;\n --color-stack-h6: #222;\n --color-stack-headline: #666;\n --color-stack-subline: #999;\n --color-stack-notes: #777;\n\n --color-accents-1: #808080;\n --color-accents-2: #222222;\n --color-accents-3: #404040;\n\n --color-text-color-red-1: #ff5555;\n --color-text-background-red-1: #fff9f9;\n\n --font-stack-monospace: 'SFMono-Regular', Consolas, 'Liberation Mono',\n Menlo, Courier, monospace;\n --font-stack-sans: -apple-system, 'Source Sans Pro', sans-serif;\n\n --color-ansi-selection: rgba(95, 126, 151, 0.48);\n --color-ansi-bg: #111111;\n --color-ansi-fg: #cccccc;\n\n --color-ansi-white: #777777;\n --color-ansi-black: #141414;\n --color-ansi-blue: #00aaff;\n --color-ansi-cyan: #88ddff;\n --color-ansi-green: #98ec65;\n --color-ansi-magenta: #aa88ff;\n --color-ansi-red: #ff5555;\n --color-ansi-yellow: #ffcc33;\n --color-ansi-bright-white: #ffffff;\n --color-ansi-bright-black: #777777;\n --color-ansi-bright-blue: #33bbff;\n --color-ansi-bright-cyan: #bbecff;\n --color-ansi-bright-green: #b6f292;\n --color-ansi-bright-magenta: #cebbff;\n --color-ansi-bright-red: #ff8888;\n --color-ansi-bright-yellow: #ffd966;\n }\n\n @media (prefers-color-scheme: dark) {\n :host {\n --color-background: rgb(28, 28, 30);\n --color-font: white;\n --color-backdrop: rgb(44, 44, 46);\n\n --color-title-color: #fafafa;\n --color-stack-h6: rgb(200, 200, 204);\n --color-stack-headline: rgb(99, 99, 102);\n --color-stack-notes: #a9a9a9;\n --color-stack-subline: rgb(121, 121, 121);\n\n --color-accents-3: rgb(118, 118, 118);\n\n --color-text-background-red-1: #2a1e1e;\n }\n }\n\n .mono {\n font-family: var(--font-stack-monospace);\n }\n\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n margin-bottom: var(--size-gap);\n font-weight: 500;\n line-height: 1.5;\n }\n "],["STYLE",{},"\n \n [data-nextjs-dialog-overlay] {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n overflow: auto;\n z-index: 9000;\n\n display: flex;\n align-content: center;\n align-items: center;\n flex-direction: column;\n padding: 10vh 15px 0;\n }\n\n @media (max-height: 812px) {\n [data-nextjs-dialog-overlay] {\n padding: 15px 15px 0;\n }\n }\n\n [data-nextjs-dialog-backdrop] {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: var(--color-backdrop);\n pointer-events: all;\n z-index: -1;\n }\n\n [data-nextjs-dialog-backdrop-fixed] {\n cursor: not-allowed;\n -webkit-backdrop-filter: blur(8px);\n backdrop-filter: blur(8px);\n }\n\n \n [data-nextjs-toast] {\n position: fixed;\n bottom: var(--size-gap-double);\n left: var(--size-gap-double);\n max-width: 420px;\n z-index: 9000;\n }\n\n @media (max-width: 440px) {\n [data-nextjs-toast] {\n max-width: 90vw;\n left: 5vw;\n }\n }\n\n [data-nextjs-toast-wrapper] {\n padding: 16px;\n border-radius: var(--size-gap-half);\n font-weight: 500;\n color: var(--color-ansi-bright-white);\n background-color: var(--color-ansi-red);\n box-shadow: 0px var(--size-gap-double) var(--size-gap-quad)\n rgba(0, 0, 0, 0.25);\n }\n\n \n [data-nextjs-dialog] {\n display: flex;\n flex-direction: column;\n width: 100%;\n margin-right: auto;\n margin-left: auto;\n outline: none;\n background: var(--color-background);\n border-radius: var(--size-gap);\n box-shadow: 0 var(--size-gap-half) var(--size-gap-double)\n rgba(0, 0, 0, 0.25);\n max-height: calc(100% - 56px);\n overflow-y: hidden;\n }\n\n @media (max-height: 812px) {\n [data-nextjs-dialog-overlay] {\n max-height: calc(100% - 15px);\n }\n }\n\n @media (min-width: 576px) {\n [data-nextjs-dialog] {\n max-width: 540px;\n box-shadow: 0 var(--size-gap) var(--size-gap-quad) rgba(0, 0, 0, 0.25);\n }\n }\n\n @media (min-width: 768px) {\n [data-nextjs-dialog] {\n max-width: 720px;\n }\n }\n\n @media (min-width: 992px) {\n [data-nextjs-dialog] {\n max-width: 960px;\n }\n }\n\n [data-nextjs-dialog-banner] {\n position: relative;\n }\n [data-nextjs-dialog-banner].banner-warning {\n border-color: var(--color-ansi-yellow);\n }\n [data-nextjs-dialog-banner].banner-error {\n border-color: var(--color-ansi-red);\n }\n\n [data-nextjs-dialog-banner]::after {\n z-index: 2;\n content: '';\n position: absolute;\n top: 0;\n right: 0;\n width: 100%;\n /* banner width: */\n border-top-width: var(--size-gap-half);\n border-bottom-width: 0;\n border-top-style: solid;\n border-bottom-style: solid;\n border-top-color: inherit;\n border-bottom-color: transparent;\n }\n\n [data-nextjs-dialog-content] {\n overflow-y: auto;\n border: none;\n margin: 0;\n /* calc(padding + banner width offset) */\n padding: calc(var(--size-gap-double) + var(--size-gap-half))\n var(--size-gap-double);\n height: 100%;\n display: flex;\n flex-direction: column;\n }\n [data-nextjs-dialog-content] > [data-nextjs-dialog-header] {\n flex-shrink: 0;\n margin-bottom: var(--size-gap-double);\n }\n [data-nextjs-dialog-content] > [data-nextjs-dialog-body] {\n position: relative;\n flex: 1 1 auto;\n }\n\n \n [data-nextjs-dialog-left-right] {\n display: flex;\n flex-direction: row;\n align-content: center;\n align-items: center;\n justify-content: space-between;\n }\n [data-nextjs-dialog-left-right] > nav {\n flex: 1;\n display: flex;\n align-items: center;\n margin-right: var(--size-gap);\n }\n [data-nextjs-dialog-left-right] > nav > button {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n\n width: calc(var(--size-gap-double) + var(--size-gap));\n height: calc(var(--size-gap-double) + var(--size-gap));\n font-size: 0;\n border: none;\n background-color: rgba(255, 85, 85, 0.1);\n color: var(--color-ansi-red);\n cursor: pointer;\n transition: background-color 0.25s ease;\n }\n [data-nextjs-dialog-left-right] > nav > button > svg {\n width: auto;\n height: calc(var(--size-gap) + var(--size-gap-half));\n }\n [data-nextjs-dialog-left-right] > nav > button:hover {\n background-color: rgba(255, 85, 85, 0.2);\n }\n [data-nextjs-dialog-left-right] > nav > button:disabled {\n background-color: rgba(255, 85, 85, 0.1);\n color: rgba(255, 85, 85, 0.4);\n cursor: not-allowed;\n }\n\n [data-nextjs-dialog-left-right] > nav > button:first-of-type {\n border-radius: var(--size-gap-half) 0 0 var(--size-gap-half);\n margin-right: 1px;\n }\n [data-nextjs-dialog-left-right] > nav > button:last-of-type {\n border-radius: 0 var(--size-gap-half) var(--size-gap-half) 0;\n }\n\n [data-nextjs-dialog-left-right] > button:last-of-type {\n border: 0;\n padding: 0;\n\n background-color: transparent;\n appearance: none;\n\n opacity: 0.4;\n transition: opacity 0.25s ease;\n\n color: var(--color-font);\n }\n [data-nextjs-dialog-left-right] > button:last-of-type:hover {\n opacity: 0.7;\n }\n\n \n [data-nextjs-codeframe] {\n overflow: auto;\n border-radius: var(--size-gap-half);\n background-color: var(--color-ansi-bg);\n color: var(--color-ansi-fg);\n }\n [data-nextjs-codeframe]::selection,\n [data-nextjs-codeframe] *::selection {\n background-color: var(--color-ansi-selection);\n }\n [data-nextjs-codeframe] * {\n color: inherit;\n background-color: transparent;\n font-family: var(--font-stack-monospace);\n }\n\n [data-nextjs-codeframe] > * {\n margin: 0;\n padding: calc(var(--size-gap) + var(--size-gap-half))\n calc(var(--size-gap-double) + var(--size-gap-half));\n }\n [data-nextjs-codeframe] > div {\n display: inline-block;\n width: auto;\n min-width: 100%;\n border-bottom: 1px solid var(--color-ansi-bright-black);\n }\n [data-nextjs-codeframe] > div > p {\n display: flex;\n align-items: center;\n justify-content: space-between;\n cursor: pointer;\n margin: 0;\n }\n [data-nextjs-codeframe] > div > p:hover {\n text-decoration: underline dotted;\n }\n [data-nextjs-codeframe] div > p > svg {\n width: auto;\n height: 1em;\n margin-left: 8px;\n }\n [data-nextjs-codeframe] div > pre {\n overflow: hidden;\n display: inline-block;\n }\n\n \n [data-nextjs-terminal] {\n border-radius: var(--size-gap-half);\n background-color: var(--color-ansi-bg);\n color: var(--color-ansi-fg);\n }\n [data-nextjs-terminal]::selection,\n [data-nextjs-terminal] *::selection {\n background-color: var(--color-ansi-selection);\n }\n [data-nextjs-terminal] * {\n color: inherit;\n background-color: transparent;\n font-family: var(--font-stack-monospace);\n }\n [data-nextjs-terminal] > * {\n margin: 0;\n padding: calc(var(--size-gap) + var(--size-gap-half))\n calc(var(--size-gap-double) + var(--size-gap-half));\n }\n\n [data-nextjs-terminal] pre {\n white-space: pre-wrap;\n word-break: break-word;\n }\n\n [data-with-open-in-editor-link] svg {\n width: auto;\n height: var(--size-font-small);\n margin-left: var(--size-gap);\n }\n [data-with-open-in-editor-link] {\n cursor: pointer;\n }\n [data-with-open-in-editor-link]:hover {\n text-decoration: underline dotted;\n }\n [data-with-open-in-editor-link-source-file] {\n border-bottom: 1px solid var(--color-ansi-bright-black);\n display: flex;\n align-items: center;\n justify-content: space-between;\n }\n [data-with-open-in-editor-link-import-trace] {\n margin-left: var(--size-gap-double);\n }\n [data-nextjs-terminal] a {\n color: inherit;\n }\n\n \n .nextjs-container-errors-header > h1 {\n font-size: var(--size-font-big);\n line-height: var(--size-font-bigger);\n font-weight: bold;\n margin: var(--size-gap-double) 0;\n }\n .nextjs-container-errors-header p {\n font-size: var(--size-font-small);\n line-height: var(--size-font-big);\n white-space: pre-wrap;\n }\n .nextjs-container-errors-body footer {\n margin-top: var(--size-gap);\n }\n .nextjs-container-errors-body footer p {\n margin: 0;\n }\n\n .nextjs-container-errors-body small {\n color: var(--color-font);\n }\n\n \n .nextjs-container-errors-header > h1 {\n font-size: var(--size-font-big);\n line-height: var(--size-font-bigger);\n font-weight: bold;\n margin: calc(var(--size-gap-double) * 1.5) 0;\n color: var(--color-title-h1);\n }\n .nextjs-container-errors-header small {\n font-size: var(--size-font-small);\n color: var(--color-accents-1);\n margin-left: var(--size-gap-double);\n }\n .nextjs-container-errors-header small > span {\n font-family: var(--font-stack-monospace);\n }\n .nextjs-container-errors-header p {\n font-size: var(--size-font-small);\n line-height: var(--size-font-big);\n white-space: pre-wrap;\n }\n .nextjs__container_errors_desc {\n font-family: var(--font-stack-monospace);\n padding: var(--size-gap) var(--size-gap-double);\n border-left: 2px solid var(--color-text-color-red-1);\n margin-top: var(--size-gap);\n font-weight: bold;\n color: var(--color-text-color-red-1);\n background-color: var(--color-text-background-red-1);\n }\n p.nextjs__container_errors__notes {\n margin: var(--size-gap-double) auto;\n color: var(--color-stack-notes);\n font-weight: 600;\n font-size: 15px;\n }\n .nextjs-container-errors-header > div > small {\n margin: 0;\n margin-top: var(--size-gap-half);\n }\n .nextjs-container-errors-header > p > a {\n color: inherit;\n font-weight: bold;\n }\n .nextjs-container-errors-body > h2:not(:first-child) {\n margin-top: calc(var(--size-gap-double) + var(--size-gap));\n }\n .nextjs-container-errors-body > h2 {\n color: var(--color-title-color);\n margin-bottom: var(--size-gap);\n font-size: var(--size-font-big);\n }\n .nextjs__container_errors__component-stack {\n padding: 12px 32px;\n color: var(--color-ansi-fg);\n background: var(--color-ansi-bg);\n }\n .nextjs-toast-errors-parent {\n cursor: pointer;\n transition: transform 0.2s ease;\n }\n .nextjs-toast-errors-parent:hover {\n transform: scale(1.1);\n }\n .nextjs-toast-errors {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n }\n .nextjs-toast-errors > svg {\n margin-right: var(--size-gap);\n }\n .nextjs-toast-errors-hide-button {\n margin-left: var(--size-gap-triple);\n border: none;\n background: none;\n color: var(--color-ansi-bright-white);\n padding: 0;\n transition: opacity 0.25s ease;\n opacity: 0.7;\n }\n .nextjs-toast-errors-hide-button:hover {\n opacity: 1;\n }\n\n \n button[data-nextjs-data-runtime-error-collapsed-action] {\n background: none;\n border: none;\n padding: 0;\n font-size: var(--size-font-small);\n line-height: var(--size-font-bigger);\n color: var(--color-accents-3);\n }\n\n [data-nextjs-call-stack-frame]:not(:last-child),\n [data-nextjs-component-stack-frame]:not(:last-child) {\n margin-bottom: var(--size-gap-double);\n }\n\n [data-nextjs-call-stack-frame] > h3,\n [data-nextjs-component-stack-frame] > h3 {\n margin-top: 0;\n margin-bottom: var(--size-gap);\n font-family: var(--font-stack-monospace);\n font-size: var(--size-font);\n color: #222;\n }\n [data-nextjs-call-stack-frame] > h3[data-nextjs-frame-expanded='false'] {\n color: #666;\n }\n [data-nextjs-call-stack-frame] > div,\n [data-nextjs-component-stack-frame] > div {\n display: flex;\n align-items: center;\n padding-left: calc(var(--size-gap) + var(--size-gap-half));\n font-size: var(--size-font-small);\n color: #999;\n }\n [data-nextjs-call-stack-frame] > div > svg,\n [data-nextjs-component-stack-frame] > [role='link'] > svg {\n width: auto;\n height: var(--size-font-small);\n margin-left: var(--size-gap);\n flex-shrink: 0;\n\n display: none;\n }\n\n [data-nextjs-call-stack-frame] > div[data-has-source],\n [data-nextjs-component-stack-frame] > [role='link'] {\n cursor: pointer;\n }\n [data-nextjs-call-stack-frame] > div[data-has-source]:hover,\n [data-nextjs-component-stack-frame] > [role='link']:hover {\n text-decoration: underline dotted;\n }\n [data-nextjs-call-stack-frame] > div[data-has-source] > svg,\n [data-nextjs-component-stack-frame] > [role='link'] > svg {\n display: unset;\n }\n\n [data-nextjs-call-stack-framework-icon] {\n margin-right: var(--size-gap);\n }\n [data-nextjs-call-stack-framework-icon='next'] > mask {\n mask-type: alpha;\n }\n [data-nextjs-call-stack-framework-icon='react'] {\n color: rgb(20, 158, 202);\n }\n [data-nextjs-collapsed-call-stack-details][open]\n [data-nextjs-call-stack-chevron-icon] {\n transform: rotate(90deg);\n }\n [data-nextjs-collapsed-call-stack-details] summary {\n display: flex;\n align-items: center;\n margin-bottom: var(--size-gap);\n list-style: none;\n }\n [data-nextjs-collapsed-call-stack-details] summary::-webkit-details-marker {\n display: none;\n }\n\n [data-nextjs-collapsed-call-stack-details] h3 {\n color: #666;\n }\n [data-nextjs-collapsed-call-stack-details] [data-nextjs-call-stack-frame] {\n margin-bottom: var(--size-gap-double);\n }\n\n [data-nextjs-container-errors-pseudo-html] {\n position: relative;\n }\n [data-nextjs-container-errors-pseudo-html-collapse] {\n position: absolute;\n left: 10px;\n top: 10px;\n color: inherit;\n background: none;\n border: none;\n padding: 0;\n }\n [data-nextjs-container-errors-pseudo-html--diff-add] {\n color: var(--color-ansi-green);\n }\n [data-nextjs-container-errors-pseudo-html--diff-remove] {\n color: var(--color-ansi-red);\n }\n [data-nextjs-container-errors-pseudo-html--tag-error] {\n color: var(--color-ansi-red);\n font-weight: bold;\n }\n /* hide but text are still accessible in DOM */\n [data-nextjs-container-errors-pseudo-html--hint] {\n display: inline-block;\n font-size: 0;\n }\n [data-nextjs-container-errors-pseudo-html--tag-adjacent='false'] {\n color: var(--color-accents-1);\n }\n\n \n .nextjs-container-build-error-version-status {\n flex: 1;\n text-align: right;\n }\n .nextjs-container-build-error-version-status small {\n margin-left: var(--size-gap);\n font-size: var(--size-font-small);\n }\n .nextjs-container-build-error-version-status a {\n font-size: var(--size-font-small);\n }\n .nextjs-container-build-error-version-status span {\n display: inline-block;\n width: 10px;\n height: 10px;\n border-radius: 5px;\n background: var(--color-ansi-bright-black);\n }\n .nextjs-container-build-error-version-status span.fresh {\n background: var(--color-ansi-green);\n }\n .nextjs-container-build-error-version-status span.stale {\n background: var(--color-ansi-yellow);\n }\n .nextjs-container-build-error-version-status span.outdated {\n background: var(--color-ansi-red);\n }\n\n "],["DIV",{"data-nextjs-toast":"true","class":"nextjs-toast-errors-parent"},["DIV",{"data-nextjs-toast-wrapper":"true"},["DIV",{"class":"nextjs-toast-errors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},["circle",{"cx":"12","cy":"12","r":"10"}],["line",{"x1":"12","y1":"8","x2":"12","y2":"12"}],["line",{"x1":"12","y1":"16","x2":"12.01","y2":"16"}]],["SPAN",{},"1"," error"],["BUTTON",{"data-nextjs-toast-errors-hide-button":"true","class":"nextjs-toast-errors-hide-button","type":"button","aria-label":"Hide Errors"},["svg",{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg"},["path",{"d":"M18 6L6 18","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}],["path",{"d":"M6 6L18 18","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}]]]]]]]]]],"viewport":{"width":1280,"height":720},"timestamp":28342.064,"wallTime":1784630688757,"collectionTime":1.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688773.jpeg","width":1280,"height":720,"timestamp":28346.505,"frameSwapWallTime":1784630688766.25} +{"type":"before","callId":"call@476","startTime":28350.315,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@67"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688778.jpeg","width":1280,"height":720,"timestamp":28351.377,"frameSwapWallTime":1784630688774.768} +{"type":"log","callId":"call@476","time":28351.644,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@476","time":28351.65,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@476","time":28351.651,"message":" accept: */*"} +{"type":"log","callId":"call@476","time":28351.652,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@476","time":28351.653,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"log","callId":"call@476","time":28364.652,"message":"← 200 OK"} +{"type":"log","callId":"call@476","time":28364.66,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@476","time":28364.663,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@476","time":28364.664,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@476","time":28364.665,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@476","time":28364.666,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@476","time":28364.667,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@476","time":28364.668,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@476","time":28364.669,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@476","time":28364.67,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@476","time":28364.671,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@476","time":28364.675,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@476","time":28364.676,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@476","time":28364.677,"message":" vary: Origin"} +{"type":"log","callId":"call@476","time":28364.678,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@476","time":28364.68,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@476","time":28364.681,"message":" content-length: 1234"} +{"type":"log","callId":"call@476","time":28364.682,"message":" etag: W/\"4d2-E2Y3dKj0wkMfopzM5ZTiONEi+yI\""} +{"type":"log","callId":"call@476","time":28364.683,"message":" date: Tue, 21 Jul 2026 10:44:48 GMT"} +{"type":"log","callId":"call@476","time":28364.684,"message":" connection: keep-alive"} +{"type":"log","callId":"call@476","time":28364.685,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@476","endTime":28364.797,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-E2Y3dKj0wkMfopzM5ZTiONEi+yI\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:48 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"2bcbf8ab1c21eb2f3e479a654f080541"}}} +{"type":"before","callId":"call@479","startTime":28365.855,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@68","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@479"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688793.jpeg","width":1280,"height":720,"timestamp":28366.97,"frameSwapWallTime":1784630688791} +{"type":"frame-snapshot","snapshot":{"callId":"call@479","snapshotName":"before@call@479","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[1,2]],["BODY",{"class":"font-sans antialiased"},[[1,12]],[[1,158]],[[1,161]],["NEXTJS-PORTAL",{},["template",{"__playwright_shadow_root_":"open"},[[1,163]],[[1,165]],[[1,167]],["DIV",{"data-nextjs-toast":"true","class":"nextjs-toast-errors-parent"},["DIV",{"data-nextjs-toast-wrapper":"true"},["DIV",{"class":"nextjs-toast-errors"},[[1,171]],["SPAN",{},"2",[[1,173]],"s"],[[1,178]]]]]]]]],"viewport":{"width":1280,"height":720},"timestamp":28367.085,"wallTime":1784630688793,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688802.jpeg","width":1280,"height":720,"timestamp":28375.623,"frameSwapWallTime":1784630688799.479} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688809.jpeg","width":1280,"height":720,"timestamp":28382.785,"frameSwapWallTime":1784630688806.963} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688826.jpeg","width":1280,"height":720,"timestamp":28400.025,"frameSwapWallTime":1784630688824.0781} +{"type":"console","messageType":"warning","text":"WebSocket connection to 'ws://localhost:4000/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.","args":[],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/engine.io-client@6.6.5/node_modules/engine.io-client/build/esm/transports/websocket.js","lineNumber":89,"columnNumber":0},"time":28423.356,"pageId":"page@e600c850f86c7fc16a2602b9a1330d97"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688850.jpeg","width":1280,"height":720,"timestamp":28423.671,"frameSwapWallTime":1784630688845.399} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688850.jpeg","width":1280,"height":720,"timestamp":28423.87,"frameSwapWallTime":1784630688846.267} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688859.jpeg","width":1280,"height":720,"timestamp":28433.207,"frameSwapWallTime":1784630688857.2668} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688868.jpeg","width":1280,"height":720,"timestamp":28441.942,"frameSwapWallTime":1784630688865.867} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688876.jpeg","width":1280,"height":720,"timestamp":28450.015,"frameSwapWallTime":1784630688874.126} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688885.jpeg","width":1280,"height":720,"timestamp":28458.4,"frameSwapWallTime":1784630688882.442} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688901.jpeg","width":1280,"height":720,"timestamp":28475.164,"frameSwapWallTime":1784630688899.256} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688910.jpeg","width":1280,"height":720,"timestamp":28483.411,"frameSwapWallTime":1784630688907.5999} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688918.jpeg","width":1280,"height":720,"timestamp":28491.583,"frameSwapWallTime":1784630688915.753} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688926.jpeg","width":1280,"height":720,"timestamp":28499.868,"frameSwapWallTime":1784630688924.0798} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688945.jpeg","width":1280,"height":720,"timestamp":28519.25,"frameSwapWallTime":1784630688941.7} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688957.jpeg","width":1280,"height":720,"timestamp":28531.192,"frameSwapWallTime":1784630688949.72} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688960.jpeg","width":1280,"height":720,"timestamp":28534,"frameSwapWallTime":1784630688958.066} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688976.jpeg","width":1280,"height":720,"timestamp":28550.259,"frameSwapWallTime":1784630688974.344} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688984.jpeg","width":1280,"height":720,"timestamp":28558.237,"frameSwapWallTime":1784630688982.439} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630688993.jpeg","width":1280,"height":720,"timestamp":28566.697,"frameSwapWallTime":1784630688990.8098} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689010.jpeg","width":1280,"height":720,"timestamp":28583.412,"frameSwapWallTime":1784630689007.588} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689018.jpeg","width":1280,"height":720,"timestamp":28592.027,"frameSwapWallTime":1784630689016.0671} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689026.jpeg","width":1280,"height":720,"timestamp":28599.937,"frameSwapWallTime":1784630689024.1548} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689035.jpeg","width":1280,"height":720,"timestamp":28608.658,"frameSwapWallTime":1784630689032.763} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689051.jpeg","width":1280,"height":720,"timestamp":28625.097,"frameSwapWallTime":1784630689049.207} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689060.jpeg","width":1280,"height":720,"timestamp":28633.44,"frameSwapWallTime":1784630689057.498} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689068.jpeg","width":1280,"height":720,"timestamp":28641.757,"frameSwapWallTime":1784630689065.823} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689076.jpeg","width":1280,"height":720,"timestamp":28650.201,"frameSwapWallTime":1784630689074.316} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689093.jpeg","width":1280,"height":720,"timestamp":28666.672,"frameSwapWallTime":1784630689090.7258} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689101.jpeg","width":1280,"height":720,"timestamp":28675.236,"frameSwapWallTime":1784630689099.349} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689110.jpeg","width":1280,"height":720,"timestamp":28683.541,"frameSwapWallTime":1784630689107.648} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689127.jpeg","width":1280,"height":720,"timestamp":28700.665,"frameSwapWallTime":1784630689124.6729} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689135.jpeg","width":1280,"height":720,"timestamp":28708.512,"frameSwapWallTime":1784630689132.5122} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689143.jpeg","width":1280,"height":720,"timestamp":28716.677,"frameSwapWallTime":1784630689140.784} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689160.jpeg","width":1280,"height":720,"timestamp":28733.512,"frameSwapWallTime":1784630689157.6309} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689168.jpeg","width":1280,"height":720,"timestamp":28741.894,"frameSwapWallTime":1784630689165.92} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689177.jpeg","width":1280,"height":720,"timestamp":28750.362,"frameSwapWallTime":1784630689174.418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689185.jpeg","width":1280,"height":720,"timestamp":28758.491,"frameSwapWallTime":1784630689182.547} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689201.jpeg","width":1280,"height":720,"timestamp":28775.086,"frameSwapWallTime":1784630689199.179} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689210.jpeg","width":1280,"height":720,"timestamp":28783.35,"frameSwapWallTime":1784630689207.539} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689218.jpeg","width":1280,"height":720,"timestamp":28791.918,"frameSwapWallTime":1784630689215.907} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689235.jpeg","width":1280,"height":720,"timestamp":28808.723,"frameSwapWallTime":1784630689232.806} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689243.jpeg","width":1280,"height":720,"timestamp":28817.128,"frameSwapWallTime":1784630689241.105} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689252.jpeg","width":1280,"height":720,"timestamp":28825.564,"frameSwapWallTime":1784630689249.619} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689268.jpeg","width":1280,"height":720,"timestamp":28842.304,"frameSwapWallTime":1784630689266.36} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689276.jpeg","width":1280,"height":720,"timestamp":28850.127,"frameSwapWallTime":1784630689274.314} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689284.jpeg","width":1280,"height":720,"timestamp":28858.304,"frameSwapWallTime":1784630689282.438} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689293.jpeg","width":1280,"height":720,"timestamp":28866.609,"frameSwapWallTime":1784630689290.676} +{"type":"after","callId":"call@479","endTime":28866.983,"afterSnapshot":"after@call@479"} +{"type":"frame-snapshot","snapshot":{"callId":"call@479","snapshotName":"after@call@479","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[2,2]],["BODY",{"class":"font-sans antialiased"},[[2,12]],[[2,158]],[[2,161]],["NEXTJS-PORTAL",{},["template",{"__playwright_shadow_root_":"open"},[[2,163]],[[2,165]],[[2,167]],["DIV",{"data-nextjs-toast":"true","class":"nextjs-toast-errors-parent"},["DIV",{"data-nextjs-toast-wrapper":"true"},["DIV",{"class":"nextjs-toast-errors"},[[2,171]],["SPAN",{},"3",[[2,173]],[[1,1]]],[[2,178]]]]]]],["DIV",{"class":"fixed bottom-6 right-6 z-40 flex flex-col items-end gap-3"},["BUTTON",{"aria-label":"Open support chat","class":"group relative flex items-center gap-2.5 rounded-full p-2 pr-2 text-white transition-transform duration-150 hover:-translate-y-0.5 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-[3px] focus-visible:outline-primary active:translate-y-0 motion-reduce:transition-none motion-reduce:hover:translate-y-0 sm:pr-5","style":"background: linear-gradient(135deg, rgb(20, 113, 76), rgb(30, 140, 96)); box-shadow: rgba(20, 113, 76, 0.4) 0px 10px 28px;"},["SPAN",{"class":"pointer-events-none absolute -inset-1 animate-pulse rounded-full ring-2 ring-primary/50 motion-reduce:animate-none"}],["SPAN",{"class":"relative grid h-[42px] w-[42px] shrink-0 place-items-center rounded-full bg-white/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"22","height":"22","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-headset"},["path",{"d":"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{"d":"M21 16v2a4 4 0 0 1-4 4h-5"}]]],["SPAN",{"class":"relative hidden text-left leading-tight sm:block"},["SPAN",{"class":"block whitespace-nowrap text-sm font-semibold"},"👋 Need help?"],["SPAN",{"class":"block whitespace-nowrap text-[11px] opacity-85"},"Chat with our team"]]]]]],"viewport":{"width":1280,"height":720},"timestamp":28868.094,"wallTime":1784630689294,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@481","startTime":28868.856,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@69"} +{"type":"log","callId":"call@481","time":28869.373,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@481","time":28869.382,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@481","time":28869.384,"message":" accept: */*"} +{"type":"log","callId":"call@481","time":28869.385,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@481","time":28869.386,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"log","callId":"call@481","time":28881.625,"message":"← 200 OK"} +{"type":"log","callId":"call@481","time":28881.629,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@481","time":28881.631,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@481","time":28881.632,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@481","time":28881.633,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@481","time":28881.634,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@481","time":28881.635,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@481","time":28881.636,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@481","time":28881.637,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@481","time":28881.638,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@481","time":28881.639,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@481","time":28881.64,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@481","time":28881.641,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@481","time":28881.642,"message":" vary: Origin"} +{"type":"log","callId":"call@481","time":28881.643,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@481","time":28881.644,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@481","time":28881.645,"message":" content-length: 1234"} +{"type":"log","callId":"call@481","time":28881.646,"message":" etag: W/\"4d2-CuBaKLDQVGYFR+dNwVVtxhKJQH0\""} +{"type":"log","callId":"call@481","time":28881.647,"message":" date: Tue, 21 Jul 2026 10:44:49 GMT"} +{"type":"log","callId":"call@481","time":28881.648,"message":" connection: keep-alive"} +{"type":"log","callId":"call@481","time":28881.649,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@481","endTime":28881.718,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-CuBaKLDQVGYFR+dNwVVtxhKJQH0\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:49 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"5beafc61e7485d4bec228f73ebf23cfc"}}} +{"type":"before","callId":"call@484","startTime":28882.678,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@70","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@484"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689310.jpeg","width":1280,"height":720,"timestamp":28883.816,"frameSwapWallTime":1784630689307.833} +{"type":"frame-snapshot","snapshot":{"callId":"call@484","snapshotName":"before@call@484","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[1,20]],"viewport":{"width":1280,"height":720},"timestamp":28883.946,"wallTime":1784630689310,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689318.jpeg","width":1280,"height":720,"timestamp":28892.015,"frameSwapWallTime":1784630689316.06} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689327.jpeg","width":1280,"height":720,"timestamp":28900.354,"frameSwapWallTime":1784630689324.385} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689343.jpeg","width":1280,"height":720,"timestamp":28916.813,"frameSwapWallTime":1784630689340.831} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689351.jpeg","width":1280,"height":720,"timestamp":28924.65,"frameSwapWallTime":1784630689348.803} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689359.jpeg","width":1280,"height":720,"timestamp":28933.308,"frameSwapWallTime":1784630689357.516} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689368.jpeg","width":1280,"height":720,"timestamp":28941.668,"frameSwapWallTime":1784630689365.8381} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689384.jpeg","width":1280,"height":720,"timestamp":28958.121,"frameSwapWallTime":1784630689382.366} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689393.jpeg","width":1280,"height":720,"timestamp":28966.488,"frameSwapWallTime":1784630689390.636} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689401.jpeg","width":1280,"height":720,"timestamp":28975.045,"frameSwapWallTime":1784630689399.055} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689410.jpeg","width":1280,"height":720,"timestamp":28983.458,"frameSwapWallTime":1784630689407.544} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689426.jpeg","width":1280,"height":720,"timestamp":28999.97,"frameSwapWallTime":1784630689424.075} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689434.jpeg","width":1280,"height":720,"timestamp":29007.57,"frameSwapWallTime":1784630689431.621} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689443.jpeg","width":1280,"height":720,"timestamp":29016.668,"frameSwapWallTime":1784630689440.796} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689459.jpeg","width":1280,"height":720,"timestamp":29032.484,"frameSwapWallTime":1784630689456.6318} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689468.jpeg","width":1280,"height":720,"timestamp":29041.57,"frameSwapWallTime":1784630689465.7332} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689476.jpeg","width":1280,"height":720,"timestamp":29049.962,"frameSwapWallTime":1784630689474.078} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689485.jpeg","width":1280,"height":720,"timestamp":29058.434,"frameSwapWallTime":1784630689482.544} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689501.jpeg","width":1280,"height":720,"timestamp":29075.107,"frameSwapWallTime":1784630689499.187} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689510.jpeg","width":1280,"height":720,"timestamp":29083.388,"frameSwapWallTime":1784630689507.4749} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689518.jpeg","width":1280,"height":720,"timestamp":29091.506,"frameSwapWallTime":1784630689515.6929} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689526.jpeg","width":1280,"height":720,"timestamp":29099.795,"frameSwapWallTime":1784630689523.969} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689543.jpeg","width":1280,"height":720,"timestamp":29116.445,"frameSwapWallTime":1784630689540.632} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689551.jpeg","width":1280,"height":720,"timestamp":29124.479,"frameSwapWallTime":1784630689548.685} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689559.jpeg","width":1280,"height":720,"timestamp":29133.062,"frameSwapWallTime":1784630689557.239} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689576.jpeg","width":1280,"height":720,"timestamp":29149.913,"frameSwapWallTime":1784630689573.926} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689584.jpeg","width":1280,"height":720,"timestamp":29157.984,"frameSwapWallTime":1784630689581.9958} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689593.jpeg","width":1280,"height":720,"timestamp":29166.794,"frameSwapWallTime":1784630689590.887} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689609.jpeg","width":1280,"height":720,"timestamp":29183.126,"frameSwapWallTime":1784630689607.269} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689618.jpeg","width":1280,"height":720,"timestamp":29191.429,"frameSwapWallTime":1784630689615.536} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689626.jpeg","width":1280,"height":720,"timestamp":29199.707,"frameSwapWallTime":1784630689623.875} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689634.jpeg","width":1280,"height":720,"timestamp":29207.972,"frameSwapWallTime":1784630689632.15} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689651.jpeg","width":1280,"height":720,"timestamp":29224.618,"frameSwapWallTime":1784630689648.735} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689659.jpeg","width":1280,"height":720,"timestamp":29232.96,"frameSwapWallTime":1784630689657.116} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689668.jpeg","width":1280,"height":720,"timestamp":29241.583,"frameSwapWallTime":1784630689665.756} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689676.jpeg","width":1280,"height":720,"timestamp":29249.839,"frameSwapWallTime":1784630689673.9758} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689692.jpeg","width":1280,"height":720,"timestamp":29266.25,"frameSwapWallTime":1784630689690.362} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689701.jpeg","width":1280,"height":720,"timestamp":29274.774,"frameSwapWallTime":1784630689698.917} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689709.jpeg","width":1280,"height":720,"timestamp":29283.061,"frameSwapWallTime":1784630689707.197} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689718.jpeg","width":1280,"height":720,"timestamp":29291.371,"frameSwapWallTime":1784630689715.492} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689734.jpeg","width":1280,"height":720,"timestamp":29307.966,"frameSwapWallTime":1784630689732.1538} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689742.jpeg","width":1280,"height":720,"timestamp":29316.32,"frameSwapWallTime":1784630689740.481} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689751.jpeg","width":1280,"height":720,"timestamp":29324.786,"frameSwapWallTime":1784630689748.944} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689759.jpeg","width":1280,"height":720,"timestamp":29333.025,"frameSwapWallTime":1784630689757.161} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689776.jpeg","width":1280,"height":720,"timestamp":29349.35,"frameSwapWallTime":1784630689773.569} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689784.jpeg","width":1280,"height":720,"timestamp":29357.909,"frameSwapWallTime":1784630689782.144} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689792.jpeg","width":1280,"height":720,"timestamp":29366.086,"frameSwapWallTime":1784630689790.324} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689801.jpeg","width":1280,"height":720,"timestamp":29374.848,"frameSwapWallTime":1784630689799.0388} +{"type":"after","callId":"call@484","endTime":29385.38,"afterSnapshot":"after@call@484"} +{"type":"frame-snapshot","snapshot":{"callId":"call@484","snapshotName":"after@call@484","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[2,20]],"viewport":{"width":1280,"height":720},"timestamp":29386.271,"wallTime":1784630689812,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@486","startTime":29386.988,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@71"} +{"type":"log","callId":"call@486","time":29387.397,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@486","time":29387.402,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@486","time":29387.403,"message":" accept: */*"} +{"type":"log","callId":"call@486","time":29387.404,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@486","time":29387.405,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689818.jpeg","width":1280,"height":720,"timestamp":29391.498,"frameSwapWallTime":1784630689815.68} +{"type":"log","callId":"call@486","time":29399.01,"message":"← 200 OK"} +{"type":"log","callId":"call@486","time":29399.015,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@486","time":29399.017,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@486","time":29399.018,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@486","time":29399.019,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@486","time":29399.02,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@486","time":29399.021,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@486","time":29399.022,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@486","time":29399.022,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@486","time":29399.023,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@486","time":29399.024,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@486","time":29399.025,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@486","time":29399.026,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@486","time":29399.027,"message":" vary: Origin"} +{"type":"log","callId":"call@486","time":29399.028,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@486","time":29399.029,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@486","time":29399.03,"message":" content-length: 1234"} +{"type":"log","callId":"call@486","time":29399.031,"message":" etag: W/\"4d2-DGeoscL+zMgHR62Gd0FqjW9QjxU\""} +{"type":"log","callId":"call@486","time":29399.032,"message":" date: Tue, 21 Jul 2026 10:44:49 GMT"} +{"type":"log","callId":"call@486","time":29399.033,"message":" connection: keep-alive"} +{"type":"log","callId":"call@486","time":29399.034,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@486","endTime":29399.112,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-DGeoscL+zMgHR62Gd0FqjW9QjxU\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:49 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"26c462fb971f79d118f8d9eb25c92844"}}} +{"type":"before","callId":"call@489","startTime":29400.083,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@72","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@489"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689826.jpeg","width":1280,"height":720,"timestamp":29400.28,"frameSwapWallTime":1784630689824.055} +{"type":"frame-snapshot","snapshot":{"callId":"call@489","snapshotName":"before@call@489","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[3,20]],"viewport":{"width":1280,"height":720},"timestamp":29400.793,"wallTime":1784630689827,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689834.jpeg","width":1280,"height":720,"timestamp":29408.105,"frameSwapWallTime":1784630689832.239} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689842.jpeg","width":1280,"height":720,"timestamp":29416.3,"frameSwapWallTime":1784630689840.425} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689859.jpeg","width":1280,"height":720,"timestamp":29433.047,"frameSwapWallTime":1784630689857.2122} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689867.jpeg","width":1280,"height":720,"timestamp":29441.123,"frameSwapWallTime":1784630689865.3418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689876.jpeg","width":1280,"height":720,"timestamp":29449.411,"frameSwapWallTime":1784630689873.611} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689892.jpeg","width":1280,"height":720,"timestamp":29466.069,"frameSwapWallTime":1784630689890.2212} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689901.jpeg","width":1280,"height":720,"timestamp":29474.748,"frameSwapWallTime":1784630689898.787} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689909.jpeg","width":1280,"height":720,"timestamp":29483.009,"frameSwapWallTime":1784630689907.158} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689917.jpeg","width":1280,"height":720,"timestamp":29491.023,"frameSwapWallTime":1784630689915.1868} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689934.jpeg","width":1280,"height":720,"timestamp":29507.746,"frameSwapWallTime":1784630689931.961} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689942.jpeg","width":1280,"height":720,"timestamp":29515.826,"frameSwapWallTime":1784630689940.096} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689951.jpeg","width":1280,"height":720,"timestamp":29524.446,"frameSwapWallTime":1784630689948.699} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689967.jpeg","width":1280,"height":720,"timestamp":29541.218,"frameSwapWallTime":1784630689965.4} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689976.jpeg","width":1280,"height":720,"timestamp":29549.508,"frameSwapWallTime":1784630689973.751} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689984.jpeg","width":1280,"height":720,"timestamp":29557.686,"frameSwapWallTime":1784630689981.981} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630689993.jpeg","width":1280,"height":720,"timestamp":29566.387,"frameSwapWallTime":1784630689990.428} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690009.jpeg","width":1280,"height":720,"timestamp":29582.983,"frameSwapWallTime":1784630690007.122} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690017.jpeg","width":1280,"height":720,"timestamp":29591.285,"frameSwapWallTime":1784630690015.46} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690026.jpeg","width":1280,"height":720,"timestamp":29599.841,"frameSwapWallTime":1784630690023.8408} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690043.jpeg","width":1280,"height":720,"timestamp":29616.425,"frameSwapWallTime":1784630690040.4949} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690051.jpeg","width":1280,"height":720,"timestamp":29624.627,"frameSwapWallTime":1784630690048.787} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690059.jpeg","width":1280,"height":720,"timestamp":29632.964,"frameSwapWallTime":1784630690057.183} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690075.jpeg","width":1280,"height":720,"timestamp":29649.27,"frameSwapWallTime":1784630690073.509} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690084.jpeg","width":1280,"height":720,"timestamp":29657.73,"frameSwapWallTime":1784630690081.933} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690092.jpeg","width":1280,"height":720,"timestamp":29666.13,"frameSwapWallTime":1784630690090.2869} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690109.jpeg","width":1280,"height":720,"timestamp":29682.717,"frameSwapWallTime":1784630690106.9282} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690117.jpeg","width":1280,"height":720,"timestamp":29691.077,"frameSwapWallTime":1784630690115.33} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690126.jpeg","width":1280,"height":720,"timestamp":29699.368,"frameSwapWallTime":1784630690123.5571} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690142.jpeg","width":1280,"height":720,"timestamp":29716.215,"frameSwapWallTime":1784630690140.271} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690151.jpeg","width":1280,"height":720,"timestamp":29724.717,"frameSwapWallTime":1784630690148.805} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690159.jpeg","width":1280,"height":720,"timestamp":29732.811,"frameSwapWallTime":1784630690156.993} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690167.jpeg","width":1280,"height":720,"timestamp":29741.2,"frameSwapWallTime":1784630690165.3909} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690184.jpeg","width":1280,"height":720,"timestamp":29757.953,"frameSwapWallTime":1784630690182.136} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690192.jpeg","width":1280,"height":720,"timestamp":29766.18,"frameSwapWallTime":1784630690190.3638} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690201.jpeg","width":1280,"height":720,"timestamp":29774.572,"frameSwapWallTime":1784630690198.783} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690217.jpeg","width":1280,"height":720,"timestamp":29791.245,"frameSwapWallTime":1784630690215.3088} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690226.jpeg","width":1280,"height":720,"timestamp":29800.319,"frameSwapWallTime":1784630690224.3208} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690235.jpeg","width":1280,"height":720,"timestamp":29808.377,"frameSwapWallTime":1784630690232.513} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690251.jpeg","width":1280,"height":720,"timestamp":29824.784,"frameSwapWallTime":1784630690248.898} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690259.jpeg","width":1280,"height":720,"timestamp":29833.104,"frameSwapWallTime":1784630690257.182} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690267.jpeg","width":1280,"height":720,"timestamp":29840.551,"frameSwapWallTime":1784630690264.676} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690285.jpeg","width":1280,"height":720,"timestamp":29858.92,"frameSwapWallTime":1784630690282.189} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690293.jpeg","width":1280,"height":720,"timestamp":29866.544,"frameSwapWallTime":1784630690290.715} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690301.jpeg","width":1280,"height":720,"timestamp":29875.007,"frameSwapWallTime":1784630690299.0579} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690318.jpeg","width":1280,"height":720,"timestamp":29891.737,"frameSwapWallTime":1784630690315.806} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690326.jpeg","width":1280,"height":720,"timestamp":29899.975,"frameSwapWallTime":1784630690324.018} +{"type":"after","callId":"call@489","endTime":29900.114,"afterSnapshot":"after@call@489"} +{"type":"frame-snapshot","snapshot":{"callId":"call@489","snapshotName":"after@call@489","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[4,20]],"viewport":{"width":1280,"height":720},"timestamp":29901.059,"wallTime":1784630690327,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@491","startTime":29901.88,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@73"} +{"type":"log","callId":"call@491","time":29902.297,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@491","time":29902.304,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@491","time":29902.305,"message":" accept: */*"} +{"type":"log","callId":"call@491","time":29902.307,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@491","time":29902.308,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690335.jpeg","width":1280,"height":720,"timestamp":29908.432,"frameSwapWallTime":1784630690332.508} +{"type":"log","callId":"call@491","time":29913.277,"message":"← 200 OK"} +{"type":"log","callId":"call@491","time":29913.282,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@491","time":29913.284,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@491","time":29913.285,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@491","time":29913.285,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@491","time":29913.286,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@491","time":29913.287,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@491","time":29913.288,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@491","time":29913.289,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@491","time":29913.29,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@491","time":29913.291,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@491","time":29913.292,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@491","time":29913.293,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@491","time":29913.294,"message":" vary: Origin"} +{"type":"log","callId":"call@491","time":29913.295,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@491","time":29913.296,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@491","time":29913.297,"message":" content-length: 1234"} +{"type":"log","callId":"call@491","time":29913.298,"message":" etag: W/\"4d2-Vi6wt/h00gKLotL7c3QvfjCRoFw\""} +{"type":"log","callId":"call@491","time":29913.299,"message":" date: Tue, 21 Jul 2026 10:44:50 GMT"} +{"type":"log","callId":"call@491","time":29913.3,"message":" connection: keep-alive"} +{"type":"log","callId":"call@491","time":29913.302,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@491","endTime":29913.364,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-Vi6wt/h00gKLotL7c3QvfjCRoFw\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:50 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"c506e4e886303757ea7221a20af9fffb"}}} +{"type":"before","callId":"call@494","startTime":29914.34,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@74","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@494"} +{"type":"frame-snapshot","snapshot":{"callId":"call@494","snapshotName":"before@call@494","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[5,20]],"viewport":{"width":1280,"height":720},"timestamp":29915.122,"wallTime":1784630690341,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690343.jpeg","width":1280,"height":720,"timestamp":29916.655,"frameSwapWallTime":1784630690340.8} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690359.jpeg","width":1280,"height":720,"timestamp":29933.072,"frameSwapWallTime":1784630690357.0981} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690367.jpeg","width":1280,"height":720,"timestamp":29941.121,"frameSwapWallTime":1784630690365.209} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690376.jpeg","width":1280,"height":720,"timestamp":29949.695,"frameSwapWallTime":1784630690373.8489} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690392.jpeg","width":1280,"height":720,"timestamp":29966.159,"frameSwapWallTime":1784630690390.261} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690401.jpeg","width":1280,"height":720,"timestamp":29974.793,"frameSwapWallTime":1784630690398.9102} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690409.jpeg","width":1280,"height":720,"timestamp":29982.862,"frameSwapWallTime":1784630690407} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690417.jpeg","width":1280,"height":720,"timestamp":29991.309,"frameSwapWallTime":1784630690415.5159} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690434.jpeg","width":1280,"height":720,"timestamp":30008.093,"frameSwapWallTime":1784630690432.158} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690442.jpeg","width":1280,"height":720,"timestamp":30015.909,"frameSwapWallTime":1784630690440.154} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690451.jpeg","width":1280,"height":720,"timestamp":30024.447,"frameSwapWallTime":1784630690448.684} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690459.jpeg","width":1280,"height":720,"timestamp":30032.988,"frameSwapWallTime":1784630690457.043} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690476.jpeg","width":1280,"height":720,"timestamp":30049.757,"frameSwapWallTime":1784630690473.734} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690484.jpeg","width":1280,"height":720,"timestamp":30057.717,"frameSwapWallTime":1784630690481.904} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690492.jpeg","width":1280,"height":720,"timestamp":30066.313,"frameSwapWallTime":1784630690490.407} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690501.jpeg","width":1280,"height":720,"timestamp":30074.408,"frameSwapWallTime":1784630690498.596} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690517.jpeg","width":1280,"height":720,"timestamp":30090.532,"frameSwapWallTime":1784630690514.73} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690525.jpeg","width":1280,"height":720,"timestamp":30099.163,"frameSwapWallTime":1784630690523.3718} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690534.jpeg","width":1280,"height":720,"timestamp":30107.842,"frameSwapWallTime":1784630690532.083} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690543.jpeg","width":1280,"height":720,"timestamp":30116.329,"frameSwapWallTime":1784630690540.469} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690559.jpeg","width":1280,"height":720,"timestamp":30133.112,"frameSwapWallTime":1784630690557.222} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690568.jpeg","width":1280,"height":720,"timestamp":30141.691,"frameSwapWallTime":1784630690565.682} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690576.jpeg","width":1280,"height":720,"timestamp":30149.722,"frameSwapWallTime":1784630690573.832} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690593.jpeg","width":1280,"height":720,"timestamp":30166.752,"frameSwapWallTime":1784630690590.795} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690601.jpeg","width":1280,"height":720,"timestamp":30174.412,"frameSwapWallTime":1784630690598.444} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690609.jpeg","width":1280,"height":720,"timestamp":30182.639,"frameSwapWallTime":1784630690606.663} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690618.jpeg","width":1280,"height":720,"timestamp":30192.113,"frameSwapWallTime":1784630690616.056} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690634.jpeg","width":1280,"height":720,"timestamp":30208.088,"frameSwapWallTime":1784630690632.149} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690643.jpeg","width":1280,"height":720,"timestamp":30216.611,"frameSwapWallTime":1784630690640.657} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690657.jpeg","width":1280,"height":720,"timestamp":30231.137,"frameSwapWallTime":1784630690655.157} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690664.jpeg","width":1280,"height":720,"timestamp":30238.176,"frameSwapWallTime":1784630690662.2878} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690672.jpeg","width":1280,"height":720,"timestamp":30245.953,"frameSwapWallTime":1784630690670.116} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690688.jpeg","width":1280,"height":720,"timestamp":30261.452,"frameSwapWallTime":1784630690685.607} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690697.jpeg","width":1280,"height":720,"timestamp":30270.51,"frameSwapWallTime":1784630690694.615} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690705.jpeg","width":1280,"height":720,"timestamp":30278.551,"frameSwapWallTime":1784630690702.7112} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690713.jpeg","width":1280,"height":720,"timestamp":30287.246,"frameSwapWallTime":1784630690711.3792} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690730.jpeg","width":1280,"height":720,"timestamp":30303.822,"frameSwapWallTime":1784630690727.9338} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690738.jpeg","width":1280,"height":720,"timestamp":30312.103,"frameSwapWallTime":1784630690736.24} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690747.jpeg","width":1280,"height":720,"timestamp":30320.502,"frameSwapWallTime":1784630690744.613} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690763.jpeg","width":1280,"height":720,"timestamp":30337.158,"frameSwapWallTime":1784630690761.2651} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690772.jpeg","width":1280,"height":720,"timestamp":30345.523,"frameSwapWallTime":1784630690769.583} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690780.jpeg","width":1280,"height":720,"timestamp":30353.82,"frameSwapWallTime":1784630690777.956} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690788.jpeg","width":1280,"height":720,"timestamp":30362.157,"frameSwapWallTime":1784630690786.3418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690797.jpeg","width":1280,"height":720,"timestamp":30370.827,"frameSwapWallTime":1784630690794.8599} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690805.jpeg","width":1280,"height":720,"timestamp":30379.219,"frameSwapWallTime":1784630690803.183} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690814.jpeg","width":1280,"height":720,"timestamp":30387.667,"frameSwapWallTime":1784630690811.616} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690822.jpeg","width":1280,"height":720,"timestamp":30395.428,"frameSwapWallTime":1784630690819.5742} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690830.jpeg","width":1280,"height":720,"timestamp":30404.22,"frameSwapWallTime":1784630690828.296} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690839.jpeg","width":1280,"height":720,"timestamp":30412.472,"frameSwapWallTime":1784630690836.561} +{"type":"after","callId":"call@494","endTime":30416.273,"afterSnapshot":"after@call@494"} +{"type":"frame-snapshot","snapshot":{"callId":"call@494","snapshotName":"after@call@494","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[6,20]],"viewport":{"width":1280,"height":720},"timestamp":30417.091,"wallTime":1784630690843,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@496","startTime":30417.776,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@75"} +{"type":"log","callId":"call@496","time":30418.253,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@496","time":30418.262,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@496","time":30418.263,"message":" accept: */*"} +{"type":"log","callId":"call@496","time":30418.264,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@496","time":30418.265,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690847.jpeg","width":1280,"height":720,"timestamp":30420.74,"frameSwapWallTime":1784630690844.774} +{"type":"log","callId":"call@496","time":30426.003,"message":"← 200 OK"} +{"type":"log","callId":"call@496","time":30426.008,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@496","time":30426.01,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@496","time":30426.011,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@496","time":30426.014,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@496","time":30426.015,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@496","time":30426.016,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@496","time":30426.017,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@496","time":30426.018,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@496","time":30426.019,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@496","time":30426.02,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@496","time":30426.021,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@496","time":30426.022,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@496","time":30426.023,"message":" vary: Origin"} +{"type":"log","callId":"call@496","time":30426.023,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@496","time":30426.026,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@496","time":30426.027,"message":" content-length: 1234"} +{"type":"log","callId":"call@496","time":30426.028,"message":" etag: W/\"4d2-qB+nhNQwtIpRyDlA2D3s6obZ840\""} +{"type":"log","callId":"call@496","time":30426.029,"message":" date: Tue, 21 Jul 2026 10:44:50 GMT"} +{"type":"log","callId":"call@496","time":30426.03,"message":" connection: keep-alive"} +{"type":"log","callId":"call@496","time":30426.031,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@496","endTime":30426.109,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-qB+nhNQwtIpRyDlA2D3s6obZ840\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:50 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"eb483aed1117497ce0f625f0329b183f"}}} +{"type":"before","callId":"call@499","startTime":30427.53,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@76","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@499"} +{"type":"frame-snapshot","snapshot":{"callId":"call@499","snapshotName":"before@call@499","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[7,20]],"viewport":{"width":1280,"height":720},"timestamp":30428.298,"wallTime":1784630690854,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690856.jpeg","width":1280,"height":720,"timestamp":30429.386,"frameSwapWallTime":1784630690853.485} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690863.jpeg","width":1280,"height":720,"timestamp":30436.604,"frameSwapWallTime":1784630690860.6638} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690872.jpeg","width":1280,"height":720,"timestamp":30445.333,"frameSwapWallTime":1784630690869.489} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690880.jpeg","width":1280,"height":720,"timestamp":30453.837,"frameSwapWallTime":1784630690878.0151} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690888.jpeg","width":1280,"height":720,"timestamp":30462.157,"frameSwapWallTime":1784630690886.266} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690896.jpeg","width":1280,"height":720,"timestamp":30470.101,"frameSwapWallTime":1784630690894.217} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690905.jpeg","width":1280,"height":720,"timestamp":30478.844,"frameSwapWallTime":1784630690903.0361} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690913.jpeg","width":1280,"height":720,"timestamp":30487.287,"frameSwapWallTime":1784630690911.385} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690922.jpeg","width":1280,"height":720,"timestamp":30495.491,"frameSwapWallTime":1784630690919.672} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690930.jpeg","width":1280,"height":720,"timestamp":30504.003,"frameSwapWallTime":1784630690928.06} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690938.jpeg","width":1280,"height":720,"timestamp":30511.978,"frameSwapWallTime":1784630690936.168} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690947.jpeg","width":1280,"height":720,"timestamp":30520.895,"frameSwapWallTime":1784630690944.911} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690955.jpeg","width":1280,"height":720,"timestamp":30528.854,"frameSwapWallTime":1784630690953.065} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690963.jpeg","width":1280,"height":720,"timestamp":30537.114,"frameSwapWallTime":1784630690961.261} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690971.jpeg","width":1280,"height":720,"timestamp":30545.21,"frameSwapWallTime":1784630690969.459} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690980.jpeg","width":1280,"height":720,"timestamp":30554.08,"frameSwapWallTime":1784630690978.142} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690988.jpeg","width":1280,"height":720,"timestamp":30562.165,"frameSwapWallTime":1784630690986.347} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630690996.jpeg","width":1280,"height":720,"timestamp":30570.058,"frameSwapWallTime":1784630690994.3171} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691005.jpeg","width":1280,"height":720,"timestamp":30578.66,"frameSwapWallTime":1784630691002.883} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691013.jpeg","width":1280,"height":720,"timestamp":30586.944,"frameSwapWallTime":1784630691011.191} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691022.jpeg","width":1280,"height":720,"timestamp":30596.153,"frameSwapWallTime":1784630691020.094} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691030.jpeg","width":1280,"height":720,"timestamp":30603.751,"frameSwapWallTime":1784630691027.911} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691038.jpeg","width":1280,"height":720,"timestamp":30612.253,"frameSwapWallTime":1784630691036.4539} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691047.jpeg","width":1280,"height":720,"timestamp":30620.462,"frameSwapWallTime":1784630691044.6091} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691055.jpeg","width":1280,"height":720,"timestamp":30628.789,"frameSwapWallTime":1784630691052.925} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691063.jpeg","width":1280,"height":720,"timestamp":30637.071,"frameSwapWallTime":1784630691061.2239} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691072.jpeg","width":1280,"height":720,"timestamp":30645.574,"frameSwapWallTime":1784630691069.7651} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691080.jpeg","width":1280,"height":720,"timestamp":30653.631,"frameSwapWallTime":1784630691077.801} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691088.jpeg","width":1280,"height":720,"timestamp":30662.219,"frameSwapWallTime":1784630691086.418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691097.jpeg","width":1280,"height":720,"timestamp":30670.455,"frameSwapWallTime":1784630691094.661} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691105.jpeg","width":1280,"height":720,"timestamp":30678.779,"frameSwapWallTime":1784630691102.969} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691113.jpeg","width":1280,"height":720,"timestamp":30687.059,"frameSwapWallTime":1784630691111.268} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691122.jpeg","width":1280,"height":720,"timestamp":30695.389,"frameSwapWallTime":1784630691119.639} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691130.jpeg","width":1280,"height":720,"timestamp":30704.084,"frameSwapWallTime":1784630691128.261} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691138.jpeg","width":1280,"height":720,"timestamp":30712.236,"frameSwapWallTime":1784630691136.45} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691147.jpeg","width":1280,"height":720,"timestamp":30720.483,"frameSwapWallTime":1784630691144.642} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691155.jpeg","width":1280,"height":720,"timestamp":30728.759,"frameSwapWallTime":1784630691152.992} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691163.jpeg","width":1280,"height":720,"timestamp":30737.084,"frameSwapWallTime":1784630691161.319} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691172.jpeg","width":1280,"height":720,"timestamp":30745.485,"frameSwapWallTime":1784630691169.6921} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691180.jpeg","width":1280,"height":720,"timestamp":30753.692,"frameSwapWallTime":1784630691177.9429} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691188.jpeg","width":1280,"height":720,"timestamp":30762.171,"frameSwapWallTime":1784630691186.3489} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691197.jpeg","width":1280,"height":720,"timestamp":30770.55,"frameSwapWallTime":1784630691194.743} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691205.jpeg","width":1280,"height":720,"timestamp":30778.511,"frameSwapWallTime":1784630691202.795} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691213.jpeg","width":1280,"height":720,"timestamp":30786.965,"frameSwapWallTime":1784630691211.199} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691222.jpeg","width":1280,"height":720,"timestamp":30795.633,"frameSwapWallTime":1784630691219.707} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691230.jpeg","width":1280,"height":720,"timestamp":30804.035,"frameSwapWallTime":1784630691228.1548} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691238.jpeg","width":1280,"height":720,"timestamp":30811.825,"frameSwapWallTime":1784630691236.064} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691247.jpeg","width":1280,"height":720,"timestamp":30820.823,"frameSwapWallTime":1784630691244.948} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691255.jpeg","width":1280,"height":720,"timestamp":30828.528,"frameSwapWallTime":1784630691252.774} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691264.jpeg","width":1280,"height":720,"timestamp":30837.418,"frameSwapWallTime":1784630691261.55} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691271.jpeg","width":1280,"height":720,"timestamp":30845.246,"frameSwapWallTime":1784630691269.48} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691280.jpeg","width":1280,"height":720,"timestamp":30853.764,"frameSwapWallTime":1784630691277.8472} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691288.jpeg","width":1280,"height":720,"timestamp":30862.062,"frameSwapWallTime":1784630691286.2239} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691297.jpeg","width":1280,"height":720,"timestamp":30870.669,"frameSwapWallTime":1784630691294.7559} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691305.jpeg","width":1280,"height":720,"timestamp":30878.839,"frameSwapWallTime":1784630691302.925} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691313.jpeg","width":1280,"height":720,"timestamp":30887.041,"frameSwapWallTime":1784630691311.2432} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691321.jpeg","width":1280,"height":720,"timestamp":30895.251,"frameSwapWallTime":1784630691319.4329} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691330.jpeg","width":1280,"height":720,"timestamp":30903.863,"frameSwapWallTime":1784630691328.1428} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691338.jpeg","width":1280,"height":720,"timestamp":30912.211,"frameSwapWallTime":1784630691336.458} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691347.jpeg","width":1280,"height":720,"timestamp":30920.577,"frameSwapWallTime":1784630691344.633} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691355.jpeg","width":1280,"height":720,"timestamp":30928.903,"frameSwapWallTime":1784630691353.019} +{"type":"after","callId":"call@499","endTime":30928.968,"afterSnapshot":"after@call@499"} +{"type":"frame-snapshot","snapshot":{"callId":"call@499","snapshotName":"after@call@499","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[8,20]],"viewport":{"width":1280,"height":720},"timestamp":30929.725,"wallTime":1784630691356,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@501","startTime":30930.532,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@77"} +{"type":"log","callId":"call@501","time":30930.942,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@501","time":30930.947,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@501","time":30930.949,"message":" accept: */*"} +{"type":"log","callId":"call@501","time":30930.95,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@501","time":30930.951,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"log","callId":"call@501","time":30944.418,"message":"← 200 OK"} +{"type":"log","callId":"call@501","time":30944.423,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@501","time":30944.425,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@501","time":30944.426,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@501","time":30944.427,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@501","time":30944.428,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@501","time":30944.429,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@501","time":30944.43,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@501","time":30944.431,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@501","time":30944.432,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@501","time":30944.433,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@501","time":30944.434,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@501","time":30944.435,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@501","time":30944.436,"message":" vary: Origin"} +{"type":"log","callId":"call@501","time":30944.437,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@501","time":30944.438,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@501","time":30944.439,"message":" content-length: 1234"} +{"type":"log","callId":"call@501","time":30944.44,"message":" etag: W/\"4d2-mReV/0aOIDh1TOEiSZyuU2+ZQjs\""} +{"type":"log","callId":"call@501","time":30944.441,"message":" date: Tue, 21 Jul 2026 10:44:51 GMT"} +{"type":"log","callId":"call@501","time":30944.442,"message":" connection: keep-alive"} +{"type":"log","callId":"call@501","time":30944.443,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@501","endTime":30944.52,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-mReV/0aOIDh1TOEiSZyuU2+ZQjs\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:51 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"ca548c9af035cdfe58353311a8bfba88"}}} +{"type":"before","callId":"call@504","startTime":30945.454,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@78","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@504"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691372.jpeg","width":1280,"height":720,"timestamp":30946.276,"frameSwapWallTime":1784630691370.379} +{"type":"frame-snapshot","snapshot":{"callId":"call@504","snapshotName":"before@call@504","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[9,20]],"viewport":{"width":1280,"height":720},"timestamp":30946.389,"wallTime":1784630691372,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691380.jpeg","width":1280,"height":720,"timestamp":30954.086,"frameSwapWallTime":1784630691378.207} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691388.jpeg","width":1280,"height":720,"timestamp":30962.089,"frameSwapWallTime":1784630691386.3289} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691397.jpeg","width":1280,"height":720,"timestamp":30970.339,"frameSwapWallTime":1784630691394.5488} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691405.jpeg","width":1280,"height":720,"timestamp":30978.911,"frameSwapWallTime":1784630691403.01} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691413.jpeg","width":1280,"height":720,"timestamp":30986.372,"frameSwapWallTime":1784630691410.563} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691421.jpeg","width":1280,"height":720,"timestamp":30995.11,"frameSwapWallTime":1784630691419.327} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691430.jpeg","width":1280,"height":720,"timestamp":31003.583,"frameSwapWallTime":1784630691427.736} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691438.jpeg","width":1280,"height":720,"timestamp":31011.444,"frameSwapWallTime":1784630691435.639} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691446.jpeg","width":1280,"height":720,"timestamp":31019.822,"frameSwapWallTime":1784630691444.1472} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691455.jpeg","width":1280,"height":720,"timestamp":31028.651,"frameSwapWallTime":1784630691452.8489} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691463.jpeg","width":1280,"height":720,"timestamp":31037.302,"frameSwapWallTime":1784630691461.3198} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691472.jpeg","width":1280,"height":720,"timestamp":31045.524,"frameSwapWallTime":1784630691469.792} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691480.jpeg","width":1280,"height":720,"timestamp":31053.804,"frameSwapWallTime":1784630691478.013} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691488.jpeg","width":1280,"height":720,"timestamp":31062.13,"frameSwapWallTime":1784630691486.325} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691496.jpeg","width":1280,"height":720,"timestamp":31070.25,"frameSwapWallTime":1784630691494.502} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691505.jpeg","width":1280,"height":720,"timestamp":31078.988,"frameSwapWallTime":1784630691503.0972} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691513.jpeg","width":1280,"height":720,"timestamp":31087.007,"frameSwapWallTime":1784630691511.214} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691522.jpeg","width":1280,"height":720,"timestamp":31095.731,"frameSwapWallTime":1784630691519.82} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691530.jpeg","width":1280,"height":720,"timestamp":31103.698,"frameSwapWallTime":1784630691527.941} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691538.jpeg","width":1280,"height":720,"timestamp":31112.182,"frameSwapWallTime":1784630691536.3582} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691555.jpeg","width":1280,"height":720,"timestamp":31129.243,"frameSwapWallTime":1784630691553.3062} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691564.jpeg","width":1280,"height":720,"timestamp":31137.492,"frameSwapWallTime":1784630691561.565} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691572.jpeg","width":1280,"height":720,"timestamp":31145.734,"frameSwapWallTime":1784630691569.874} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691580.jpeg","width":1280,"height":720,"timestamp":31154.036,"frameSwapWallTime":1784630691578.1929} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691589.jpeg","width":1280,"height":720,"timestamp":31162.431,"frameSwapWallTime":1784630691586.521} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691597.jpeg","width":1280,"height":720,"timestamp":31170.731,"frameSwapWallTime":1784630691594.868} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691605.jpeg","width":1280,"height":720,"timestamp":31179.035,"frameSwapWallTime":1784630691603.125} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691613.jpeg","width":1280,"height":720,"timestamp":31187.196,"frameSwapWallTime":1784630691611.308} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691622.jpeg","width":1280,"height":720,"timestamp":31195.343,"frameSwapWallTime":1784630691619.479} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691638.jpeg","width":1280,"height":720,"timestamp":31212.067,"frameSwapWallTime":1784630691636.242} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691664.jpeg","width":1280,"height":720,"timestamp":31237.355,"frameSwapWallTime":1784630691661.385} +{"type":"after","callId":"call@504","endTime":31447.562,"afterSnapshot":"after@call@504"} +{"type":"frame-snapshot","snapshot":{"callId":"call@504","snapshotName":"after@call@504","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[10,20]],"viewport":{"width":1280,"height":720},"timestamp":31448.626,"wallTime":1784630691875,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@506","startTime":31449.427,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@79"} +{"type":"log","callId":"call@506","time":31450.258,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@506","time":31450.265,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@506","time":31450.267,"message":" accept: */*"} +{"type":"log","callId":"call@506","time":31450.269,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@506","time":31450.27,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"log","callId":"call@506","time":31464.002,"message":"← 200 OK"} +{"type":"log","callId":"call@506","time":31464.007,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@506","time":31464.009,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@506","time":31464.011,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@506","time":31464.012,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@506","time":31464.013,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@506","time":31464.014,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@506","time":31464.015,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@506","time":31464.016,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@506","time":31464.017,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@506","time":31464.018,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@506","time":31464.019,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@506","time":31464.021,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@506","time":31464.022,"message":" vary: Origin"} +{"type":"log","callId":"call@506","time":31464.023,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@506","time":31464.024,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@506","time":31464.025,"message":" content-length: 1234"} +{"type":"log","callId":"call@506","time":31464.026,"message":" etag: W/\"4d2-pFahNy4jkl736S6JoZZaehCoZH4\""} +{"type":"log","callId":"call@506","time":31464.029,"message":" date: Tue, 21 Jul 2026 10:44:51 GMT"} +{"type":"log","callId":"call@506","time":31464.03,"message":" connection: keep-alive"} +{"type":"log","callId":"call@506","time":31464.031,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@506","endTime":31464.127,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-pFahNy4jkl736S6JoZZaehCoZH4\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:51 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"571e511d97335131feeb919632d55674"}}} +{"type":"before","callId":"call@509","startTime":31465.223,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@80","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@509"} +{"type":"frame-snapshot","snapshot":{"callId":"call@509","snapshotName":"before@call@509","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[11,20]],"viewport":{"width":1280,"height":720},"timestamp":31465.979,"wallTime":1784630691892,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691923.jpeg","width":1280,"height":720,"timestamp":31496.627,"frameSwapWallTime":1784630691920.136} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691931.jpeg","width":1280,"height":720,"timestamp":31504.569,"frameSwapWallTime":1784630691928.333} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691938.jpeg","width":1280,"height":720,"timestamp":31512.12,"frameSwapWallTime":1784630691936.187} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691946.jpeg","width":1280,"height":720,"timestamp":31520.209,"frameSwapWallTime":1784630691944.3418} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691962.jpeg","width":1280,"height":720,"timestamp":31535.965,"frameSwapWallTime":1784630691960.126} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691971.jpeg","width":1280,"height":720,"timestamp":31544.875,"frameSwapWallTime":1784630691969.1501} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691979.jpeg","width":1280,"height":720,"timestamp":31553.117,"frameSwapWallTime":1784630691977.33} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630691987.jpeg","width":1280,"height":720,"timestamp":31561.065,"frameSwapWallTime":1784630691985.307} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692005.jpeg","width":1280,"height":720,"timestamp":31578.335,"frameSwapWallTime":1784630692002.541} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692013.jpeg","width":1280,"height":720,"timestamp":31586.846,"frameSwapWallTime":1784630692011.011} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692021.jpeg","width":1280,"height":720,"timestamp":31595.065,"frameSwapWallTime":1784630692019.244} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692030.jpeg","width":1280,"height":720,"timestamp":31603.414,"frameSwapWallTime":1784630692027.557} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692046.jpeg","width":1280,"height":720,"timestamp":31620.263,"frameSwapWallTime":1784630692044.404} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692055.jpeg","width":1280,"height":720,"timestamp":31628.583,"frameSwapWallTime":1784630692052.655} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692063.jpeg","width":1280,"height":720,"timestamp":31636.453,"frameSwapWallTime":1784630692060.546} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692080.jpeg","width":1280,"height":720,"timestamp":31653.785,"frameSwapWallTime":1784630692077.765} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692088.jpeg","width":1280,"height":720,"timestamp":31661.761,"frameSwapWallTime":1784630692085.857} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692096.jpeg","width":1280,"height":720,"timestamp":31670.275,"frameSwapWallTime":1784630692094.401} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692113.jpeg","width":1280,"height":720,"timestamp":31686.649,"frameSwapWallTime":1784630692110.908} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692121.jpeg","width":1280,"height":720,"timestamp":31694.912,"frameSwapWallTime":1784630692119.113} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692130.jpeg","width":1280,"height":720,"timestamp":31703.459,"frameSwapWallTime":1784630692127.568} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692138.jpeg","width":1280,"height":720,"timestamp":31711.869,"frameSwapWallTime":1784630692136.009} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692155.jpeg","width":1280,"height":720,"timestamp":31728.447,"frameSwapWallTime":1784630692152.572} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692163.jpeg","width":1280,"height":720,"timestamp":31736.778,"frameSwapWallTime":1784630692160.9458} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692171.jpeg","width":1280,"height":720,"timestamp":31745.256,"frameSwapWallTime":1784630692169.327} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692188.jpeg","width":1280,"height":720,"timestamp":31761.869,"frameSwapWallTime":1784630692185.95} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692196.jpeg","width":1280,"height":720,"timestamp":31770.15,"frameSwapWallTime":1784630692194.288} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692205.jpeg","width":1280,"height":720,"timestamp":31778.583,"frameSwapWallTime":1784630692202.637} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692213.jpeg","width":1280,"height":720,"timestamp":31786.953,"frameSwapWallTime":1784630692211.018} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692230.jpeg","width":1280,"height":720,"timestamp":31804.267,"frameSwapWallTime":1784630692228.283} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692238.jpeg","width":1280,"height":720,"timestamp":31812.169,"frameSwapWallTime":1784630692236.261} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692247.jpeg","width":1280,"height":720,"timestamp":31820.52,"frameSwapWallTime":1784630692244.578} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692264.jpeg","width":1280,"height":720,"timestamp":31837.34,"frameSwapWallTime":1784630692261.2668} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692271.jpeg","width":1280,"height":720,"timestamp":31845.218,"frameSwapWallTime":1784630692269.312} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692279.jpeg","width":1280,"height":720,"timestamp":31853.115,"frameSwapWallTime":1784630692277.148} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692289.jpeg","width":1280,"height":720,"timestamp":31862.395,"frameSwapWallTime":1784630692286.45} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692305.jpeg","width":1280,"height":720,"timestamp":31878.864,"frameSwapWallTime":1784630692302.946} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692313.jpeg","width":1280,"height":720,"timestamp":31886.917,"frameSwapWallTime":1784630692310.921} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692322.jpeg","width":1280,"height":720,"timestamp":31895.352,"frameSwapWallTime":1784630692319.429} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692330.jpeg","width":1280,"height":720,"timestamp":31903.53,"frameSwapWallTime":1784630692327.716} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692346.jpeg","width":1280,"height":720,"timestamp":31920.007,"frameSwapWallTime":1784630692344.2249} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692354.jpeg","width":1280,"height":720,"timestamp":31928.171,"frameSwapWallTime":1784630692352.3901} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692363.jpeg","width":1280,"height":720,"timestamp":31936.573,"frameSwapWallTime":1784630692360.6738} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692380.jpeg","width":1280,"height":720,"timestamp":31953.398,"frameSwapWallTime":1784630692377.586} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692388.jpeg","width":1280,"height":720,"timestamp":31961.334,"frameSwapWallTime":1784630692385.618} +{"type":"after","callId":"call@509","endTime":31965.984,"afterSnapshot":"after@call@509"} +{"type":"frame-snapshot","snapshot":{"callId":"call@509","snapshotName":"after@call@509","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[12,20]],"viewport":{"width":1280,"height":720},"timestamp":31967.076,"wallTime":1784630692393,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@511","startTime":31968.014,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@81"} +{"type":"log","callId":"call@511","time":31968.568,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@511","time":31968.572,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@511","time":31968.574,"message":" accept: */*"} +{"type":"log","callId":"call@511","time":31968.575,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@511","time":31968.577,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692398.jpeg","width":1280,"height":720,"timestamp":31971.916,"frameSwapWallTime":1784630692394.5662} +{"type":"log","callId":"call@511","time":31976.254,"message":"← 200 OK"} +{"type":"log","callId":"call@511","time":31976.258,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@511","time":31976.259,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@511","time":31976.26,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@511","time":31976.261,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@511","time":31976.262,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@511","time":31976.263,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@511","time":31976.264,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@511","time":31976.265,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@511","time":31976.266,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@511","time":31976.267,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@511","time":31976.268,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@511","time":31976.268,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@511","time":31976.269,"message":" vary: Origin"} +{"type":"log","callId":"call@511","time":31976.27,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@511","time":31976.271,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@511","time":31976.272,"message":" content-length: 1234"} +{"type":"log","callId":"call@511","time":31976.273,"message":" etag: W/\"4d2-YRUhhJiEvPOTGvc3DyA58qgIgmw\""} +{"type":"log","callId":"call@511","time":31976.274,"message":" date: Tue, 21 Jul 2026 10:44:52 GMT"} +{"type":"log","callId":"call@511","time":31976.275,"message":" connection: keep-alive"} +{"type":"log","callId":"call@511","time":31976.276,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@511","endTime":31976.338,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-YRUhhJiEvPOTGvc3DyA58qgIgmw\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:52 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"2a8020a5fbed858760bbf3a43e67b6ff"}}} +{"type":"before","callId":"call@514","startTime":31977.112,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@82","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@514"} +{"type":"frame-snapshot","snapshot":{"callId":"call@514","snapshotName":"before@call@514","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[13,20]],"viewport":{"width":1280,"height":720},"timestamp":31977.779,"wallTime":1784630692404,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692412.jpeg","width":1280,"height":720,"timestamp":31986.216,"frameSwapWallTime":1784630692410.404} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692421.jpeg","width":1280,"height":720,"timestamp":31994.578,"frameSwapWallTime":1784630692418.774} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692429.jpeg","width":1280,"height":720,"timestamp":32002.742,"frameSwapWallTime":1784630692426.9878} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692438.jpeg","width":1280,"height":720,"timestamp":32011.749,"frameSwapWallTime":1784630692435.968} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692454.jpeg","width":1280,"height":720,"timestamp":32028.196,"frameSwapWallTime":1784630692452.426} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692463.jpeg","width":1280,"height":720,"timestamp":32036.333,"frameSwapWallTime":1784630692460.5852} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692471.jpeg","width":1280,"height":720,"timestamp":32044.993,"frameSwapWallTime":1784630692469.145} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692480.jpeg","width":1280,"height":720,"timestamp":32053.633,"frameSwapWallTime":1784630692477.8171} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692496.jpeg","width":1280,"height":720,"timestamp":32069.884,"frameSwapWallTime":1784630692494.084} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692504.jpeg","width":1280,"height":720,"timestamp":32077.664,"frameSwapWallTime":1784630692501.979} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692513.jpeg","width":1280,"height":720,"timestamp":32086.805,"frameSwapWallTime":1784630692511.013} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692530.jpeg","width":1280,"height":720,"timestamp":32103.356,"frameSwapWallTime":1784630692527.562} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692538.jpeg","width":1280,"height":720,"timestamp":32111.477,"frameSwapWallTime":1784630692535.709} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692546.jpeg","width":1280,"height":720,"timestamp":32119.708,"frameSwapWallTime":1784630692543.932} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692563.jpeg","width":1280,"height":720,"timestamp":32137.011,"frameSwapWallTime":1784630692561.1511} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692571.jpeg","width":1280,"height":720,"timestamp":32144.985,"frameSwapWallTime":1784630692569.1782} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692579.jpeg","width":1280,"height":720,"timestamp":32152.95,"frameSwapWallTime":1784630692577.2222} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692596.jpeg","width":1280,"height":720,"timestamp":32170.037,"frameSwapWallTime":1784630692594.323} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692604.jpeg","width":1280,"height":720,"timestamp":32177.984,"frameSwapWallTime":1784630692602.298} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692613.jpeg","width":1280,"height":720,"timestamp":32186.321,"frameSwapWallTime":1784630692610.6328} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692629.jpeg","width":1280,"height":720,"timestamp":32203.268,"frameSwapWallTime":1784630692627.435} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692638.jpeg","width":1280,"height":720,"timestamp":32211.677,"frameSwapWallTime":1784630692635.8062} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692646.jpeg","width":1280,"height":720,"timestamp":32220.111,"frameSwapWallTime":1784630692644.216} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692662.jpeg","width":1280,"height":720,"timestamp":32236.016,"frameSwapWallTime":1784630692660.1929} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692670.jpeg","width":1280,"height":720,"timestamp":32244.146,"frameSwapWallTime":1784630692668.426} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692679.jpeg","width":1280,"height":720,"timestamp":32253.264,"frameSwapWallTime":1784630692677.53} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692687.jpeg","width":1280,"height":720,"timestamp":32261.286,"frameSwapWallTime":1784630692685.547} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692704.jpeg","width":1280,"height":720,"timestamp":32278.234,"frameSwapWallTime":1784630692702.474} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692712.jpeg","width":1280,"height":720,"timestamp":32286.219,"frameSwapWallTime":1784630692710.5132} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692721.jpeg","width":1280,"height":720,"timestamp":32294.769,"frameSwapWallTime":1784630692719.041} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692729.jpeg","width":1280,"height":720,"timestamp":32302.997,"frameSwapWallTime":1784630692727.336} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692746.jpeg","width":1280,"height":720,"timestamp":32319.664,"frameSwapWallTime":1784630692743.973} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692754.jpeg","width":1280,"height":720,"timestamp":32327.771,"frameSwapWallTime":1784630692752.0398} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692762.jpeg","width":1280,"height":720,"timestamp":32336.306,"frameSwapWallTime":1784630692760.628} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692779.jpeg","width":1280,"height":720,"timestamp":32353.162,"frameSwapWallTime":1784630692777.4219} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692787.jpeg","width":1280,"height":720,"timestamp":32361.081,"frameSwapWallTime":1784630692785.359} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692795.jpeg","width":1280,"height":720,"timestamp":32369.16,"frameSwapWallTime":1784630692793.345} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692805.jpeg","width":1280,"height":720,"timestamp":32378.375,"frameSwapWallTime":1784630692802.625} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692821.jpeg","width":1280,"height":720,"timestamp":32394.923,"frameSwapWallTime":1784630692819.145} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692829.jpeg","width":1280,"height":720,"timestamp":32403.193,"frameSwapWallTime":1784630692827.347} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692838.jpeg","width":1280,"height":720,"timestamp":32411.576,"frameSwapWallTime":1784630692835.75} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692855.jpeg","width":1280,"height":720,"timestamp":32428.41,"frameSwapWallTime":1784630692852.622} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692862.jpeg","width":1280,"height":720,"timestamp":32436.228,"frameSwapWallTime":1784630692860.5298} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692871.jpeg","width":1280,"height":720,"timestamp":32444.798,"frameSwapWallTime":1784630692869.022} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692888.jpeg","width":1280,"height":720,"timestamp":32461.465,"frameSwapWallTime":1784630692885.691} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692896.jpeg","width":1280,"height":720,"timestamp":32469.551,"frameSwapWallTime":1784630692893.8179} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692904.jpeg","width":1280,"height":720,"timestamp":32478.058,"frameSwapWallTime":1784630692902.318} +{"type":"after","callId":"call@514","endTime":32478.148,"afterSnapshot":"after@call@514"} +{"type":"frame-snapshot","snapshot":{"callId":"call@514","snapshotName":"after@call@514","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[14,20]],"viewport":{"width":1280,"height":720},"timestamp":32478.896,"wallTime":1784630692905,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@516","startTime":32479.894,"class":"APIRequestContext","method":"fetch","params":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","method":"GET","headers":[{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"}],"timeout":15000},"stepId":"pw:api@83"} +{"type":"log","callId":"call@516","time":32480.418,"message":"→ GET http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3"} +{"type":"log","callId":"call@516","time":32480.424,"message":" user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"} +{"type":"log","callId":"call@516","time":32480.426,"message":" accept: */*"} +{"type":"log","callId":"call@516","time":32480.427,"message":" accept-encoding: gzip,deflate,br"} +{"type":"log","callId":"call@516","time":32480.428,"message":" Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"} +{"type":"log","callId":"call@516","time":32492.392,"message":"← 200 OK"} +{"type":"log","callId":"call@516","time":32492.397,"message":" content-security-policy: default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"} +{"type":"log","callId":"call@516","time":32492.398,"message":" cross-origin-opener-policy: same-origin"} +{"type":"log","callId":"call@516","time":32492.399,"message":" cross-origin-resource-policy: same-origin"} +{"type":"log","callId":"call@516","time":32492.4,"message":" origin-agent-cluster: ?1"} +{"type":"log","callId":"call@516","time":32492.401,"message":" referrer-policy: no-referrer"} +{"type":"log","callId":"call@516","time":32492.402,"message":" strict-transport-security: max-age=31536000; includeSubDomains"} +{"type":"log","callId":"call@516","time":32492.403,"message":" x-content-type-options: nosniff"} +{"type":"log","callId":"call@516","time":32492.404,"message":" x-dns-prefetch-control: off"} +{"type":"log","callId":"call@516","time":32492.405,"message":" x-download-options: noopen"} +{"type":"log","callId":"call@516","time":32492.406,"message":" x-frame-options: SAMEORIGIN"} +{"type":"log","callId":"call@516","time":32492.407,"message":" x-permitted-cross-domain-policies: none"} +{"type":"log","callId":"call@516","time":32492.408,"message":" x-xss-protection: 0"} +{"type":"log","callId":"call@516","time":32492.409,"message":" vary: Origin"} +{"type":"log","callId":"call@516","time":32492.41,"message":" access-control-allow-credentials: true"} +{"type":"log","callId":"call@516","time":32492.411,"message":" content-type: application/json; charset=utf-8"} +{"type":"log","callId":"call@516","time":32492.412,"message":" content-length: 1234"} +{"type":"log","callId":"call@516","time":32492.413,"message":" etag: W/\"4d2-N0uBWF6v58dfRJ+OPXCibrnDOV0\""} +{"type":"log","callId":"call@516","time":32492.414,"message":" date: Tue, 21 Jul 2026 10:44:52 GMT"} +{"type":"log","callId":"call@516","time":32492.416,"message":" connection: keep-alive"} +{"type":"log","callId":"call@516","time":32492.418,"message":" keep-alive: timeout=5"} +{"type":"after","callId":"call@516","endTime":32492.486,"result":{"response":{"url":"http://localhost:4000/bookings/a9be972d-c95f-4ef3-b91b-4084df183dc3","status":200,"statusText":"OK","headers":[{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"},{"name":"Vary","value":"Origin"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Content-Length","value":"1234"},{"name":"ETag","value":"W/\"4d2-N0uBWF6v58dfRJ+OPXCibrnDOV0\""},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:52 GMT"},{"name":"Connection","value":"keep-alive"},{"name":"Keep-Alive","value":"timeout=5"}],"serverAddr":{"ipAddress":"::1","port":4000},"fetchUid":"bead0191b6844b9b07caabc52c08d2c5"}}} +{"type":"before","callId":"call@519","startTime":32493.487,"class":"Frame","method":"waitForTimeout","params":{"waitTimeout":500},"stepId":"pw:api@84","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","beforeSnapshot":"before@call@519"} +{"type":"frame-snapshot","snapshot":{"callId":"call@519","snapshotName":"before@call@519","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[15,20]],"viewport":{"width":1280,"height":720},"timestamp":32494.198,"wallTime":1784630692920,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692922.jpeg","width":1280,"height":720,"timestamp":32495.617,"frameSwapWallTime":1784630692919.7842} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692929.jpeg","width":1280,"height":720,"timestamp":32502.664,"frameSwapWallTime":1784630692926.743} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692937.jpeg","width":1280,"height":720,"timestamp":32511.017,"frameSwapWallTime":1784630692935.2378} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692954.jpeg","width":1280,"height":720,"timestamp":32528.242,"frameSwapWallTime":1784630692952.489} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692962.jpeg","width":1280,"height":720,"timestamp":32536.161,"frameSwapWallTime":1784630692960.396} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692971.jpeg","width":1280,"height":720,"timestamp":32544.859,"frameSwapWallTime":1784630692969.054} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692988.jpeg","width":1280,"height":720,"timestamp":32561.689,"frameSwapWallTime":1784630692985.936} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630692996.jpeg","width":1280,"height":720,"timestamp":32569.781,"frameSwapWallTime":1784630692994.014} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693004.jpeg","width":1280,"height":720,"timestamp":32577.839,"frameSwapWallTime":1784630693002.1118} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693013.jpeg","width":1280,"height":720,"timestamp":32586.514,"frameSwapWallTime":1784630693010.762} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693029.jpeg","width":1280,"height":720,"timestamp":32603.138,"frameSwapWallTime":1784630693027.356} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693037.jpeg","width":1280,"height":720,"timestamp":32610.696,"frameSwapWallTime":1784630693034.911} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693046.jpeg","width":1280,"height":720,"timestamp":32619.862,"frameSwapWallTime":1784630693044.138} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693063.jpeg","width":1280,"height":720,"timestamp":32636.478,"frameSwapWallTime":1784630693060.749} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693071.jpeg","width":1280,"height":720,"timestamp":32644.599,"frameSwapWallTime":1784630693068.852} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693079.jpeg","width":1280,"height":720,"timestamp":32652.516,"frameSwapWallTime":1784630693076.813} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693088.jpeg","width":1280,"height":720,"timestamp":32661.5,"frameSwapWallTime":1784630693085.789} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693104.jpeg","width":1280,"height":720,"timestamp":32678.202,"frameSwapWallTime":1784630693102.429} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693112.jpeg","width":1280,"height":720,"timestamp":32686.017,"frameSwapWallTime":1784630693110.3042} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693121.jpeg","width":1280,"height":720,"timestamp":32694.724,"frameSwapWallTime":1784630693119.007} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693138.jpeg","width":1280,"height":720,"timestamp":32711.643,"frameSwapWallTime":1784630693135.854} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693146.jpeg","width":1280,"height":720,"timestamp":32719.747,"frameSwapWallTime":1784630693144.007} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693154.jpeg","width":1280,"height":720,"timestamp":32728.032,"frameSwapWallTime":1784630693152.333} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693171.jpeg","width":1280,"height":720,"timestamp":32744.741,"frameSwapWallTime":1784630693168.928} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693179.jpeg","width":1280,"height":720,"timestamp":32752.555,"frameSwapWallTime":1784630693176.8489} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693187.jpeg","width":1280,"height":720,"timestamp":32760.699,"frameSwapWallTime":1784630693184.898} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693204.jpeg","width":1280,"height":720,"timestamp":32778.178,"frameSwapWallTime":1784630693202.384} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693212.jpeg","width":1280,"height":720,"timestamp":32786.151,"frameSwapWallTime":1784630693210.407} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693220.jpeg","width":1280,"height":720,"timestamp":32794.043,"frameSwapWallTime":1784630693218.1858} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693230.jpeg","width":1280,"height":720,"timestamp":32803.693,"frameSwapWallTime":1784630693227.8708} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693246.jpeg","width":1280,"height":720,"timestamp":32819.935,"frameSwapWallTime":1784630693244.1511} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693254.jpeg","width":1280,"height":720,"timestamp":32827.885,"frameSwapWallTime":1784630693252.1929} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693262.jpeg","width":1280,"height":720,"timestamp":32835.83,"frameSwapWallTime":1784630693260.078} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693280.jpeg","width":1280,"height":720,"timestamp":32853.484,"frameSwapWallTime":1784630693277.669} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693287.jpeg","width":1280,"height":720,"timestamp":32861.299,"frameSwapWallTime":1784630693285.5452} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693297.jpeg","width":1280,"height":720,"timestamp":32870.388,"frameSwapWallTime":1784630693294.026} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693313.jpeg","width":1280,"height":720,"timestamp":32887.288,"frameSwapWallTime":1784630693311.403} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693321.jpeg","width":1280,"height":720,"timestamp":32894.624,"frameSwapWallTime":1784630693318.899} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693329.jpeg","width":1280,"height":720,"timestamp":32902.88,"frameSwapWallTime":1784630693327.105} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693346.jpeg","width":1280,"height":720,"timestamp":32919.755,"frameSwapWallTime":1784630693344.016} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693354.jpeg","width":1280,"height":720,"timestamp":32927.715,"frameSwapWallTime":1784630693351.8728} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693362.jpeg","width":1280,"height":720,"timestamp":32936.1,"frameSwapWallTime":1784630693360.2632} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693380.jpeg","width":1280,"height":720,"timestamp":32953.713,"frameSwapWallTime":1784630693377.667} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693388.jpeg","width":1280,"height":720,"timestamp":32961.368,"frameSwapWallTime":1784630693385.555} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693396.jpeg","width":1280,"height":720,"timestamp":32969.761,"frameSwapWallTime":1784630693394.034} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693413.jpeg","width":1280,"height":720,"timestamp":32986.815,"frameSwapWallTime":1784630693410.961} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693420.jpeg","width":1280,"height":720,"timestamp":32994.296,"frameSwapWallTime":1784630693418.511} +{"type":"after","callId":"call@519","endTime":32994.402,"afterSnapshot":"after@call@519"} +{"type":"frame-snapshot","snapshot":{"callId":"call@519","snapshotName":"after@call@519","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","frameId":"frame@93158020af7521c6efd9454e39f2c4aa","frameUrl":"http://localhost:5174/","doctype":"html","html":[[16,20]],"viewport":{"width":1280,"height":720},"timestamp":32995.186,"wallTime":1784630693421,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@e600c850f86c7fc16a2602b9a1330d97","sha1":"page@e600c850f86c7fc16a2602b9a1330d97-1784630693430.jpeg","width":1280,"height":720,"timestamp":33003.427,"frameSwapWallTime":1784630693427.644} diff --git a/test-results/.playwright-artifacts-0/traces/622a5a825d296d929eb3-c770b59a0cf9ffac4690.network b/test-results/.playwright-artifacts-0/traces/622a5a825d296d929eb3-c770b59a0cf9ffac4690.network new file mode 100644 index 000000000..56fdd60f3 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/622a5a825d296d929eb3-c770b59a0cf9ffac4690.network @@ -0,0 +1,54 @@ +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:22.629Z","time":1.74,"request":{"method":"GET","url":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"image"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"url","value":"/edr-logo.png"},{"name":"w","value":"256"},{"name":"q","value":"75"}],"headersSize":767,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"public, max-age=0, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Disposition","value":"inline; filename=\"edr-logo.webp\""},{"name":"Content-Length","value":"5926"},{"name":"Content-Security-Policy","value":"script-src 'none'; frame-src 'none'; sandbox;"},{"name":"Content-Type","value":"image/webp"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:22 GMT"},{"name":"ETag","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Vary","value":"Accept"},{"name":"X-Nextjs-Cache","value":"STALE"}],"content":{"size":5926,"mimeType":"image/webp","compression":0,"_sha1":"d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp"},"headersSize":418,"bodySize":5926,"redirectURL":"","_transferSize":6344},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.286,"receive":0.454},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2204.421,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:22.608Z","time":21.230999999999998,"request":{"method":"GET","url":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-Fetch-Dest","value":"document"},{"name":"Sec-Fetch-Mode","value":"navigate"},{"name":"Sec-Fetch-Site","value":"none"},{"name":"Sec-Fetch-User","value":"?1"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"origin","value":"00000000-0000-4000-8000-000000000020"},{"name":"destination","value":"00000000-0000-4000-8000-000000000022"},{"name":"date","value":"2026-07-23"},{"name":"tripType","value":"ONE_WAY"},{"name":"adults","value":"1"},{"name":"children","value":"0"},{"name":"nationality","value":"ETHIOPIAN"}],"headersSize":673,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/html; charset=utf-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:22 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"X-Powered-By","value":"Next.js"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":51421,"mimeType":"text/html; charset=utf-8","compression":41206,"_sha1":"5cdc05fc5e34450188e21ac8f114b681ec8f53d2.html"},"headersSize":765,"bodySize":10215,"redirectURL":"","_transferSize":10980},"cache":{},"timings":{"dns":0.145,"connect":0.255,"ssl":1.599,"send":0,"wait":17.3,"receive":1.932},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2182.56,"_resourceType":"document","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:22.629Z","time":4.758,"request":{"method":"GET","url":"http://localhost:5174/_next/static/css/app/layout.css?v=1784630662616","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"style"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630662616"}],"headersSize":741,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/css; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:22 GMT"},{"name":"ETag","value":"W/\"184e1-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":99553,"mimeType":"text/css; charset=UTF-8","compression":84302,"_sha1":"37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css"},"headersSize":356,"bodySize":15251,"redirectURL":"","_transferSize":15607},"cache":{},"timings":{"dns":0.005,"connect":0.227,"ssl":1.261,"send":0,"wait":2.285,"receive":0.98},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2204.487,"_resourceType":"stylesheet","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:22.629Z","time":5.6240000000000006,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/webpack.js?v=1784630662616","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630662616"}],"headersSize":726,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:22 GMT"},{"name":"ETag","value":"W/\"dc1e-19f8377166c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":369,"bodySize":10547,"redirectURL":"","_transferSize":10916},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.674,"receive":2.95},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2204.556,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:22.629Z","time":9.793,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app-pages-internals.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":738,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:22 GMT"},{"name":"ETag","value":"W/\"256bc-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":33746,"redirectURL":"","_transferSize":34116},"cache":{},"timings":{"dns":0.001,"connect":0.372,"ssl":1.396,"send":0,"wait":2.373,"receive":5.651},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2204.707,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:22.629Z","time":12.084,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":737,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:22 GMT"},{"name":"ETag","value":"W/\"2c9d3-19f8376f06f\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":51283,"redirectURL":"","_transferSize":51653},"cache":{},"timings":{"dns":0.001,"connect":0.082,"ssl":1.104,"send":0,"wait":2.862,"receive":8.035},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2204.91,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:22.629Z","time":49.691,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":729,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:22 GMT"},{"name":"ETag","value":"W/\"1c4c9e-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":434806,"redirectURL":"","_transferSize":435177},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.106,"receive":46.585},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2205.05,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:22.629Z","time":56.791000000000004,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/results/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":743,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:22 GMT"},{"name":"ETag","value":"W/\"20cb55-19f8376f071\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":479485,"redirectURL":"","_transferSize":479856},"cache":{},"timings":{"dns":0.001,"connect":0.247,"ssl":1.341,"send":0,"wait":3.804,"receive":51.398},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2204.833,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:22.629Z","time":129.61700000000002,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/main-app.js?v=1784630662616","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630662616"}],"headersSize":727,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:22 GMT"},{"name":"ETag","value":"W/\"5ec9be-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":1354462,"redirectURL":"","_transferSize":1354833},"cache":{},"timings":{"dns":0.005,"connect":0.522,"ssl":1.553,"send":0,"wait":2.479,"receive":125.058},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2204.596,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.144Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"1lALSR6g7Agta5HbCNe3Sg=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"WebSocket is closed before the connection is established."},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2717.461,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.079Z","time":12.428,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"229-rFk4D7sR2l8A/8OxeWPnyvZJBFo\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ac59380fbb11da5f00ffc3b17963e7caf649045a.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.974,"receive":2.454},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2715.549,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.079Z","time":7.6,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-rFk4D7sR2l8A/8OxeWPnyvZJBFo\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"229-dyXSUEjUU+f7EblxeBJLWvNDuSE\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7725d25048d453e7fb11b97178124b5af343b921.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.569,"receive":2.031},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2715.57,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.075Z","time":16.078,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_features_support_SupportWidget_tsx.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":776,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"f9fd6-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":233760,"redirectURL":"","_transferSize":234130},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.986,"receive":14.092},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2715.505,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.079Z","time":44.63,"request":{"method":"POST","url":"http://localhost:4000/search","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"220"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":883,"bodySize":220,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"9b24d025b50a9c3ff3db8b177a92ea96d434dcc8.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1599"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"63f-IKX3I4W3T4rB9bQa3gT9zX+DTWY\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":1599,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"20a5f72385b74f8ac1f5b41ade04fdcd7f834d66.json"},"headersSize":989,"bodySize":1599,"redirectURL":"","_transferSize":2588},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":42.514,"receive":2.116},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2715.625,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.133Z","time":6.618,"request":{"method":"GET","url":"http://localhost:4000/support/device/unread-count?deviceId=89c0caac-e491-4559-9c6a-6cb202de8499","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"deviceId","value":"89c0caac-e491-4559-9c6a-6cb202de8499"}],"headersSize":850,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"80"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"50-M2pCZ+QUeeE2pzNq+dpkAviKw8s\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":80,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"336a4267e41479e136a7336af9da6402f88ac3cb.json"},"headersSize":981,"bodySize":80,"redirectURL":"","_transferSize":1061},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.431,"receive":2.187},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2717.625,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.772Z","time":9.599,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=br3vi","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22results%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/results"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"br3vi"}],"headersSize":1017,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"a5a2bb1a5b49246f969011b22df0d171d298ab95.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.768,"receive":0.831},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3348.486,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.789Z","time":7.633,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=n2i48","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"n2i48"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.633,"receive":-1},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3363.784,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.798Z","time":16.811,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/auth-check/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":746,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"ed732-19f8376f656\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":254272,"redirectURL":"","_transferSize":254642},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.821,"receive":14.99},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3372.712,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.846Z","time":13.857,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=3ko94","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/auth-check"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ko94"}],"headersSize":858,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"113ef7bc1ddbb9932f87ab52b1c6c6d273a48c10.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.959,"receive":0.898},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3431.652,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.848Z","time":15.466,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-dyXSUEjUU+f7EblxeBJLWvNDuSE\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"229-aXO18rQKw/xyvjp4QyGFuAbzJ2M\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"6973b5f2b40ac3fc72be3a78432185b806f32763.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":15.011,"receive":0.455},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3431.707,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.848Z","time":7.207,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-aXO18rQKw/xyvjp4QyGFuAbzJ2M\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"229-8soLS8Cn3R9MANGBZeUtEFPXY8k\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"f2ca0b4bc0a7dd1f4c00d18165e52d1053d763c9.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.835,"receive":0.372},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3432.122,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.862Z","time":10.11,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=xc7gl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"xc7gl"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.11,"receive":-1},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3435.876,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.873Z","time":33.143,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/passengers/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":581,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"216ea9-19f8376f7db\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":478257,"redirectURL":"","_transferSize":478628},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.792,"receive":31.351},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3447.102,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.966Z","time":9.07,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":842,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"90-7U1C/QWaLTKR3CuKtd6Z1UsbqCU\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ed4d42fd059a2d3291dc2b8ab5de99d54b1ba825.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.473,"receive":1.597},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3571.368,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.966Z","time":5.05,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"90-7U1C/QWaLTKR3CuKtd6Z1UsbqCU\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":893,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:23 GMT"},{"name":"ETag","value":"W/\"90-hnEYuXOotQCJ/vEurqxOIWSoisg\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"867118b973a8b50089fef12eaeac4e2164a88ac8.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.582,"receive":1.468},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":3571.396,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:25.285Z","time":6.75,"request":{"method":"POST","url":"http://localhost:4000/passengers/save-details","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"349"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":900,"bodySize":349,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"46ae445702343bdfd9e1086dfe03abe2ec9d6774.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"368"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:25 GMT"},{"name":"ETag","value":"W/\"170-Yh05tUgOaSnsMk+e7KTu03rbtVc\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":368,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"621d39b5480e6929ec324f9eeca4eed37adbb557.json"},"headersSize":988,"bodySize":368,"redirectURL":"","_transferSize":1356},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.22,"receive":1.53},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":4860.025,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:25.293Z","time":10.564,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=3ufbl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/passengers"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ufbl"}],"headersSize":853,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:25 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":111,"mimeType":"text/x-component","compression":0,"_sha1":"3ba650e38c01b7f4dba7c59a8ac235a4f5802b22.htc"},"headersSize":734,"bodySize":119,"redirectURL":"","_transferSize":853},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.812,"receive":0.752},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":4868.34,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:25.305Z","time":8.881,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=1ivgy","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1ivgy"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:25 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.881,"receive":-1},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":4879.516,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:25.315Z","time":33.134,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/seats/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":576,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:25 GMT"},{"name":"ETag","value":"W/\"1f96a9-19f8376ffca\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:21 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":484983,"redirectURL":"","_transferSize":485354},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.713,"receive":31.421},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":4889.363,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:25.404Z","time":36.480000000000004,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101?coachTypeId=00000000-0000-4000-8000-000000000001&journeyDirection=ONE_WAY&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"coachTypeId","value":"00000000-0000-4000-8000-000000000001"},{"name":"journeyDirection","value":"ONE_WAY"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"}],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9447"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:25 GMT"},{"name":"ETag","value":"W/\"24e7-7Puo6hUxdgTKArtIHLcYjCUxFO0\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9447,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ecfba8ea15317604ca02bb481cb7188c253114ed.json"},"headersSize":985,"bodySize":9447,"redirectURL":"","_transferSize":10432},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":23.523,"receive":12.957},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":5011.753,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:26.275Z","time":24.335,"request":{"method":"POST","url":"http://localhost:4000/seats/hold","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"304"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":304,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"99a8925f2abe911568d11ee45da71129849cc5ba.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"941"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:26 GMT"},{"name":"ETag","value":"W/\"3ad-ps8pg7Zp2DDEiXVuCCBykBOsXCA\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":941,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"a6cf2983b669d830c489756e0820729013ac5c20.json"},"headersSize":988,"bodySize":941,"redirectURL":"","_transferSize":1929},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":22.849,"receive":1.486},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":5850.689,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:26.303Z","time":9.732,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=11o05","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/seats"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"11o05"}],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:26 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":113,"mimeType":"text/x-component","compression":0,"_sha1":"efc18e093e9560b1f05c3bd786098516c99407f5.htc"},"headersSize":734,"bodySize":120,"redirectURL":"","_transferSize":854},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.011,"receive":0.721},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":5880.757,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:26.315Z","time":6.471,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=dcucj","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"dcucj"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:26 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.471,"receive":-1},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":5888.958,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:26.322Z","time":28.31,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/review/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":572,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:26 GMT"},{"name":"ETag","value":"W/\"1b5bdb-19f8377031c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:22 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":413299,"redirectURL":"","_transferSize":413670},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.74,"receive":26.57},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":5896.548,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:26.398Z","time":11.704999999999998,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9442"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:26 GMT"},{"name":"ETag","value":"W/\"24e2-dWL6zT4aiZfGa1h18s4QS5fy1I0\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9442,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7562facd3e1a8997c66b5875f2ce104b97f2d48d.json"},"headersSize":985,"bodySize":9442,"redirectURL":"","_transferSize":10427},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.043,"receive":1.662},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":5994.425,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:26.398Z","time":6.196,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:26 GMT"},{"name":"ETag","value":"W/\"2f7-1CEA4wrlNcVobuGs8J0ZX38XLMs\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"d42100e30ae535c5686ee1acf09d195f7f172ccb.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.049,"receive":2.147},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":5994.452,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:26.398Z","time":10.846,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"24e2-dWL6zT4aiZfGa1h18s4QS5fy1I0\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":926,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9442"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:26 GMT"},{"name":"ETag","value":"W/\"24e2-nbbHyeZEPQ7aCLW0A2jU2NVW43g\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9442,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"9db6c7c9e6443d0eda08b5b40368d4d8d556e378.json"},"headersSize":985,"bodySize":9442,"redirectURL":"","_transferSize":10427},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.327,"receive":2.519},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":5994.473,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:26.416Z","time":25.771,"request":{"method":"GET","url":"http://localhost:4000/search/fare-breakdown?scheduleId=00000000-0000-4000-8000-000000000101&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022&passengers=%5B%7B%22passengerName%22%3A%22Adult+1%22%2C%22dateOfBirth%22%3A%221990-06-15%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000010%22%2C%22nationality%22%3A%22ETHIOPIAN%22%7D%5D&displayCurrency=ETB","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"scheduleId","value":"00000000-0000-4000-8000-000000000101"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"},{"name":"passengers","value":"[{\"passengerName\":\"Adult 1\",\"dateOfBirth\":\"1990-06-15\",\"seatClassId\":\"00000000-0000-4000-8000-000000000010\",\"nationality\":\"ETHIOPIAN\"}]"},{"name":"displayCurrency","value":"ETB"}],"headersSize":844,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"720"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:26 GMT"},{"name":"ETag","value":"W/\"2d0-sX/Z7WsYPMFXY4353UB929STZj8\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":720,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"b17fd9ed6b183cc157638df9dd407ddbd493663f.json"},"headersSize":983,"bodySize":720,"redirectURL":"","_transferSize":1703},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":24.105,"receive":1.666},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":5996.605,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:27.267Z","time":4.891,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"2f7-1CEA4wrlNcVobuGs8J0ZX38XLMs\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:27 GMT"},{"name":"ETag","value":"W/\"2f7-h9Hzft5SzTcEoORuv6JnqfSlkaI\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"87d1f37ede52cd3704a0e46ebfa267a9f4a591a2.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.345,"receive":0.546},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":6841.724,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:27.274Z","time":49.003,"request":{"method":"POST","url":"http://localhost:4000/bookings","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"661"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":885,"bodySize":661,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"4b1c11572f061a01568c1e7d8619a21adcead5da.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"3536"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:27 GMT"},{"name":"ETag","value":"W/\"dd0-9jxcvzu68c6fYblX/E27AlBLjFE\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":3536,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"f63c5cbf3bbaf1ce9f61b957fc4dbb02504b8c51.json"},"headersSize":989,"bodySize":3536,"redirectURL":"","_transferSize":4525},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":45.317,"receive":3.686},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":6848.629,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:27.425Z","time":8.669,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=1uobt","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/review"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1uobt"}],"headersSize":843,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:27 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":115,"mimeType":"text/x-component","compression":0,"_sha1":"de07c86cc64bda73e654d27a199f6610c0e4ebad.htc"},"headersSize":734,"bodySize":116,"redirectURL":"","_transferSize":850},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.932,"receive":0.737},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":6999.258,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:27.435Z","time":7.253,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=rvb09","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22payment%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"rvb09"}],"headersSize":794,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:27 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":4122,"mimeType":"text/x-component","compression":2847,"_sha1":"52013f23d15462d527c039601b2d97d3b0078e23.htc"},"headersSize":734,"bodySize":1275,"redirectURL":"","_transferSize":2009},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.462,"receive":0.791},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":7009.283,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:27.443Z","time":26.686,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/payment/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":574,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:27 GMT"},{"name":"ETag","value":"W/\"1c5af1-19f83770767\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:23 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":435498,"redirectURL":"","_transferSize":435869},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.375,"receive":25.311},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":7016.689,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:27.519Z","time":6.985,"request":{"method":"GET","url":"http://localhost:4000/payments/methods","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"593"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:27 GMT"},{"name":"ETag","value":"W/\"251-6FcggPU+MStn1g1g+SFDy4+fEeg\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":593,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"e8572080f53e312b67d60d60f92143cb8f9f11e8.json"},"headersSize":983,"bodySize":593,"redirectURL":"","_transferSize":1576},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.682,"receive":1.303},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":7114.378,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:28.370Z","time":7.493,"request":{"method":"GET","url":"http://localhost:4000/payments/booking-amount?bookingId=07f85ff8-6213-4111-8e3b-0236282bef61¤cy=ETB","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"bookingId","value":"07f85ff8-6213-4111-8e3b-0236282bef61"},{"name":"currency","value":"ETB"}],"headersSize":846,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"146"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:28 GMT"},{"name":"ETag","value":"W/\"92-hFqsI45oiabElJiGpuPQ8KUXVhM\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":146,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"845aac238e6889a6c4949886a6e3d0f0a5175613.json"},"headersSize":982,"bodySize":146,"redirectURL":"","_transferSize":1128},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.048,"receive":1.445},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":7945.24,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:28.421Z","time":72.129,"request":{"method":"POST","url":"http://localhost:4000/payments/initiate","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":894,"bodySize":144,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"7d8f7d9da5bb882d91d5f869d4bd5f32e3de6669.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"135"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:28 GMT"},{"name":"ETag","value":"W/\"87-6Ty4PPg4vGnLx5RmkwA/rT6GAiY\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":135,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"e93cb83cf838bc69cbc7946693003fad3e860226.json"},"headersSize":987,"bodySize":135,"redirectURL":"","_transferSize":1122},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":70.798,"receive":1.331},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":7995.878,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:30.494Z","time":10.042,"request":{"method":"GET","url":"http://localhost:5174/booking/confirmation?_rsc=gwlg9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22payment%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/payment"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"gwlg9"}],"headersSize":851,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":125,"mimeType":"text/x-component","compression":0,"_sha1":"a072c05619b7cf3cbedc053f6c992794b91fee45.htc"},"headersSize":734,"bodySize":126,"redirectURL":"","_transferSize":860},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.331,"receive":0.711},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":10070.993,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:30.507Z","time":7.223,"request":{"method":"GET","url":"http://localhost:5174/booking/confirmation?_rsc=180sd","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22confirmation%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"180sd"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.223,"receive":-1},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":10081.249,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:30.515Z","time":27.639999999999997,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/confirmation/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":580,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"1b9b35-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":425290,"redirectURL":"","_transferSize":425661},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.615,"receive":26.025},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":10089.523,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:30.584Z","time":12.384,"request":{"method":"GET","url":"http://localhost:4000/bookings/07f85ff8-6213-4111-8e3b-0236282bef61","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":868,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"6344"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"18c8-FSSPfY/0OzQyqrJCmE9QFaTaq50\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":6344,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"15248f7d8ff43b3432aab242984f5015a4daab9d.json"},"headersSize":985,"bodySize":6344,"redirectURL":"","_transferSize":7329},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.143,"receive":1.241},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":10187.396,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.119Z","time":6889.537109375,"request":{"method":"GET","url":"ws://localhost:5174/_next/webpack-hmr","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"44Qt8evdLn47/N2j5wyyHQ=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[],"headersSize":483,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Sec-WebSocket-Accept","value":"OEdzwLN7WaQ13NmxlU4qGPtoJs8="},{"name":"Connection","value":"Upgrade"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"c8c379301af388ba8fd91d5a4c7bba3e.jsonl"},"headersSize":129,"bodySize":-1,"redirectURL":"","_transferSize":291},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2716.751,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:23.175Z","time":1.9169921875,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"iM+6iBYwfI41duHbxkmAhQ=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Sec-WebSocket-Accept","value":"M2fHYZDmxKZlpyO6OCMJdlyfa5w="},{"name":"Connection","value":"Upgrade"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Vary","value":"Origin"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"99f7f677caaf2988451bce5db3716b1f.jsonl"},"headersSize":235,"bodySize":-1,"redirectURL":"","_transferSize":410},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":2767.611,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:30.583Z","time":50.402,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_lib_generate-voucher_ts.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":602,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"23425a-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8"},"headersSize":371,"bodySize":653430,"redirectURL":"","_transferSize":653801},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.819,"receive":48.583},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":10187.357,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@b5951353a103748dafd971e9e44eaaca","startedDateTime":"2026-07-21T10:44:30.583Z","time":50.402,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_lib_generate-voucher_ts.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":602,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"23425a-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":653430,"redirectURL":"","_transferSize":653801},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.819,"receive":48.583},"_frameref":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","_monotonicTime":10187.357,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} diff --git a/test-results/.playwright-artifacts-0/traces/622a5a825d296d929eb3-c770b59a0cf9ffac4690.trace b/test-results/.playwright-artifacts-0/traces/622a5a825d296d929eb3-c770b59a0cf9ffac4690.trace new file mode 100644 index 000000000..4c9a3bf08 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/622a5a825d296d929eb3-c770b59a0cf9ffac4690.trace @@ -0,0 +1,923 @@ +{"version":8,"type":"context-options","origin":"library","browserName":"chromium","playwrightVersion":"1.61.1","options":{"noDefaultViewport":false,"viewport":{"width":1280,"height":720},"ignoreHTTPSErrors":false,"javaScriptEnabled":true,"bypassCSP":false,"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36","locale":"en-US","offline":false,"deviceScaleFactor":1,"isMobile":false,"hasTouch":false,"colorScheme":"light","acceptDownloads":"accept","baseURL":"http://localhost:5174","serviceWorkers":"allow","selectorEngines":[],"testIdAttributeName":"data-testid","storageState":{"cookies":[],"origins":[{"origin":"http://localhost:5174","localStorage":[{"name":"auth_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"auth_user","value":"{\"iamUserId\":\"11111111-0000-4000-8000-000000000001\",\"passengerId\":\"11111111-0000-4000-8000-000000000001\",\"email\":\"test.passenger@edr.local\",\"phone\":null,\"fullName\":\"Test Passenger\",\"nationality\":null,\"faydaVerified\":false,\"preferredCurrency\":\"USD\",\"createdAt\":\"2026-07-21T10:44:20.904Z\",\"passenger\":{\"id\":\"11111111-0000-4000-8000-000000000001\",\"preferredLanguage\":null,\"loyalty\":{\"tier\":\"BRONZE\",\"pointsBalance\":500,\"lifetimePoints\":0},\"wallet\":{\"balanceMinor\":100000000,\"currency\":\"ETB\"}}}"}]}]}},"platform":"darwin","wallTime":1784630662563,"monotonicTime":2137.083,"sdkLanguage":"javascript","testIdAttributeName":"data-testid","contextId":"browser-context@c2df79e3e68be29e01283620c0b88e81","title":"portal/ua1.spec.ts:15 › UA-1: one-way WALLET booking, price cross-check holds end to end"} +{"type":"before","callId":"call@6","startTime":2139.121,"class":"BrowserContext","method":"newPage","params":{},"stepId":"pw:api@33"} +{"type":"event","time":2174.265,"class":"BrowserContext","method":"page","params":{"pageId":"page@b5951353a103748dafd971e9e44eaaca"}} +{"type":"after","callId":"call@6","endTime":2174.317,"result":{"page":""}} +{"type":"before","callId":"call@8","startTime":2179.826,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"bb8d589a6a3bb7395d673731e5864495","phase":"before","event":"response"},"stepId":"pw:api@34","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"before","callId":"call@11","startTime":2179.979,"class":"Frame","method":"goto","params":{"url":"/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","timeout":0,"waitUntil":"load"},"stepId":"pw:api@35","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@11"} +{"type":"frame-snapshot","snapshot":{"callId":"call@11","snapshotName":"before@call@11","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"about:blank","html":["HTML",{},["HEAD",{},["BASE",{"href":"about:blank"}]],["BODY"]],"viewport":{"width":1280,"height":720},"timestamp":2181.45,"wallTime":1784630662607,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@11","time":2182.084,"message":"navigating to \"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN\", waiting until \"load\""} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662609.jpeg","width":1280,"height":720,"timestamp":2182.879,"frameSwapWallTime":1784630662607.595} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662643.jpeg","width":1280,"height":720,"timestamp":2216.951,"frameSwapWallTime":1784630662642.0889} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662668.jpeg","width":1280,"height":720,"timestamp":2242.121,"frameSwapWallTime":1784630662666.551} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662680.jpeg","width":1280,"height":720,"timestamp":2253.464,"frameSwapWallTime":1784630662678.278} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662690.jpeg","width":1280,"height":720,"timestamp":2263.6,"frameSwapWallTime":1784630662688.2852} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662699.jpeg","width":1280,"height":720,"timestamp":2273.254,"frameSwapWallTime":1784630662698.131} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662709.jpeg","width":1280,"height":720,"timestamp":2282.773,"frameSwapWallTime":1784630662707.5642} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662753.jpeg","width":1280,"height":720,"timestamp":2327.293,"frameSwapWallTime":1784630662716.961} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662754.jpeg","width":1280,"height":720,"timestamp":2327.514,"frameSwapWallTime":1784630662745.569} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662754.jpeg","width":1280,"height":720,"timestamp":2327.582,"frameSwapWallTime":1784630662745.943} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662764.jpeg","width":1280,"height":720,"timestamp":2337.62,"frameSwapWallTime":1784630662762.44} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662781.jpeg","width":1280,"height":720,"timestamp":2354.467,"frameSwapWallTime":1784630662779.295} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662790.jpeg","width":1280,"height":720,"timestamp":2363.769,"frameSwapWallTime":1784630662788.6099} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662834.jpeg","width":1280,"height":720,"timestamp":2408.035,"frameSwapWallTime":1784630662825.997} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662834.jpeg","width":1280,"height":720,"timestamp":2408.096,"frameSwapWallTime":1784630662826.503} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662834.jpeg","width":1280,"height":720,"timestamp":2408.143,"frameSwapWallTime":1784630662826.8499} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662845.jpeg","width":1280,"height":720,"timestamp":2418.431,"frameSwapWallTime":1784630662843.224} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662861.jpeg","width":1280,"height":720,"timestamp":2435.137,"frameSwapWallTime":1784630662859.8882} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662871.jpeg","width":1280,"height":720,"timestamp":2444.509,"frameSwapWallTime":1784630662869.261} +{"type":"console","messageType":"info","text":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold","args":[{"preview":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools","value":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools"},{"preview":"font-weight:bold","value":"font-weight:bold"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":38559,"columnNumber":16},"time":2445.298,"pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662880.jpeg","width":1280,"height":720,"timestamp":2453.952,"frameSwapWallTime":1784630662878.758} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662889.jpeg","width":1280,"height":720,"timestamp":2463.301,"frameSwapWallTime":1784630662888.125} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662906.jpeg","width":1280,"height":720,"timestamp":2480.194,"frameSwapWallTime":1784630662904.917} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662915.jpeg","width":1280,"height":720,"timestamp":2489.185,"frameSwapWallTime":1784630662914.0679} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662925.jpeg","width":1280,"height":720,"timestamp":2498.629,"frameSwapWallTime":1784630662923.403} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662934.jpeg","width":1280,"height":720,"timestamp":2507.585,"frameSwapWallTime":1784630662932.3499} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662948.jpeg","width":1280,"height":720,"timestamp":2522.208,"frameSwapWallTime":1784630662946.949} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662958.jpeg","width":1280,"height":720,"timestamp":2531.571,"frameSwapWallTime":1784630662956.343} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662967.jpeg","width":1280,"height":720,"timestamp":2540.977,"frameSwapWallTime":1784630662965.8179} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662976.jpeg","width":1280,"height":720,"timestamp":2550.004,"frameSwapWallTime":1784630662974.872} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630662993.jpeg","width":1280,"height":720,"timestamp":2567.205,"frameSwapWallTime":1784630662991.907} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663002.jpeg","width":1280,"height":720,"timestamp":2576.13,"frameSwapWallTime":1784630663000.966} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663012.jpeg","width":1280,"height":720,"timestamp":2585.353,"frameSwapWallTime":1784630663010.136} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663141.jpeg","width":1280,"height":720,"timestamp":2714.548,"frameSwapWallTime":1784630663023.406} +{"type":"after","callId":"call@11","endTime":2714.972,"result":{"response":""},"afterSnapshot":"after@call@11"} +{"type":"console","messageType":"error","text":"Warning: Prop `%s` did not match. Server: %s Client: %s%s nonce \"\" \"MDM1ZWQxMWQtYmMwMS00MjRjLTk1NjctNDcyZDBkYWNlZWFm\" \n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","args":[{"preview":"Warning: Prop `%s` did not match. Server: %s Client: %s%s","value":"Warning: Prop `%s` did not match. Server: %s Client: %s%s"},{"preview":"nonce","value":"nonce"},{"preview":"\"\"","value":"\"\""},{"preview":"\"MDM1ZWQxMWQtYmMwMS00MjRjLTk1NjctNDcyZDBkYWNlZWFm\"","value":"\"MDM1ZWQxMWQtYmMwMS00MjRjLTk1NjctNDcyZDBkYWNlZWFm\""},{"preview":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","value":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js","lineNumber":32,"columnNumber":21},"time":2715.268,"pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663142.jpeg","width":1280,"height":720,"timestamp":2715.834,"frameSwapWallTime":1784630663114.551} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663142.jpeg","width":1280,"height":720,"timestamp":2715.912,"frameSwapWallTime":1784630663115.696} +{"type":"console","messageType":"warning","text":"WebSocket connection to 'ws://localhost:4000/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.","args":[],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/engine.io-client@6.6.5/node_modules/engine.io-client/build/esm/transports/websocket.js","lineNumber":89,"columnNumber":0},"time":2717.554,"pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"after","callId":"call@8","endTime":2718.546} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663145.jpeg","width":1280,"height":720,"timestamp":2718.967,"frameSwapWallTime":1784630663143.669} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663153.jpeg","width":1280,"height":720,"timestamp":2726.916,"frameSwapWallTime":1784630663151.396} +{"type":"frame-snapshot","snapshot":{"callId":"call@11","snapshotName":"after@call@11","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},["HEAD",{},["BASE",{"href":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"}],["META",{"charset":"utf-8"}],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["LINK",{"rel":"stylesheet","href":"/_next/static/css/app/layout.css?v=1784630662616","data-precedence":"next_static/css/app/layout.css"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},["A",{"class":"flex items-center px-5 h-20 flex-shrink-0 hover:opacity-80 transition-opacity","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-16 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-house w-5 h-5","aria-hidden":"true"},["path",{"d":"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{"d":"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],"Home"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/booking/lookup"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-ticket w-5 h-5","aria-hidden":"true"},["path",{"d":"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{"d":"M13 5v2"}],["path",{"d":"M13 17v2"}],["path",{"d":"M13 11v2"}]],"My Bookings"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/contact"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-phone w-5 h-5","aria-hidden":"true"},["path",{"d":"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],"Contact"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/help"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-question-mark w-5 h-5","aria-hidden":"true"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{"d":"M12 17h.01"}]],"Help"],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},["P",{"class":"px-3 pb-2 text-xs font-semibold uppercase tracking-wide text-gray-200/80"},"Your booking"],["OL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},"Search"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},"2"],["SPAN",{"class":"text-sm text-white font-semibold"},"Results"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"3"],["SPAN",{"class":"text-sm text-white/50"},"Passengers"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"4"],["SPAN",{"class":"text-sm text-white/50"},"Seats"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"5"],["SPAN",{"class":"text-sm text-white/50"},"Review"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"6"],["SPAN",{"class":"text-sm text-white/50"},"Payment"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"7"],["SPAN",{"class":"text-sm text-white/50"},"Done"]]]]],["DIV",{"class":"flex-shrink-0 border-t border-white/15 p-3 space-y-1"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium text-gray-100 hover:bg-white/10 hover:text-white transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-moon w-5 h-5","aria-hidden":"true"},["path",{"d":"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],"Dark mode"],["DIV",{"class":"relative"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2 rounded-lg hover:bg-white/10 transition-colors"},["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full bg-white text-[rgb(20_113_76)] font-semibold text-sm"},"T"],["SPAN",{"class":"flex-1 text-left text-sm font-medium text-white truncate"},"Test Passenger"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-200 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]]]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},["DIV",{"class":"lg:hidden relative bg-[rgb(20_113_76)] dark:bg-gray-900 border-b border-[rgb(16_89_60)] dark:border-gray-800 px-4 h-16 flex items-center flex-shrink-0"},["A",{"class":"flex items-center hover:opacity-80 transition-opacity","aria-label":"Go to home","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-14 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["DIV",{"class":"ml-auto"},["BUTTON",{"class":"p-2 rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors","title":"Current theme: Light. Click to cycle."},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-sun w-5 h-5"},["circle",{"cx":"12","cy":"12","r":"4"}],["path",{"d":"M12 2v2"}],["path",{"d":"M12 20v2"}],["path",{"d":"m4.93 4.93 1.41 1.41"}],["path",{"d":"m17.66 17.66 1.41 1.41"}],["path",{"d":"M2 12h2"}],["path",{"d":"M20 12h2"}],["path",{"d":"m6.34 17.66-1.41 1.41"}],["path",{"d":"m19.07 4.93-1.41 1.41"}]]]]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 invisible"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},"Search"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},"2"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},"Results"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"3"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Passengers"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"4"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Seats"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"5"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Review"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"6"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Payment"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"7"]],["DIV",{"class":"flex-1 h-0.5 invisible"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Done"]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"mb-8"},["BUTTON",{"class":"btn-ghost px-0 py-4 flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Modify search"],["H1",{"class":"section-title"},"Available schedules"],["DIV",{"class":"hidden sm:flex flex-wrap items-center gap-4 text-gray-600 dark:text-gray-400 mt-3"},["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar w-4 h-4"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}]],["SPAN",{},"Thursday, July 23, 2026"]],["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-users w-4 h-4"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["path",{"d":"M22 21v-2a4 4 0 0 0-3-3.87"}],["path",{"d":"M16 3.13a4 4 0 0 1 0 7.75"}]],["SPAN",{},"1"," adult(s), ","0"," ","child(ren)"]]]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg flex items-center justify-center flex-shrink-0"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-5 h-5 text-primary"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]]],["DIV",{},["DIV",{"class":"font-bold text-lg text-gray-900 dark:text-gray-100"},"UI-100"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400"},"UI Test Express"]]],["DIV",{"class":"flex items-center gap-2 md:gap-4"},["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"Jul 23 · Morning"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Alpha"]],["DIV",{"class":"flex-1 min-w-0 flex flex-col items-center"},["DIV",{"class":"flex items-center gap-1 md:gap-2 mb-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]],["SPAN",{},"4h 0m"]],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}]],["DIV",{"class":"flex items-center gap-1 mt-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{},"1"," stops"]]],["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5 flex items-center justify-center gap-1"},["SPAN",{},"Jul 23 · Afternoon"]],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Charlie"]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-1"},"Starting from"],["DIV",{"class":"text-3xl font-bold text-primary"},"ETB 750.00"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 mb-4"},"per adult"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Select"]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-100 dark:border-gray-800 flex flex-wrap gap-2"},["SPAN",{"class":"inline-flex items-center gap-1.5 text-xs font-medium px-2.5 py-1 rounded-full bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 flex-shrink-0"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],"Standard Coach",["SPAN",{"class":"font-semibold"},"48 left"]]]]]]]]]]]]],["NEXT-ROUTE-ANNOUNCER",{"style":"position: absolute;"},["template",{"__playwright_shadow_root_":"open"},["DIV",{"aria-live":"assertive","id":"__next-route-announcer__","role":"alert","style":"position: absolute; border: 0px; height: 1px; margin: -1px; padding: 0px; width: 1px; clip: rect(0px, 0px, 0px, 0px); overflow: hidden; white-space: nowrap; overflow-wrap: normal;"}]]],["DIV",{"class":"fixed bottom-6 right-6 z-40 flex flex-col items-end gap-3"},["BUTTON",{"aria-label":"Open support chat","class":"group relative flex items-center gap-2.5 rounded-full p-2 pr-2 text-white transition-transform duration-150 hover:-translate-y-0.5 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-[3px] focus-visible:outline-primary active:translate-y-0 motion-reduce:transition-none motion-reduce:hover:translate-y-0 sm:pr-5","style":"background: linear-gradient(135deg, rgb(20, 113, 76), rgb(30, 140, 96)); box-shadow: rgba(20, 113, 76, 0.4) 0px 10px 28px;"},["SPAN",{"class":"pointer-events-none absolute -inset-1 animate-pulse rounded-full ring-2 ring-primary/50 motion-reduce:animate-none"}],["SPAN",{"class":"relative grid h-[42px] w-[42px] shrink-0 place-items-center rounded-full bg-white/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"22","height":"22","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-headset"},["path",{"d":"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{"d":"M21 16v2a4 4 0 0 1-4 4h-5"}]]],["SPAN",{"class":"relative hidden text-left leading-tight sm:block"},["SPAN",{"class":"block whitespace-nowrap text-sm font-semibold"},"👋 Need help?"],["SPAN",{"class":"block whitespace-nowrap text-[11px] opacity-85"},"Chat with our team"]]]]]],"viewport":{"width":1280,"height":720},"timestamp":2730.307,"wallTime":1784630663155,"collectionTime":2.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@16","startTime":2731.832,"class":"Response","method":"body","params":{},"stepId":"pw:api@36","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663169.jpeg","width":1280,"height":720,"timestamp":2742.596,"frameSwapWallTime":1784630663167.3591} +{"type":"after","callId":"call@16","endTime":2767.485,"result":{"binary":""}} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663194.jpeg","width":1280,"height":720,"timestamp":2767.734,"frameSwapWallTime":1784630663174.834} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663194.jpeg","width":1280,"height":720,"timestamp":2767.879,"frameSwapWallTime":1784630663190.0898} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663198.jpeg","width":1280,"height":720,"timestamp":2771.929,"frameSwapWallTime":1784630663191.8389} +{"type":"before","callId":"call@18","startTime":2772.101,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"result-select-btn\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@38","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@18"} +{"type":"frame-snapshot","snapshot":{"callId":"call@18","snapshotName":"before@call@18","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":[[1,310]],"viewport":{"width":1280,"height":720},"timestamp":2773.134,"wallTime":1784630663199,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@18","time":2773.627,"message":"waiting for getByTestId('result-select-btn').first()"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663210.jpeg","width":1280,"height":720,"timestamp":2784.046,"frameSwapWallTime":1784630663208.506} +{"type":"log","callId":"call@18","time":2785.252,"message":" locator resolved to "} +{"type":"log","callId":"call@18","time":2785.969,"message":"attempting click action"} +{"type":"log","callId":"call@18","time":2786.139,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663218.jpeg","width":1280,"height":720,"timestamp":2791.468,"frameSwapWallTime":1784630663216.034} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663227.jpeg","width":1280,"height":720,"timestamp":2800.522,"frameSwapWallTime":1784630663225.2158} +{"type":"log","callId":"call@18","time":2804.479,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@18","time":2804.488,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@18","time":2804.757,"message":" done scrolling"} +{"type":"input","callId":"call@18","point":{"x":1141.5,"y":340},"inputSnapshot":"input@call@18"} +{"type":"frame-snapshot","snapshot":{"callId":"call@18","snapshotName":"input@call@18","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[2,29]],["BODY",{"class":"font-sans antialiased"},[[2,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[2,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[2,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[2,264]],[[2,266]],[[2,268]],["BUTTON",{"__playwright_target__":"","data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[2,269]]]]]],[[2,283]]]]]]]]]]]],[[2,296]],[[2,308]]]],"viewport":{"width":1280,"height":720},"timestamp":2806.07,"wallTime":1784630663232,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@18","time":2807.479,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663243.jpeg","width":1280,"height":720,"timestamp":2816.936,"frameSwapWallTime":1784630663241.6648} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663251.jpeg","width":1280,"height":720,"timestamp":2824.99,"frameSwapWallTime":1784630663249.5662} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663260.jpeg","width":1280,"height":720,"timestamp":2833.426,"frameSwapWallTime":1784630663258.1912} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663276.jpeg","width":1280,"height":720,"timestamp":2850.128,"frameSwapWallTime":1784630663274.73} +{"type":"log","callId":"call@18","time":2855.816,"message":" click action done"} +{"type":"log","callId":"call@18","time":2855.832,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@18","time":2856.387,"message":" navigations have finished"} +{"type":"after","callId":"call@18","endTime":2856.448,"afterSnapshot":"after@call@18"} +{"type":"frame-snapshot","snapshot":{"callId":"call@18","snapshotName":"after@call@18","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[3,29]],["BODY",{"class":"font-sans antialiased"},[[3,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[3,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[3,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"fixed inset-0 z-[99] bg-black/50 backdrop-blur-sm"}],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},["DIV",{"class":"flex items-center justify-between px-6 py-5 border-b border-gray-100 dark:border-gray-800 flex-shrink-0"},["DIV",{},["H2",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"Choose Your Coach"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-3.5 h-3.5"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],["SPAN",{"class":"font-medium"},"UI-100"],["SPAN",{"class":"text-gray-400"},"·"],["SPAN",{},"Alpha"," → ","Charlie"]]],["BUTTON",{"type":"button","class":"w-10 h-10 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800 transition-all","aria-label":"Close"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-gray-300 dark:border-gray-600 group-hover:border-primary/50"}],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-gray-100 dark:bg-gray-700 group-hover:bg-primary/10"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-gray-600 dark:text-gray-400 group-hover:text-primary"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]],["DIV",{"class":"flex-1 min-w-0"},["DIV",{"class":"flex items-start justify-between gap-2 mb-2"},["DIV",{},["H3",{"class":"font-bold text-base text-gray-900 dark:text-white leading-tight"},"Standard Coach"]]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"From"],["SPAN",{"class":"text-2xl font-bold tracking-tight text-gray-900 dark:text-white"},"ETB 750.00"]]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-200/60 dark:border-gray-700/60"},["DIV",{"class":"flex items-center justify-between mb-3"},["P",{"class":"text-xs font-bold text-gray-700 dark:text-gray-300 uppercase tracking-wider"},"Class Options"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"48"," seats left"]],["DIV",{"class":"space-y-2.5"},["DIV",{"class":"flex items-center justify-between py-2 px-3 rounded-lg bg-gray-50/80 dark:bg-gray-800/40"},["DIV",{"class":"flex items-center gap-2.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 text-gray-500 dark:text-gray-400"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],["DIV",{"class":"flex flex-col"},["SPAN",{"class":"text-sm font-medium text-gray-700 dark:text-gray-300"},"Economy Regular"],["SPAN",{"class":"text-[11px] font-medium text-gray-400 dark:text-gray-500"},"48 seats left"]]],["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-base font-bold tabular-nums text-gray-900 dark:text-white"},"750.00"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium ml-1"},"ETB"]]]]],["P",{"class":"mt-4 pt-3 border-t border-gray-200/60 dark:border-gray-700/60 text-xs text-gray-400 dark:text-gray-500 italic text-center"},"Click to select this coach"]]]]]],["STYLE",{},"\n @keyframes drawer-slide-in{from{transform:translateX(100%)}to{transform:translateX(0)}}\n @keyframes fade-in-up{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}\n @keyframes scale-in{from{transform:scale(0)}to{transform:scale(1)}}\n "],[[3,218]],[[1,6]]]]]]]]],[[3,296]],[[3,308]]]],"viewport":{"width":1280,"height":720},"timestamp":2858.034,"wallTime":1784630663284,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663285.jpeg","width":1280,"height":720,"timestamp":2859.022,"frameSwapWallTime":1784630663282.747} +{"type":"before","callId":"call@20","startTime":2859.122,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"coach-option\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@39","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@20"} +{"type":"frame-snapshot","snapshot":{"callId":"call@20","snapshotName":"before@call@20","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[4,29]],["BODY",{"class":"font-sans antialiased"},[[4,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[4,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,0]],[[1,76]],[[1,78]],[[4,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[4,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[4,264]],[[4,266]],[[4,268]],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[4,269]]]]]],[[4,283]]]]]]]]]]]],[[4,296]],[[4,308]]]],"viewport":{"width":1280,"height":720},"timestamp":2859.877,"wallTime":1784630663286,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@20","time":2860.036,"message":"waiting for getByTestId('coach-option').first()"} +{"type":"log","callId":"call@20","time":2861.563,"message":" locator resolved to
"} +{"type":"log","callId":"call@20","time":2862.041,"message":"attempting click action"} +{"type":"log","callId":"call@20","time":2862.105,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@20","time":2881.599,"message":" element is not stable"} +{"type":"log","callId":"call@20","time":2881.614,"message":"retrying click action"} +{"type":"log","callId":"call@20","time":2881.664,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663309.jpeg","width":1280,"height":720,"timestamp":2882.357,"frameSwapWallTime":1784630663307.373} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663330.jpeg","width":1280,"height":720,"timestamp":2903.919,"frameSwapWallTime":1784630663328.752} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663350.jpeg","width":1280,"height":720,"timestamp":2923.414,"frameSwapWallTime":1784630663348.337} +{"type":"log","callId":"call@20","time":2943.193,"message":" element is not stable"} +{"type":"log","callId":"call@20","time":2943.212,"message":"retrying click action"} +{"type":"log","callId":"call@20","time":2943.214,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663370.jpeg","width":1280,"height":720,"timestamp":2944.34,"frameSwapWallTime":1784630663369.135} +{"type":"log","callId":"call@20","time":2964.954,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663392.jpeg","width":1280,"height":720,"timestamp":2966.156,"frameSwapWallTime":1784630663390.9978} +{"type":"log","callId":"call@20","time":2987.861,"message":" element is not stable"} +{"type":"log","callId":"call@20","time":2987.876,"message":"retrying click action"} +{"type":"log","callId":"call@20","time":2987.877,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663415.jpeg","width":1280,"height":720,"timestamp":2988.625,"frameSwapWallTime":1784630663413.7559} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663438.jpeg","width":1280,"height":720,"timestamp":3011.898,"frameSwapWallTime":1784630663436.71} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663460.jpeg","width":1280,"height":720,"timestamp":3034.232,"frameSwapWallTime":1784630663459.177} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663482.jpeg","width":1280,"height":720,"timestamp":3056.271,"frameSwapWallTime":1784630663481.2168} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663504.jpeg","width":1280,"height":720,"timestamp":3078.155,"frameSwapWallTime":1784630663503.073} +{"type":"log","callId":"call@20","time":3089.922,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663528.jpeg","width":1280,"height":720,"timestamp":3101.957,"frameSwapWallTime":1784630663525.135} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663549.jpeg","width":1280,"height":720,"timestamp":3122.767,"frameSwapWallTime":1784630663547.724} +{"type":"log","callId":"call@20","time":3143.462,"message":" element is not stable"} +{"type":"log","callId":"call@20","time":3143.477,"message":"retrying click action"} +{"type":"log","callId":"call@20","time":3143.478,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663571.jpeg","width":1280,"height":720,"timestamp":3144.413,"frameSwapWallTime":1784630663569.457} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663592.jpeg","width":1280,"height":720,"timestamp":3166.318,"frameSwapWallTime":1784630663591.168} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663614.jpeg","width":1280,"height":720,"timestamp":3187.667,"frameSwapWallTime":1784630663612.659} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663633.jpeg","width":1280,"height":720,"timestamp":3206.668,"frameSwapWallTime":1784630663631.5999} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663652.jpeg","width":1280,"height":720,"timestamp":3226.13,"frameSwapWallTime":1784630663651.044} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663671.jpeg","width":1280,"height":720,"timestamp":3245.085,"frameSwapWallTime":1784630663669.99} +{"type":"log","callId":"call@20","time":3245.34,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663690.jpeg","width":1280,"height":720,"timestamp":3263.779,"frameSwapWallTime":1784630663688.8298} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663709.jpeg","width":1280,"height":720,"timestamp":3282.908,"frameSwapWallTime":1784630663707.9028} +{"type":"log","callId":"call@20","time":3300.571,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@20","time":3300.581,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@20","time":3300.788,"message":" done scrolling"} +{"type":"input","callId":"call@20","point":{"x":330.66,"y":246.25},"inputSnapshot":"input@call@20"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663728.jpeg","width":1280,"height":720,"timestamp":3301.726,"frameSwapWallTime":1784630663726.637} +{"type":"frame-snapshot","snapshot":{"callId":"call@20","snapshotName":"input@call@20","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[5,29]],["BODY",{"class":"font-sans antialiased"},[[5,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[5,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[2,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,26]],[[2,72]]]]]],[[2,78]],[[5,218]],[[1,6]]]]]]]]],[[5,296]],[[5,308]]]],"viewport":{"width":1280,"height":720},"timestamp":3302.616,"wallTime":1784630663728,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@20","time":3303.54,"message":" performing click action"} +{"type":"log","callId":"call@20","time":3308.921,"message":" click action done"} +{"type":"log","callId":"call@20","time":3308.93,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@20","time":3309.109,"message":" navigations have finished"} +{"type":"after","callId":"call@20","endTime":3309.154,"afterSnapshot":"after@call@20"} +{"type":"frame-snapshot","snapshot":{"callId":"call@20","snapshotName":"after@call@20","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[6,29]],["BODY",{"class":"font-sans antialiased"},[[6,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[6,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[6,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[3,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[3,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-primary"},["SPAN",{"class":"w-2.5 h-2.5 rounded-full bg-primary animate-scale-in"}]],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-primary/15 dark:bg-primary/25 shadow-inner"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-primary"},[[3,27]],[[3,28]],[[3,29]],[[3,30]]]],["DIV",{"class":"flex-1 min-w-0"},[[3,36]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},[[3,38]],["SPAN",{"class":"text-2xl font-bold tracking-tight text-primary"},[[3,39]]]]]]],[[3,69]],["BUTTON",{"type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},["SPAN",{},"Continue to Passenger Details"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-right w-4 h-4"},["path",{"d":"M5 12h14"}],["path",{"d":"m12 5 7 7-7 7"}]]]]]]]],[[3,78]],[[6,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[6,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[6,264]],[[6,266]],[[6,268]],["P",{"class":"text-xs text-primary font-semibold mb-2"},"Standard Coach"," selected"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Change"]]]],[[6,283]]]]]]]]]]]],[[6,296]],[[6,308]]]],"viewport":{"width":1280,"height":720},"timestamp":3310.058,"wallTime":1784630663736,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@22","startTime":3310.905,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"continue-passenger-details\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@40","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@22"} +{"type":"frame-snapshot","snapshot":{"callId":"call@22","snapshotName":"before@call@22","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[7,29]],["BODY",{"class":"font-sans antialiased"},[[7,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[7,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[7,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[4,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[1,1]],[[1,15]]]]]],[[4,78]],[[7,218]],[[1,30]]]]]]]]],[[7,296]],[[7,308]]]],"viewport":{"width":1280,"height":720},"timestamp":3311.559,"wallTime":1784630663738,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@22","time":3311.742,"message":"waiting for getByTestId('continue-passenger-details').first()"} +{"type":"log","callId":"call@22","time":3312.589,"message":" locator resolved to "} +{"type":"log","callId":"call@22","time":3312.844,"message":"attempting click action"} +{"type":"log","callId":"call@22","time":3312.86,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663748.jpeg","width":1280,"height":720,"timestamp":3321.422,"frameSwapWallTime":1784630663746.492} +{"type":"log","callId":"call@22","time":3340.62,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@22","time":3340.636,"message":" scrolling into view if needed"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663767.jpeg","width":1280,"height":720,"timestamp":3340.7,"frameSwapWallTime":1784630663765.2358} +{"type":"log","callId":"call@22","time":3340.906,"message":" done scrolling"} +{"type":"input","callId":"call@22","point":{"x":330.66,"y":346.5},"inputSnapshot":"input@call@22"} +{"type":"frame-snapshot","snapshot":{"callId":"call@22","snapshotName":"input@call@22","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[8,29]],["BODY",{"class":"font-sans antialiased"},[[8,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[8,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[8,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[5,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,1]],["DIV",{"class":"flex flex-col"},[[2,8]],[[5,69]],["BUTTON",{"__playwright_target__":"","type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},[[2,10]],[[2,13]]]]]]]],[[5,78]],[[8,218]],[[2,30]]]]]]]]],[[8,296]],[[8,308]]]],"viewport":{"width":1280,"height":720},"timestamp":3342.054,"wallTime":1784630663768,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@22","time":3342.826,"message":" performing click action"} +{"type":"log","callId":"call@22","time":3348.572,"message":" click action done"} +{"type":"log","callId":"call@22","time":3348.58,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@22","time":3348.885,"message":" navigations have finished"} +{"type":"after","callId":"call@22","endTime":3348.973,"afterSnapshot":"after@call@22"} +{"type":"frame-snapshot","snapshot":{"callId":"call@22","snapshotName":"after@call@22","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":[[1,14]],"viewport":{"width":1280,"height":720},"timestamp":3349.804,"wallTime":1784630663776,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@24","startTime":3350.897,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"0e854feab0409ad648af97704792e0e9","phase":"before","event":""},"stepId":"pw:api@41","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"log","callId":"call@24","time":3350.938,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663786.jpeg","width":1280,"height":720,"timestamp":3360.301,"frameSwapWallTime":1784630663785.366} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663807.jpeg","width":1280,"height":720,"timestamp":3380.522,"frameSwapWallTime":1784630663805.397} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663826.jpeg","width":1280,"height":720,"timestamp":3399.57,"frameSwapWallTime":1784630663824.504} +{"type":"log","callId":"call@24","time":3431.788,"message":" navigated to \"http://localhost:5174/booking/auth-check\""} +{"type":"after","callId":"call@24","endTime":3431.801} +{"type":"before","callId":"call@29","startTime":3431.858,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"852b6a09de830d195d2bfa9b017a6a43","phase":"before","event":""},"stepId":"pw:api@42","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"log","callId":"call@29","time":3431.882,"message":"waiting for navigation until \"load\""} +{"type":"before","callId":"call@32","startTime":3431.901,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue as guest/i]","strict":true,"timeout":15000},"stepId":"pw:api@43","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@32"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663858.jpeg","width":1280,"height":720,"timestamp":3432.177,"frameSwapWallTime":1784630663849.158} +{"type":"frame-snapshot","snapshot":{"callId":"call@32","snapshotName":"before@call@32","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/auth-check","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[10,0]],[[10,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[10,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[10,36]],[[10,43]],[[10,47]],[[10,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[10,55]],["OL",{"class":"space-y-1"},[[10,61]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[10,64]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[10,67]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[10,69]]]],[[10,76]],[[10,81]],[[10,86]],[[10,91]]]]],[[10,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[10,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[10,132]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[10,139]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[10,142]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[10,143]]]],[[10,146]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[10,148]]]],[[10,159]],[[10,168]],[[10,177]],[[10,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center px-4"},["DIV",{"class":"w-full max-w-sm"},["H1",{"class":"text-2xl font-bold text-center text-gray-900 dark:text-gray-100 mb-1"},"Continue your booking"],["P",{"class":"text-sm text-center text-gray-500 dark:text-gray-400 mb-8"},"Choose how you'd like to proceed"],["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"relative"},["BUTTON",{"class":"w-full flex items-center justify-center gap-2.5 px-5 py-3.5 bg-primary hover:bg-primary/90 active:scale-[0.98] text-white font-semibold rounded-xl transition-all shadow-md shadow-primary/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-user-plus w-5 h-5 flex-shrink-0"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["line",{"x1":"19","x2":"19","y1":"8","y2":"14"}],["line",{"x1":"22","x2":"16","y1":"11","y2":"11"}]],"Continue as guest"],["DIV",{"role":"tooltip","class":"absolute bottom-[calc(100%+8px)] left-1/2 -translate-x-1/2 w-52 bg-gray-900 dark:bg-gray-700 text-white text-xs rounded-lg px-3 py-2.5 shadow-xl pointer-events-none transition-all duration-150 z-50 opacity-0 translate-y-1"},["UL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"No account required"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Quick checkout"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Create account later (optional)"]],["DIV",{"class":"absolute top-full left-1/2 -translate-x-1/2 border-4 border-transparent border-t-gray-900 dark:border-t-gray-700"}]]]],["DIV",{"class":"mt-8 text-center"},["BUTTON",{"class":"inline-flex items-center gap-1.5 text-sm text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back to results"]]]]]]]],[[10,296]],[[10,308]]]],"viewport":{"width":1280,"height":720},"timestamp":3433.617,"wallTime":1784630663859,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@32","time":3433.875,"message":"waiting for getByRole('button', { name: /continue as guest/i })"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663865.jpeg","width":1280,"height":720,"timestamp":3438.392,"frameSwapWallTime":1784630663863.1958} +{"type":"log","callId":"call@32","time":3440.815,"message":" locator resolved to "} +{"type":"log","callId":"call@32","time":3441.678,"message":"attempting click action"} +{"type":"log","callId":"call@32","time":3441.701,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@32","time":3457.71,"message":" element is not stable"} +{"type":"log","callId":"call@32","time":3457.722,"message":"retrying click action"} +{"type":"log","callId":"call@32","time":3457.756,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663885.jpeg","width":1280,"height":720,"timestamp":3458.719,"frameSwapWallTime":1784630663883.573} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663889.jpeg","width":1280,"height":720,"timestamp":3462.442,"frameSwapWallTime":1784630663887.452} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663894.jpeg","width":1280,"height":720,"timestamp":3467.862,"frameSwapWallTime":1784630663892.8872} +{"type":"log","callId":"call@32","time":3470.589,"message":" element is not stable"} +{"type":"log","callId":"call@32","time":3470.596,"message":"retrying click action"} +{"type":"log","callId":"call@32","time":3470.598,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663902.jpeg","width":1280,"height":720,"timestamp":3475.861,"frameSwapWallTime":1784630663900.875} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663911.jpeg","width":1280,"height":720,"timestamp":3484.595,"frameSwapWallTime":1784630663909.487} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663927.jpeg","width":1280,"height":720,"timestamp":3500.83,"frameSwapWallTime":1784630663925.8298} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663935.jpeg","width":1280,"height":720,"timestamp":3509.309,"frameSwapWallTime":1784630663934.212} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663944.jpeg","width":1280,"height":720,"timestamp":3517.849,"frameSwapWallTime":1784630663942.752} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663952.jpeg","width":1280,"height":720,"timestamp":3525.93,"frameSwapWallTime":1784630663950.8518} +{"type":"log","callId":"call@32","time":3570.918,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663998.jpeg","width":1280,"height":720,"timestamp":3571.692,"frameSwapWallTime":1784630663989.606} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663998.jpeg","width":1280,"height":720,"timestamp":3571.75,"frameSwapWallTime":1784630663990.49} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630663998.jpeg","width":1280,"height":720,"timestamp":3571.784,"frameSwapWallTime":1784630663991.0469} +{"type":"log","callId":"call@29","time":3575.242,"message":" navigated to \"http://localhost:5174/booking/passengers\""} +{"type":"after","callId":"call@29","endTime":3575.256} +{"type":"before","callId":"call@36","startTime":3575.333,"title":"Wait for load state \"load\"","class":"Page","method":"__waitInfo__","params":{"waitId":"f8f6706cc64e92c5500e2507628b6f22","phase":"before","event":""},"stepId":"pw:api@44","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"log","callId":"call@36","time":3575.356,"message":" not waiting, \"load\" event already fired"} +{"type":"after","callId":"call@36","endTime":3575.363} +{"type":"before","callId":"call@40","startTime":3575.417,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@45","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@40"} +{"type":"before","callId":"call@42","startTime":3575.659,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@46","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@42"} +{"type":"frame-snapshot","snapshot":{"callId":"call@40","snapshotName":"before@call@40","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[11,0]],[[11,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[11,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Passenger details"],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","1"," ","(Primary)"," - Adult",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Ethiopian",")"]],["DIV",{"class":"text-center py-8"},["P",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-4"},"Fayda verification is currently unavailable"],["BUTTON",{"type":"button","class":"btn-primary"},"Enter details manually"]]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},"Continue to seat selection"]]]]]]]]]],[[11,296]],[[11,308]]]],"viewport":{"width":1280,"height":720},"timestamp":3576.417,"wallTime":1784630664002,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@40","time":3576.804,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@42","snapshotName":"before@call@42","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,62]],"viewport":{"width":1280,"height":720},"timestamp":3577.237,"wallTime":1784630664003,"collectionTime":0.19999999925494194,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@42","time":3577.448,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664004.jpeg","width":1280,"height":720,"timestamp":3577.854,"frameSwapWallTime":1784630664001.761} +{"type":"log","callId":"call@42","time":3579.931,"message":" locator resolved to visible "} +{"type":"after","callId":"call@42","endTime":3579.968,"result":{},"afterSnapshot":"after@call@42"} +{"type":"frame-snapshot","snapshot":{"callId":"call@42","snapshotName":"after@call@42","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,62]],"viewport":{"width":1280,"height":720},"timestamp":3580.526,"wallTime":1784630664007,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@44","startTime":3581.268,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true},"stepId":"pw:api@47","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@44"} +{"type":"frame-snapshot","snapshot":{"callId":"call@44","snapshotName":"before@call@44","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,62]],"viewport":{"width":1280,"height":720},"timestamp":3581.851,"wallTime":1784630664008,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@44","time":3582.229,"message":" checking visibility of locator('input[name=\"passengers.0.name\"]')"} +{"type":"after","callId":"call@44","endTime":3582.846,"result":{"value":false},"afterSnapshot":"after@call@44"} +{"type":"frame-snapshot","snapshot":{"callId":"call@44","snapshotName":"after@call@44","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,62]],"viewport":{"width":1280,"height":720},"timestamp":3583.667,"wallTime":1784630664009,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@46","startTime":3584.371,"class":"Frame","method":"isVisible","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true},"stepId":"pw:api@48","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@46"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664011.jpeg","width":1280,"height":720,"timestamp":3584.911,"frameSwapWallTime":1784630664009.896} +{"type":"frame-snapshot","snapshot":{"callId":"call@46","snapshotName":"before@call@46","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,62]],"viewport":{"width":1280,"height":720},"timestamp":3585.014,"wallTime":1784630664011,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@46","time":3585.165,"message":" checking visibility of locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"after","callId":"call@46","endTime":3586.293,"result":{"value":true},"afterSnapshot":"after@call@46"} +{"type":"log","callId":"call@32","time":3586.675,"message":"element was detached from the DOM, retrying"} +{"type":"frame-snapshot","snapshot":{"callId":"call@46","snapshotName":"after@call@46","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,62]],"viewport":{"width":1280,"height":720},"timestamp":3587.543,"wallTime":1784630664014,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@48","startTime":3588.234,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@49","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@48"} +{"type":"frame-snapshot","snapshot":{"callId":"call@48","snapshotName":"before@call@48","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,62]],"viewport":{"width":1280,"height":720},"timestamp":3588.761,"wallTime":1784630664015,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@48","time":3588.933,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"log","callId":"call@48","time":3590.117,"message":" locator resolved to "} +{"type":"log","callId":"call@48","time":3590.443,"message":"attempting click action"} +{"type":"log","callId":"call@48","time":3590.461,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664020.jpeg","width":1280,"height":720,"timestamp":3593.926,"frameSwapWallTime":1784630664018.792} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664029.jpeg","width":1280,"height":720,"timestamp":3602.514,"frameSwapWallTime":1784630664027.562} +{"type":"log","callId":"call@48","time":3603.054,"message":" element is not stable"} +{"type":"log","callId":"call@48","time":3603.059,"message":"retrying click action"} +{"type":"log","callId":"call@48","time":3603.076,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664045.jpeg","width":1280,"height":720,"timestamp":3619.123,"frameSwapWallTime":1784630664044.024} +{"type":"log","callId":"call@48","time":3619.813,"message":" element is not stable"} +{"type":"log","callId":"call@48","time":3619.817,"message":"retrying click action"} +{"type":"log","callId":"call@48","time":3619.819,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664052.jpeg","width":1280,"height":720,"timestamp":3626.342,"frameSwapWallTime":1784630664051.1938} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664062.jpeg","width":1280,"height":720,"timestamp":3635.581,"frameSwapWallTime":1784630664060.54} +{"type":"log","callId":"call@48","time":3641.689,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664079.jpeg","width":1280,"height":720,"timestamp":3652.557,"frameSwapWallTime":1784630664077.016} +{"type":"log","callId":"call@48","time":3653.659,"message":" element is not stable"} +{"type":"log","callId":"call@48","time":3653.667,"message":"retrying click action"} +{"type":"log","callId":"call@48","time":3653.669,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664086.jpeg","width":1280,"height":720,"timestamp":3660.173,"frameSwapWallTime":1784630664085.109} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664094.jpeg","width":1280,"height":720,"timestamp":3668.099,"frameSwapWallTime":1784630664092.988} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664103.jpeg","width":1280,"height":720,"timestamp":3677.141,"frameSwapWallTime":1784630664102.097} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664120.jpeg","width":1280,"height":720,"timestamp":3694.006,"frameSwapWallTime":1784630664118.787} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664127.jpeg","width":1280,"height":720,"timestamp":3701.236,"frameSwapWallTime":1784630664126.152} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664137.jpeg","width":1280,"height":720,"timestamp":3710.497,"frameSwapWallTime":1784630664135.405} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664153.jpeg","width":1280,"height":720,"timestamp":3727.047,"frameSwapWallTime":1784630664151.98} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664161.jpeg","width":1280,"height":720,"timestamp":3735.326,"frameSwapWallTime":1784630664160.254} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664170.jpeg","width":1280,"height":720,"timestamp":3743.652,"frameSwapWallTime":1784630664168.594} +{"type":"log","callId":"call@48","time":3754.676,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664187.jpeg","width":1280,"height":720,"timestamp":3760.536,"frameSwapWallTime":1784630664185.475} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664195.jpeg","width":1280,"height":720,"timestamp":3768.814,"frameSwapWallTime":1784630664193.476} +{"type":"log","callId":"call@48","time":3770.685,"message":" element is not stable"} +{"type":"log","callId":"call@48","time":3770.693,"message":"retrying click action"} +{"type":"log","callId":"call@48","time":3770.694,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664204.jpeg","width":1280,"height":720,"timestamp":3777.607,"frameSwapWallTime":1784630664202.3599} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664220.jpeg","width":1280,"height":720,"timestamp":3793.881,"frameSwapWallTime":1784630664218.74} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664228.jpeg","width":1280,"height":720,"timestamp":3802.042,"frameSwapWallTime":1784630664226.959} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664237.jpeg","width":1280,"height":720,"timestamp":3810.445,"frameSwapWallTime":1784630664235.386} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664245.jpeg","width":1280,"height":720,"timestamp":3818.554,"frameSwapWallTime":1784630664243.518} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664262.jpeg","width":1280,"height":720,"timestamp":3835.562,"frameSwapWallTime":1784630664260.4092} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664269.jpeg","width":1280,"height":720,"timestamp":3842.929,"frameSwapWallTime":1784630664267.801} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664278.jpeg","width":1280,"height":720,"timestamp":3852.057,"frameSwapWallTime":1784630664277.003} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664296.jpeg","width":1280,"height":720,"timestamp":3869.369,"frameSwapWallTime":1784630664294.231} +{"type":"log","callId":"call@48","time":3871.639,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664303.jpeg","width":1280,"height":720,"timestamp":3876.972,"frameSwapWallTime":1784630664301.873} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664311.jpeg","width":1280,"height":720,"timestamp":3885.326,"frameSwapWallTime":1784630664310.2231} +{"type":"log","callId":"call@48","time":3887.194,"message":" element is not stable"} +{"type":"log","callId":"call@48","time":3887.198,"message":"retrying click action"} +{"type":"log","callId":"call@48","time":3887.199,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664320.jpeg","width":1280,"height":720,"timestamp":3894.078,"frameSwapWallTime":1784630664318.893} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664336.jpeg","width":1280,"height":720,"timestamp":3910.017,"frameSwapWallTime":1784630664334.82} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664343.jpeg","width":1280,"height":720,"timestamp":3917.343,"frameSwapWallTime":1784630664342.177} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664351.jpeg","width":1280,"height":720,"timestamp":3925.007,"frameSwapWallTime":1784630664349.841} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664368.jpeg","width":1280,"height":720,"timestamp":3941.7,"frameSwapWallTime":1784630664366.541} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664376.jpeg","width":1280,"height":720,"timestamp":3949.982,"frameSwapWallTime":1784630664374.887} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664384.jpeg","width":1280,"height":720,"timestamp":3958.135,"frameSwapWallTime":1784630664383.05} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664393.jpeg","width":1280,"height":720,"timestamp":3966.72,"frameSwapWallTime":1784630664391.5679} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664410.jpeg","width":1280,"height":720,"timestamp":3983.402,"frameSwapWallTime":1784630664408.194} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664418.jpeg","width":1280,"height":720,"timestamp":3991.626,"frameSwapWallTime":1784630664416.507} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664426.jpeg","width":1280,"height":720,"timestamp":3999.933,"frameSwapWallTime":1784630664424.829} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664443.jpeg","width":1280,"height":720,"timestamp":4016.702,"frameSwapWallTime":1784630664441.556} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664451.jpeg","width":1280,"height":720,"timestamp":4025.095,"frameSwapWallTime":1784630664449.903} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664459.jpeg","width":1280,"height":720,"timestamp":4033.297,"frameSwapWallTime":1784630664458.195} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664476.jpeg","width":1280,"height":720,"timestamp":4049.939,"frameSwapWallTime":1784630664474.814} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664485.jpeg","width":1280,"height":720,"timestamp":4058.348,"frameSwapWallTime":1784630664483.2302} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664493.jpeg","width":1280,"height":720,"timestamp":4066.587,"frameSwapWallTime":1784630664491.49} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664509.jpeg","width":1280,"height":720,"timestamp":4083.279,"frameSwapWallTime":1784630664508.158} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664518.jpeg","width":1280,"height":720,"timestamp":4091.651,"frameSwapWallTime":1784630664516.533} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664726.jpeg","width":1280,"height":720,"timestamp":4299.781,"frameSwapWallTime":1784630664724.73} +{"type":"log","callId":"call@48","time":4388.376,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@48","time":4404.078,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@48","time":4404.091,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@48","time":4404.804,"message":" done scrolling"} +{"type":"input","callId":"call@48","point":{"x":768,"y":254},"inputSnapshot":"input@call@48"} +{"type":"frame-snapshot","snapshot":{"callId":"call@48","snapshotName":"input@call@48","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[8,62]],"viewport":{"width":1280,"height":720},"timestamp":4405.755,"wallTime":1784630664832,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@48","time":4406.418,"message":" performing click action"} +{"type":"log","callId":"call@48","time":4413.531,"message":" click action done"} +{"type":"log","callId":"call@48","time":4413.541,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@48","time":4414.061,"message":" navigations have finished"} +{"type":"after","callId":"call@48","endTime":4414.119,"afterSnapshot":"after@call@48"} +{"type":"frame-snapshot","snapshot":{"callId":"call@48","snapshotName":"after@call@48","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[9,27]],["BODY",{"class":"font-sans antialiased"},[[10,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[20,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[10,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[9,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[9,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"ETHIOPIAN","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.0.nationality"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Phone Number *"],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},["DIV",{"class":"flex items-center gap-1.5 px-3 py-2.5 bg-gray-50 dark:bg-gray-800 border-r border-gray-300 dark:border-gray-600 select-none flex-shrink-0"},["SPAN",{"class":"text-sm leading-none"},"🇪🇹"],["SPAN",{"class":"text-xs font-semibold text-gray-600 dark:text-gray-300"},"+251"]],["INPUT",{"__playwright_value_":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],["P",{"class":"text-xs text-gray-400 dark:text-gray-500 mt-1"},"Format: ","+251912345678 or 0912345678"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Email (optional)"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"email@example.com","type":"email","name":"passengers.0.email"}]]]]],[[9,52]]]]]]]]]],[[20,296]],[[20,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4415.705,"wallTime":1784630664841,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@50","startTime":4416.603,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@50","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@50"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664843.jpeg","width":1280,"height":720,"timestamp":4416.96,"frameSwapWallTime":1784630664841.786} +{"type":"frame-snapshot","snapshot":{"callId":"call@50","snapshotName":"before@call@50","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,66]],"viewport":{"width":1280,"height":720},"timestamp":4417.37,"wallTime":1784630664843,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@50","time":4417.488,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"log","callId":"call@50","time":4418.572,"message":" locator resolved to visible "} +{"type":"after","callId":"call@50","endTime":4418.595,"result":{},"afterSnapshot":"after@call@50"} +{"type":"frame-snapshot","snapshot":{"callId":"call@50","snapshotName":"after@call@50","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,66]],"viewport":{"width":1280,"height":720},"timestamp":4419.172,"wallTime":1784630664845,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@52","startTime":4419.973,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"value":"Adult 1","timeout":15000},"stepId":"pw:api@51","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@52"} +{"type":"frame-snapshot","snapshot":{"callId":"call@52","snapshotName":"before@call@52","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,66]],"viewport":{"width":1280,"height":720},"timestamp":4420.617,"wallTime":1784630664847,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@52","time":4420.843,"message":"waiting for locator('input[name=\"passengers.0.name\"]')"} +{"type":"log","callId":"call@52","time":4424.708,"message":" locator resolved to "} +{"type":"log","callId":"call@52","time":4426.202,"message":" fill(\"Adult 1\")"} +{"type":"log","callId":"call@52","time":4426.21,"message":"attempting fill action"} +{"type":"input","callId":"call@52","inputSnapshot":"input@call@52"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664853.jpeg","width":1280,"height":720,"timestamp":4426.59,"frameSwapWallTime":1784630664850.922} +{"type":"frame-snapshot","snapshot":{"callId":"call@52","snapshotName":"input@call@52","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[13,27]],["BODY",{"class":"font-sans antialiased"},[[14,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[24,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[14,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[13,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[13,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[4,1]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[4,21]],[[4,31]],[[4,35]],[[4,49]],[[4,53]]]]],[[13,52]]]]]]]]]],[[24,296]],[[24,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4427.011,"wallTime":1784630664853,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@52","time":4427.054,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@52","endTime":4432.148,"afterSnapshot":"after@call@52"} +{"type":"frame-snapshot","snapshot":{"callId":"call@52","snapshotName":"after@call@52","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[14,27]],["BODY",{"class":"font-sans antialiased"},[[15,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[25,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[15,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[14,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[14,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[5,1]],["INPUT",{"__playwright_value_":"Adult 1","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[5,21]],[[5,31]],[[5,35]],[[5,49]],[[5,53]]]]],[[14,52]]]]]]]]]],[[25,296]],[[25,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4433.1,"wallTime":1784630664859,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@54","startTime":4434.146,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.0.gender\"]","strict":true,"options":[{"valueOrLabel":"Male"}],"timeout":15000},"stepId":"pw:api@52","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@54"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664860.jpeg","width":1280,"height":720,"timestamp":4434.331,"frameSwapWallTime":1784630664858.14} +{"type":"frame-snapshot","snapshot":{"callId":"call@54","snapshotName":"before@call@54","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[15,27]],["BODY",{"class":"font-sans antialiased"},[[16,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[26,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[16,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[15,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[15,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[6,1]],["INPUT",{"__playwright_value_":"Adult 1","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[6,21]],[[6,31]],[[6,35]],[[6,49]],[[6,53]]]]],[[15,52]]]]]]]]]],[[26,296]],[[26,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4434.853,"wallTime":1784630664861,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@54","time":4435.056,"message":"waiting for locator('select[name=\"passengers.0.gender\"]')"} +{"type":"log","callId":"call@54","time":4435.838,"message":" locator resolved to "} +{"type":"log","callId":"call@54","time":4436.167,"message":"attempting select option action"} +{"type":"input","callId":"call@54","inputSnapshot":"input@call@54"} +{"type":"frame-snapshot","snapshot":{"callId":"call@54","snapshotName":"input@call@54","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[16,27]],["BODY",{"class":"font-sans antialiased"},[[17,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[27,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[17,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[16,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[16,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[7,21]],["DIV",{},[[7,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},[[7,25]],[[7,27]],[[7,29]]]],[[7,35]],[[7,49]],[[7,53]]]]],[[16,52]]]]]]]]]],[[27,296]],[[27,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4436.827,"wallTime":1784630664863,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@54","time":4436.916,"message":" waiting for element to be visible and enabled"} +{"type":"log","callId":"call@54","time":4439.157,"message":" selected specified option(s)"} +{"type":"after","callId":"call@54","endTime":4439.221,"result":{"values":["Male"]},"afterSnapshot":"after@call@54"} +{"type":"frame-snapshot","snapshot":{"callId":"call@54","snapshotName":"after@call@54","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[17,27]],["BODY",{"class":"font-sans antialiased"},[[18,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[28,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[18,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[17,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[17,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[8,21]],["DIV",{},[[8,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[8,24]]],["OPTION",{"__playwright_selected_":"true","value":"Male"},[[8,26]]],[[8,29]]]],[[8,35]],[[8,49]],[[8,53]]]]],[[17,52]]]]]]]]]],[[28,296]],[[28,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4440.006,"wallTime":1784630664866,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@56","startTime":4440.811,"class":"Frame","method":"fill","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> input[type=\"tel\"] >> nth=0","strict":true,"value":"912345678","timeout":15000},"stepId":"pw:api@53","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@56"} +{"type":"frame-snapshot","snapshot":{"callId":"call@56","snapshotName":"before@call@56","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[18,27]],["BODY",{"class":"font-sans antialiased"},[[19,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[29,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[19,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[18,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[18,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[9,21]],["DIV",{},[[9,23]],["SELECT",{"name":"passengers.0.gender","class":"input-field "},[[1,0]],[[1,1]],[[9,29]]]],[[9,35]],[[9,49]],[[9,53]]]]],[[18,52]]]]]]]]]],[[29,296]],[[29,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4441.855,"wallTime":1784630664868,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@56","time":4442.059,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).locator('input[type=\"tel\"]').first()"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664869.jpeg","width":1280,"height":720,"timestamp":4442.713,"frameSwapWallTime":1784630664867.365} +{"type":"log","callId":"call@56","time":4443.257,"message":" locator resolved to "} +{"type":"log","callId":"call@56","time":4443.514,"message":" fill(\"912345678\")"} +{"type":"log","callId":"call@56","time":4443.519,"message":"attempting fill action"} +{"type":"input","callId":"call@56","inputSnapshot":"input@call@56"} +{"type":"frame-snapshot","snapshot":{"callId":"call@56","snapshotName":"input@call@56","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[19,27]],["BODY",{"class":"font-sans antialiased"},[[20,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[30,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[20,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[19,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[19,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],[[10,21]],[[1,1]],[[10,35]],["DIV",{},[[10,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[10,42]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],[[10,47]]]],[[10,53]]]]],[[19,52]]]]]]]]]],[[30,296]],[[30,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4444.04,"wallTime":1784630664870,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@56","time":4444.106,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@56","endTime":4447.325,"afterSnapshot":"after@call@56"} +{"type":"frame-snapshot","snapshot":{"callId":"call@56","snapshotName":"after@call@56","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[20,27]],["BODY",{"class":"font-sans antialiased"},[[21,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[31,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[21,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[20,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[20,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],[[11,21]],[[2,1]],[[11,35]],["DIV",{},[[11,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[11,42]],["INPUT",{"__playwright_value_":"912345678","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[11,47]]]],[[11,53]]]]],[[20,52]]]]]]]]]],[[31,296]],[[31,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4447.904,"wallTime":1784630664874,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@58","startTime":4448.7,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@54","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@58"} +{"type":"frame-snapshot","snapshot":{"callId":"call@58","snapshotName":"before@call@58","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[21,27]],["BODY",{"class":"font-sans antialiased"},[[22,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[32,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[22,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[21,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[21,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],[[12,21]],[[3,1]],[[12,35]],["DIV",{},[[12,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[12,42]],["INPUT",{"__playwright_value_":"912345678","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[12,47]]]],[[12,53]]]]],[[21,52]]]]]]]]]],[[32,296]],[[32,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4449.172,"wallTime":1784630664875,"collectionTime":0.20000000298023224,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@58","time":4449.325,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"log","callId":"call@58","time":4450.363,"message":" locator resolved to "} +{"type":"log","callId":"call@58","time":4450.634,"message":"attempting click action"} +{"type":"log","callId":"call@58","time":4450.66,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664885.jpeg","width":1280,"height":720,"timestamp":4459.083,"frameSwapWallTime":1784630664883.791} +{"type":"log","callId":"call@58","time":4462.23,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@58","time":4462.236,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@58","time":4462.421,"message":" done scrolling"} +{"type":"input","callId":"call@58","point":{"x":1007.5,"y":210},"inputSnapshot":"input@call@58"} +{"type":"frame-snapshot","snapshot":{"callId":"call@58","snapshotName":"input@call@58","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[22,27]],["BODY",{"class":"font-sans antialiased"},[[23,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[33,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[23,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[22,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[22,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[7,1]],["DIV",{},[[13,5]],["DIV",{},["BUTTON",{"__playwright_target__":"","type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[13,7]],[[13,18]]]]],[[4,1]],[[13,35]],[[1,3]],[[13,53]]]]],[[22,52]]]]]]]]]],[[33,296]],[[33,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4463.387,"wallTime":1784630664889,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@58","time":4463.966,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664894.jpeg","width":1280,"height":720,"timestamp":4467.396,"frameSwapWallTime":1784630664892.13} +{"type":"log","callId":"call@58","time":4473.264,"message":" click action done"} +{"type":"log","callId":"call@58","time":4473.275,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@58","time":4473.901,"message":" navigations have finished"} +{"type":"after","callId":"call@58","endTime":4474.017,"afterSnapshot":"after@call@58"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664902.jpeg","width":1280,"height":720,"timestamp":4475.993,"frameSwapWallTime":1784630664900.437} +{"type":"frame-snapshot","snapshot":{"callId":"call@58","snapshotName":"after@call@58","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[23,27]],["BODY",{"class":"font-sans antialiased"},[[24,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[34,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[24,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[23,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[23,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],["DIV",{},[[14,5]],["DIV",{},[[1,0]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2020"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2019"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2018"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2017"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2016"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2015"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2014"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2013"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2012"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2011"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2010"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2009"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2008"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2007"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2006"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2005"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2004"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2003"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2002"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2001"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2000"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1999"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1998"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1997"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1996"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1995"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1994"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1993"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1992"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1991"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1990"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1989"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1988"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1987"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1986"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1985"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1984"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1983"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1982"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1981"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1980"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1979"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1978"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1977"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1976"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1975"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1974"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1973"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1972"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1971"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1970"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1969"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1968"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1967"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1966"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1965"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1964"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1963"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1962"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1961"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1960"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1959"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1958"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1957"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1956"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1955"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1954"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1953"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1952"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1951"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1950"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1949"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1948"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1947"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1946"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1945"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1944"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1943"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1942"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1941"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1940"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1939"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1938"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1937"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1936"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1935"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1934"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1933"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1932"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1931"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1930"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1929"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1928"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1927"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1926"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1925"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1924"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1923"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1922"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1921"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1920"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1919"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1918"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1917"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1916"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2000"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[5,1]],[[14,35]],[[2,3]],[[14,53]]]]],[[23,52]]]]]]]]]],[[34,296]],[[34,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4476.562,"wallTime":1784630664902,"collectionTime":1.300000000745058,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@60","startTime":4477.501,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@55","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@60"} +{"type":"frame-snapshot","snapshot":{"callId":"call@60","snapshotName":"before@call@60","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[24,27]],["BODY",{"class":"font-sans antialiased"},[[25,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[35,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[25,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[24,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[24,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[9,1]],["DIV",{},[[15,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[15,7]],[[15,18]]],[[1,0]],[[1,341]],[[1,343]]]],[[6,1]],[[15,35]],[[3,3]],[[15,53]]]]],[[24,52]]]]]]]]]],[[35,296]],[[35,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4478.428,"wallTime":1784630664904,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@60","time":4478.579,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@60","time":4480.78,"message":" locator resolved to "} +{"type":"log","callId":"call@60","time":4481.076,"message":"attempting click action"} +{"type":"log","callId":"call@60","time":4481.111,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664920.jpeg","width":1280,"height":720,"timestamp":4493.949,"frameSwapWallTime":1784630664918.612} +{"type":"log","callId":"call@60","time":4494.885,"message":" element is not stable"} +{"type":"log","callId":"call@60","time":4494.893,"message":"retrying click action"} +{"type":"log","callId":"call@60","time":4494.91,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664928.jpeg","width":1280,"height":720,"timestamp":4501.453,"frameSwapWallTime":1784630664926.241} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664937.jpeg","width":1280,"height":720,"timestamp":4511.085,"frameSwapWallTime":1784630664935.739} +{"type":"log","callId":"call@60","time":4511.687,"message":" element is not stable"} +{"type":"log","callId":"call@60","time":4511.692,"message":"retrying click action"} +{"type":"log","callId":"call@60","time":4511.694,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664956.jpeg","width":1280,"height":720,"timestamp":4530.139,"frameSwapWallTime":1784630664954.686} +{"type":"log","callId":"call@60","time":4532.705,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664964.jpeg","width":1280,"height":720,"timestamp":4537.933,"frameSwapWallTime":1784630664962.6821} +{"type":"log","callId":"call@60","time":4545.646,"message":" element is not stable"} +{"type":"log","callId":"call@60","time":4545.659,"message":"retrying click action"} +{"type":"log","callId":"call@60","time":4545.66,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664973.jpeg","width":1280,"height":720,"timestamp":4546.731,"frameSwapWallTime":1784630664971.526} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664989.jpeg","width":1280,"height":720,"timestamp":4563.211,"frameSwapWallTime":1784630664987.866} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630664998.jpeg","width":1280,"height":720,"timestamp":4571.84,"frameSwapWallTime":1784630664996.54} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665007.jpeg","width":1280,"height":720,"timestamp":4580.367,"frameSwapWallTime":1784630665005.079} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665015.jpeg","width":1280,"height":720,"timestamp":4589.271,"frameSwapWallTime":1784630665014.114} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665032.jpeg","width":1280,"height":720,"timestamp":4605.704,"frameSwapWallTime":1784630665030.425} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665040.jpeg","width":1280,"height":720,"timestamp":4614.261,"frameSwapWallTime":1784630665039.072} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665049.jpeg","width":1280,"height":720,"timestamp":4622.72,"frameSwapWallTime":1784630665047.591} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665058.jpeg","width":1280,"height":720,"timestamp":4631.499,"frameSwapWallTime":1784630665056.2961} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665073.jpeg","width":1280,"height":720,"timestamp":4647.118,"frameSwapWallTime":1784630665071.8901} +{"type":"log","callId":"call@60","time":4647.312,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665082.jpeg","width":1280,"height":720,"timestamp":4655.378,"frameSwapWallTime":1784630665080.1748} +{"type":"log","callId":"call@60","time":4662.74,"message":" element is not stable"} +{"type":"log","callId":"call@60","time":4662.745,"message":"retrying click action"} +{"type":"log","callId":"call@60","time":4662.747,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665090.jpeg","width":1280,"height":720,"timestamp":4663.944,"frameSwapWallTime":1784630665088.8218} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665107.jpeg","width":1280,"height":720,"timestamp":4680.659,"frameSwapWallTime":1784630665105.4858} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665116.jpeg","width":1280,"height":720,"timestamp":4689.408,"frameSwapWallTime":1784630665114.199} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665124.jpeg","width":1280,"height":720,"timestamp":4698.316,"frameSwapWallTime":1784630665123.04} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665141.jpeg","width":1280,"height":720,"timestamp":4714.592,"frameSwapWallTime":1784630665139.438} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665150.jpeg","width":1280,"height":720,"timestamp":4723.521,"frameSwapWallTime":1784630665148.336} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665156.jpeg","width":1280,"height":720,"timestamp":4730.061,"frameSwapWallTime":1784630665155.0059} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665170.jpeg","width":1280,"height":720,"timestamp":4743.7,"frameSwapWallTime":1784630665168.601} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665178.jpeg","width":1280,"height":720,"timestamp":4752.1,"frameSwapWallTime":1784630665177.021} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665187.jpeg","width":1280,"height":720,"timestamp":4760.545,"frameSwapWallTime":1784630665185.4539} +{"type":"log","callId":"call@60","time":4763.805,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665196.jpeg","width":1280,"height":720,"timestamp":4769.372,"frameSwapWallTime":1784630665194.176} +{"type":"log","callId":"call@60","time":4779.033,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@60","time":4779.042,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@60","time":4779.184,"message":" done scrolling"} +{"type":"input","callId":"call@60","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@60"} +{"type":"frame-snapshot","snapshot":{"callId":"call@60","snapshotName":"input@call@60","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[25,27]],["BODY",{"class":"font-sans antialiased"},[[26,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[36,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[26,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[25,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[25,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[10,1]],["DIV",{},[[16,5]],["DIV",{},[[1,0]],[[2,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[2,2]],[[2,8]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[2,9]]]],[[2,15]]],[[2,19]],[[2,26]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},[[2,27]],["DIV",{"class":"flex gap-2 h-full"},[[2,93]],[[2,121]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"791","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},[[2,122]],[[2,124]],[[2,126]],[[2,128]],[[2,130]],[[2,132]],[[2,134]],[[2,136]],[[2,138]],[[2,140]],[[2,142]],[[2,144]],[[2,146]],[[2,148]],[[2,150]],[[2,152]],[[2,154]],[[2,156]],[[2,158]],[[2,160]],[[2,162]],[[2,164]],[[2,166]],[[2,168]],[[2,170]],[[2,172]],[[2,174]],[[2,176]],[[2,178]],[[2,180]],[[2,182]],[[2,184]],[[2,186]],[[2,188]],[[2,190]],[[2,192]],[[2,194]],[[2,196]],[[2,198]],[[2,200]],[[2,202]],[[2,204]],[[2,206]],[[2,208]],[[2,210]],[[2,212]],[[2,214]],[[2,216]],[[2,218]],[[2,220]],[[2,222]],[[2,224]],[[2,226]],[[2,228]],[[2,230]],[[2,232]],[[2,234]],[[2,236]],[[2,238]],[[2,240]],[[2,242]],[[2,244]],[[2,246]],[[2,248]],[[2,250]],[[2,252]],[[2,254]],[[2,256]],[[2,258]],[[2,260]],[[2,262]],[[2,264]],[[2,266]],[[2,268]],[[2,270]],[[2,272]],[[2,274]],[[2,276]],[[2,278]],[[2,280]],[[2,282]],[[2,284]],[[2,286]],[[2,288]],[[2,290]],[[2,292]],[[2,294]],[[2,296]],[[2,298]],[[2,300]],[[2,302]],[[2,304]],[[2,306]],[[2,308]],[[2,310]],[[2,312]],[[2,314]],[[2,316]],[[2,318]],[[2,320]],[[2,322]],[[2,324]],[[2,326]],[[2,328]],[[2,330]],[[2,332]],[[2,333]]]]]],[[2,340]]],[[2,343]]]],[[7,1]],[[16,35]],[[4,3]],[[16,53]]]]],[[25,52]]]]]]]]]],[[36,296]],[[36,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4780.869,"wallTime":1784630665207,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@60","time":4781.669,"message":" performing click action"} +{"type":"log","callId":"call@60","time":4785.35,"message":" click action done"} +{"type":"log","callId":"call@60","time":4785.362,"message":" waiting for scheduled navigations to finish"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665213.jpeg","width":1280,"height":720,"timestamp":4786.935,"frameSwapWallTime":1784630665210.6409} +{"type":"log","callId":"call@60","time":4787.163,"message":" navigations have finished"} +{"type":"after","callId":"call@60","endTime":4787.209,"afterSnapshot":"after@call@60"} +{"type":"frame-snapshot","snapshot":{"callId":"call@60","snapshotName":"after@call@60","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[26,27]],["BODY",{"class":"font-sans antialiased"},[[27,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[37,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[27,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[26,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[26,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[11,1]],["DIV",{},[[17,5]],["DIV",{},[[2,0]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[3,2]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[3,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","1916"," – ","2020"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[3,343]]]],[[8,1]],[[17,35]],[[5,3]],[[17,53]]]]],[[26,52]]]]]]]]]],[[37,296]],[[37,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4788.713,"wallTime":1784630665215,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@62","startTime":4789.707,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"15","timeout":15000},"stepId":"pw:api@56","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@62"} +{"type":"frame-snapshot","snapshot":{"callId":"call@62","snapshotName":"before@call@62","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[27,27]],["BODY",{"class":"font-sans antialiased"},[[28,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[38,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[28,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[27,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[27,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[12,1]],["DIV",{},[[18,5]],["DIV",{},[[3,0]],[[4,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[4,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[1,0]]]],[[4,15]]],[[1,22]],[[1,25]]],[[4,343]]]],[[9,1]],[[18,35]],[[6,3]],[[18,53]]]]],[[27,52]]]]]]]]]],[[38,296]],[[38,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4790.472,"wallTime":1784630665216,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@62","time":4790.596,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@62","time":4791.561,"message":" locator resolved to "} +{"type":"log","callId":"call@62","time":4791.91,"message":" fill(\"15\")"} +{"type":"log","callId":"call@62","time":4791.912,"message":"attempting fill action"} +{"type":"input","callId":"call@62","inputSnapshot":"input@call@62"} +{"type":"frame-snapshot","snapshot":{"callId":"call@62","snapshotName":"input@call@62","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[28,27]],["BODY",{"class":"font-sans antialiased"},[[29,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[39,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[29,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[28,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[28,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[13,1]],["DIV",{},[[19,5]],["DIV",{},[[4,0]],[[5,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[1,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[5,343]]]],[[10,1]],[[19,35]],[[7,3]],[[19,53]]]]],[[28,52]]]]]]]]]],[[39,296]],[[39,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4792.741,"wallTime":1784630665219,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@62","time":4792.811,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@62","endTime":4796.063,"afterSnapshot":"after@call@62"} +{"type":"frame-snapshot","snapshot":{"callId":"call@62","snapshotName":"after@call@62","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[29,27]],["BODY",{"class":"font-sans antialiased"},[[30,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[40,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[30,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[29,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[29,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[14,1]],["DIV",{},[[20,5]],["DIV",{},[[5,0]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"15","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[6,343]]]],[[11,1]],[[20,35]],[[8,3]],[[20,53]]]]],[[29,52]]]]]]]]]],[[40,296]],[[40,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4800.261,"wallTime":1784630665223,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665227.jpeg","width":1280,"height":720,"timestamp":4800.372,"frameSwapWallTime":1784630665222.6902} +{"type":"before","callId":"call@64","startTime":4801.21,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"6","timeout":15000},"stepId":"pw:api@57","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@64"} +{"type":"frame-snapshot","snapshot":{"callId":"call@64","snapshotName":"before@call@64","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[30,27]],["BODY",{"class":"font-sans antialiased"},[[31,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[41,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[31,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[30,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[30,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[15,1]],["DIV",{},[[21,5]],["DIV",{},[[6,0]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[7,343]]]],[[12,1]],[[21,35]],[[9,3]],[[21,53]]]]],[[30,52]]]]]]]]]],[[41,296]],[[41,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4802.191,"wallTime":1784630665228,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@64","time":4802.324,"message":"waiting for getByPlaceholder('MM')"} +{"type":"log","callId":"call@64","time":4804.001,"message":" locator resolved to "} +{"type":"log","callId":"call@64","time":4804.423,"message":" fill(\"6\")"} +{"type":"log","callId":"call@64","time":4804.426,"message":"attempting fill action"} +{"type":"input","callId":"call@64","inputSnapshot":"input@call@64"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665231.jpeg","width":1280,"height":720,"timestamp":4804.767,"frameSwapWallTime":1784630665229.375} +{"type":"frame-snapshot","snapshot":{"callId":"call@64","snapshotName":"input@call@64","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[31,27]],["BODY",{"class":"font-sans antialiased"},[[32,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[42,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[32,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[31,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[31,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[16,1]],["DIV",{},[[22,5]],["DIV",{},[[7,0]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[8,343]]]],[[13,1]],[[22,35]],[[10,3]],[[22,53]]]]],[[31,52]]]]]]]]]],[[42,296]],[[42,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4805.348,"wallTime":1784630665231,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@64","time":4805.429,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@64","endTime":4807.822,"afterSnapshot":"after@call@64"} +{"type":"frame-snapshot","snapshot":{"callId":"call@64","snapshotName":"after@call@64","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[32,27]],["BODY",{"class":"font-sans antialiased"},[[33,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[43,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[33,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[32,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[32,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[17,1]],["DIV",{},[[23,5]],["DIV",{},[[8,0]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"15"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"6","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[9,343]]]],[[14,1]],[[23,35]],[[11,3]],[[23,53]]]]],[[32,52]]]]]]]]]],[[43,296]],[[43,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4808.556,"wallTime":1784630665234,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@66","startTime":4809.404,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"1990","timeout":15000},"stepId":"pw:api@58","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@66"} +{"type":"frame-snapshot","snapshot":{"callId":"call@66","snapshotName":"before@call@66","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[33,27]],["BODY",{"class":"font-sans antialiased"},[[34,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[44,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[34,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[33,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[33,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[18,1]],["DIV",{},[[24,5]],["DIV",{},[[9,0]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[10,343]]]],[[15,1]],[[24,35]],[[12,3]],[[24,53]]]]],[[33,52]]]]]]]]]],[[44,296]],[[44,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4810.089,"wallTime":1784630665236,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@66","time":4810.186,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"log","callId":"call@66","time":4810.933,"message":" locator resolved to "} +{"type":"log","callId":"call@66","time":4811.275,"message":" fill(\"1990\")"} +{"type":"log","callId":"call@66","time":4811.28,"message":"attempting fill action"} +{"type":"input","callId":"call@66","inputSnapshot":"input@call@66"} +{"type":"frame-snapshot","snapshot":{"callId":"call@66","snapshotName":"input@call@66","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[34,27]],["BODY",{"class":"font-sans antialiased"},[[35,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[45,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[35,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[34,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[34,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[19,1]],["DIV",{},[[25,5]],["DIV",{},[[10,0]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[11,343]]]],[[16,1]],[[25,35]],[[13,3]],[[25,53]]]]],[[34,52]]]]]]]]]],[[45,296]],[[45,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4811.945,"wallTime":1784630665238,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@66","time":4812.034,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@66","endTime":4814.735,"afterSnapshot":"after@call@66"} +{"type":"frame-snapshot","snapshot":{"callId":"call@66","snapshotName":"after@call@66","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[35,27]],["BODY",{"class":"font-sans antialiased"},[[36,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[46,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[36,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[35,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[35,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[26,5]],["DIV",{},[[11,0]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"6"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"1990","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 15/6/1990"]]],[[12,343]]]],[[17,1]],[[26,35]],[[14,3]],[[26,53]]]]],[[35,52]]]]]]]]]],[[46,296]],[[46,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4815.474,"wallTime":1784630665241,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@68","startTime":4816.243,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@59","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@68"} +{"type":"frame-snapshot","snapshot":{"callId":"call@68","snapshotName":"before@call@68","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[36,27]],["BODY",{"class":"font-sans antialiased"},[[37,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[47,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[37,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[36,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[36,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[21,1]],["DIV",{},[[27,5]],["DIV",{},[[12,0]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"1990","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[13,343]]]],[[18,1]],[[27,35]],[[15,3]],[[27,53]]]]],[[36,52]]]]]]]]]],[[47,296]],[[47,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4817.001,"wallTime":1784630665243,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@68","time":4817.127,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"log","callId":"call@68","time":4818.509,"message":" locator resolved to "} +{"type":"log","callId":"call@68","time":4819.279,"message":"attempting click action"} +{"type":"log","callId":"call@68","time":4819.29,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665247.jpeg","width":1280,"height":720,"timestamp":4820.384,"frameSwapWallTime":1784630665245.2258} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665255.jpeg","width":1280,"height":720,"timestamp":4828.899,"frameSwapWallTime":1784630665253.708} +{"type":"log","callId":"call@68","time":4829.125,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@68","time":4829.128,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@68","time":4829.636,"message":" done scrolling"} +{"type":"input","callId":"call@68","point":{"x":1163.4,"y":668},"inputSnapshot":"input@call@68"} +{"type":"frame-snapshot","snapshot":{"callId":"call@68","snapshotName":"input@call@68","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[37,27]],["BODY",{"class":"font-sans antialiased"},[[38,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[48,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[38,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[37,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[37,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[22,1]],["DIV",{},[[28,5]],["DIV",{},[[13,0]],[[14,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[10,2]],[[1,3]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"__playwright_target__":"","type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},[[2,6]]]]],[[14,343]]]],[[19,1]],[[28,35]],[[16,3]],[[28,53]]]]],[[37,52]]]]]]]]]],[[48,296]],[[48,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4830.7,"wallTime":1784630665257,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@68","time":4831.471,"message":" performing click action"} +{"type":"log","callId":"call@68","time":4836.182,"message":" click action done"} +{"type":"log","callId":"call@68","time":4836.187,"message":" waiting for scheduled navigations to finish"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665263.jpeg","width":1280,"height":720,"timestamp":4837.16,"frameSwapWallTime":1784630665262.021} +{"type":"log","callId":"call@68","time":4837.382,"message":" navigations have finished"} +{"type":"after","callId":"call@68","endTime":4837.422,"afterSnapshot":"after@call@68"} +{"type":"frame-snapshot","snapshot":{"callId":"call@68","snapshotName":"after@call@68","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[38,27]],["BODY",{"class":"font-sans antialiased"},[[39,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[49,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[39,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[38,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[38,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[23,1]],["DIV",{},[[29,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"June 15, 1990"],[[29,18]]]]],[[20,1]],[[29,35]],[[17,3]],[[29,53]]]]],[[38,52]]]]]]]]]],[[49,296]],[[49,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4838.169,"wallTime":1784630665264,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@70","startTime":4838.967,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue to seat selection/i]","strict":true,"timeout":15000},"stepId":"pw:api@60","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@70"} +{"type":"frame-snapshot","snapshot":{"callId":"call@70","snapshotName":"before@call@70","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":4839.547,"wallTime":1784630665266,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@70","time":4839.655,"message":"waiting for getByRole('button', { name: /continue to seat selection/i })"} +{"type":"log","callId":"call@70","time":4841.018,"message":" locator resolved to "} +{"type":"log","callId":"call@70","time":4841.348,"message":"attempting click action"} +{"type":"log","callId":"call@70","time":4841.359,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665278.jpeg","width":1280,"height":720,"timestamp":4851.856,"frameSwapWallTime":1784630665276.499} +{"type":"log","callId":"call@70","time":4853.93,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@70","time":4853.935,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@70","time":4854.119,"message":" done scrolling"} +{"type":"input","callId":"call@70","point":{"x":1021,"y":507},"inputSnapshot":"input@call@70"} +{"type":"frame-snapshot","snapshot":{"callId":"call@70","snapshotName":"input@call@70","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[40,27]],["BODY",{"class":"font-sans antialiased"},[[41,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[51,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[41,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[40,29]],["FORM",{"class":"space-y-6"},[[2,7]],["DIV",{"class":"flex gap-4"},[[40,49]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},[[40,50]]]]]]]]]]]],[[51,296]],[[51,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4855.193,"wallTime":1784630665281,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@70","time":4855.805,"message":" performing click action"} +{"type":"log","callId":"call@70","time":4860.166,"message":" click action done"} +{"type":"log","callId":"call@70","time":4860.172,"message":" waiting for scheduled navigations to finish"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665286.jpeg","width":1280,"height":720,"timestamp":4860.263,"frameSwapWallTime":1784630665284.698} +{"type":"log","callId":"call@70","time":4860.602,"message":" navigations have finished"} +{"type":"after","callId":"call@70","endTime":4860.634,"afterSnapshot":"after@call@70"} +{"type":"log","callId":"call@40","time":4860.843,"message":" locator resolved to visible "} +{"type":"after","callId":"call@40","endTime":4860.854,"result":{},"afterSnapshot":"after@call@40"} +{"type":"frame-snapshot","snapshot":{"callId":"call@70","snapshotName":"after@call@70","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[41,27]],["BODY",{"class":"font-sans antialiased"},[[42,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[52,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[42,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[41,29]],["FORM",{"class":"space-y-6"},[[3,7]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2","disabled":""},[[41,47]],[[41,48]]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2","disabled":""},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]]]]]]]]],[[52,296]],[[52,308]]]],"viewport":{"width":1280,"height":720},"timestamp":4861.308,"wallTime":1784630665287,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@72","startTime":4862.051,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"3c3b7d58e3d97c4a65bbfe301146cfa5","phase":"before","event":""},"stepId":"pw:api@61","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"log","callId":"call@72","time":4862.076,"message":"waiting for navigation until \"load\""} +{"type":"frame-snapshot","snapshot":{"callId":"call@40","snapshotName":"after@call@40","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,14]],"viewport":{"width":1280,"height":720},"timestamp":4862.09,"wallTime":1784630665288,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665296.jpeg","width":1280,"height":720,"timestamp":4869.408,"frameSwapWallTime":1784630665293.963} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665312.jpeg","width":1280,"height":720,"timestamp":4886.042,"frameSwapWallTime":1784630665310.655} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665319.jpeg","width":1280,"height":720,"timestamp":4893.024,"frameSwapWallTime":1784630665317.601} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665328.jpeg","width":1280,"height":720,"timestamp":4901.404,"frameSwapWallTime":1784630665326.116} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665337.jpeg","width":1280,"height":720,"timestamp":4910.346,"frameSwapWallTime":1784630665335.019} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665353.jpeg","width":1280,"height":720,"timestamp":4926.598,"frameSwapWallTime":1784630665351.301} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665368.jpeg","width":1280,"height":720,"timestamp":4941.676,"frameSwapWallTime":1784630665366.366} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665376.jpeg","width":1280,"height":720,"timestamp":4949.931,"frameSwapWallTime":1784630665374.5771} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665385.jpeg","width":1280,"height":720,"timestamp":4958.404,"frameSwapWallTime":1784630665383} +{"type":"console","messageType":"warning","text":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element: JSHandle@node","args":[{"preview":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:","value":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:"},{"preview":"JSHandle@node"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js","lineNumber":109,"columnNumber":20},"time":5011.575,"pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665438.jpeg","width":1280,"height":720,"timestamp":5012.094,"frameSwapWallTime":1784630665424.298} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665438.jpeg","width":1280,"height":720,"timestamp":5012.172,"frameSwapWallTime":1784630665425.2578} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665438.jpeg","width":1280,"height":720,"timestamp":5012.223,"frameSwapWallTime":1784630665425.647} +{"type":"log","callId":"call@72","time":5015.347,"message":" navigated to \"http://localhost:5174/booking/seats\""} +{"type":"after","callId":"call@72","endTime":5015.364} +{"type":"before","callId":"call@77","startTime":5015.455,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"b7ebdf35313dfd49d0879203adf8e141","phase":"before","event":"response"},"stepId":"pw:api@62","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"before","callId":"call@80","startTime":5015.516,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/auto assign seats/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@63","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@80"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665451.jpeg","width":1280,"height":720,"timestamp":5024.595,"frameSwapWallTime":1784630665449.2878} +{"type":"frame-snapshot","snapshot":{"callId":"call@80","snapshotName":"before@call@80","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[54,0]],[[54,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[54,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[54,36]],[[54,43]],[[54,47]],[[54,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[54,55]],["OL",{"class":"space-y-1"},[[54,61]],[[44,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[54,69]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[54,72]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[54,74]]]],[[54,81]],[[54,86]],[[54,91]]]]],[[54,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[54,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[54,132]],[[44,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[54,148]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[54,151]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[54,152]]]],[[54,155]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[54,157]]]],[[54,168]],[[54,177]],[[54,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"0","/","1"," seats selected"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-400 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"]]],["STYLE",{},"@keyframes seats-slide-up{from{transform:translateY(100%)}to{transform:translateY(0)}}"],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},["BUTTON",{"class":"flex items-center gap-1.5 text-sm text-gray-600 dark:text-gray-400 hover:text-primary transition-colors font-medium"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["DIV",{"class":"text-center"},["H1",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Select Seats"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Now selecting: ","Adult 1"]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"0","/","1"]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"flex justify-end"},["BUTTON",{"type":"button","class":"flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 text-sm font-semibold text-gray-700 dark:text-gray-300 hover:border-primary hover:text-primary transition-colors shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-4 h-4"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],"Preview Train Coach"]],["DIV",{"class":"flex flex-col items-stretch"},["DIV",{"class":"px-4"},["DIV",{"class":"relative bg-[rgb(20,113,76)] rounded-t-2xl px-5 pt-4 pb-3 text-white overflow-hidden"},["DIV",{"class":"absolute top-0 left-0 right-0 h-1 bg-white/20"}],["DIV",{"class":"flex items-center justify-between"},["DIV",{},["P",{"class":"text-[10px] font-bold uppercase tracking-widest text-white/60"},"EDR Express"],["P",{"class":"text-sm font-bold mt-0.5"},"1"," Coach"]],["DIV",{"class":"flex gap-2"},["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}]]],["DIV",{"class":"mt-3 flex items-center gap-2"},["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}],["DIV",{"class":"flex-1 h-1 bg-white/20 rounded-full"}],["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}]]],["DIV",{"class":"h-3 bg-[rgb(15,85,57)] mx-3 rounded-b-lg"}]],["DIV",{},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}],["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}]]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-900/30"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-gray-100 dark:bg-gray-700 text-gray-600 dark:text-gray-300"},"1"],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-gray-900 dark:text-white"},"UI-C1"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"48"," of ","48"," seats available"]]],["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"hidden sm:flex items-end gap-0.5 h-5"},["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 text-gray-400"},["path",{"d":"m6 9 6 6 6-6"}]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}]]],["DIV",{"class":"px-4"},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}]]],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded-b-2xl"}]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-amber-100 text-amber-700 dark:bg-amber-900/30 dark:text-amber-400"},"0","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"Selecting seat for Adult 1 (1 of 1)"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 0%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)]/20 text-[rgb(20,113,76)] ring-2 ring-[rgb(20,113,76)]"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"],["SPAN",{"class":"text-[10px] font-semibold text-[rgb(20,113,76)] uppercase tracking-wide"},"Now selecting"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-gray-400"},"Not Assigned"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"],["BUTTON",{"class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],["DIV",{"class":"lg:hidden h-24"}]]]]]]]],[[54,296]],[[54,308]]]],"viewport":{"width":1280,"height":720},"timestamp":5024.965,"wallTime":1784630665450,"collectionTime":1.699999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@80","time":5025.206,"message":"waiting for getByRole('button', { name: /auto assign seats/i }).first()"} +{"type":"log","callId":"call@80","time":5027.792,"message":" locator resolved to "} +{"type":"log","callId":"call@80","time":5028.075,"message":"attempting click action"} +{"type":"log","callId":"call@80","time":5028.089,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665459.jpeg","width":1280,"height":720,"timestamp":5033.302,"frameSwapWallTime":1784630665458.132} +{"type":"log","callId":"call@80","time":5037.355,"message":" element is not stable"} +{"type":"log","callId":"call@80","time":5037.362,"message":"retrying click action"} +{"type":"log","callId":"call@80","time":5037.376,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665472.jpeg","width":1280,"height":720,"timestamp":5046.08,"frameSwapWallTime":1784630665470.813} +{"type":"log","callId":"call@80","time":5054.016,"message":" element is not stable"} +{"type":"log","callId":"call@80","time":5054.026,"message":"retrying click action"} +{"type":"log","callId":"call@80","time":5054.027,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665480.jpeg","width":1280,"height":720,"timestamp":5054.284,"frameSwapWallTime":1784630665479.1611} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665489.jpeg","width":1280,"height":720,"timestamp":5062.974,"frameSwapWallTime":1784630665487.663} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665497.jpeg","width":1280,"height":720,"timestamp":5071.158,"frameSwapWallTime":1784630665495.913} +{"type":"log","callId":"call@80","time":5075.441,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@80","time":5087.423,"message":" element is not stable"} +{"type":"log","callId":"call@80","time":5087.43,"message":"retrying click action"} +{"type":"log","callId":"call@80","time":5087.432,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665514.jpeg","width":1280,"height":720,"timestamp":5087.681,"frameSwapWallTime":1784630665512.329} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665522.jpeg","width":1280,"height":720,"timestamp":5095.937,"frameSwapWallTime":1784630665520.691} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665530.jpeg","width":1280,"height":720,"timestamp":5103.757,"frameSwapWallTime":1784630665528.566} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665539.jpeg","width":1280,"height":720,"timestamp":5112.711,"frameSwapWallTime":1784630665537.458} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665555.jpeg","width":1280,"height":720,"timestamp":5129.195,"frameSwapWallTime":1784630665553.887} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665564.jpeg","width":1280,"height":720,"timestamp":5137.898,"frameSwapWallTime":1784630665562.49} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665572.jpeg","width":1280,"height":720,"timestamp":5146.005,"frameSwapWallTime":1784630665570.669} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665589.jpeg","width":1280,"height":720,"timestamp":5162.594,"frameSwapWallTime":1784630665587.375} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665597.jpeg","width":1280,"height":720,"timestamp":5170.733,"frameSwapWallTime":1784630665595.5579} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665605.jpeg","width":1280,"height":720,"timestamp":5179.08,"frameSwapWallTime":1784630665603.857} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665613.jpeg","width":1280,"height":720,"timestamp":5187.318,"frameSwapWallTime":1784630665612.09} +{"type":"log","callId":"call@80","time":5188.254,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@80","time":5203.954,"message":" element is not stable"} +{"type":"log","callId":"call@80","time":5203.967,"message":"retrying click action"} +{"type":"log","callId":"call@80","time":5203.968,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665631.jpeg","width":1280,"height":720,"timestamp":5204.539,"frameSwapWallTime":1784630665629.284} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665639.jpeg","width":1280,"height":720,"timestamp":5212.61,"frameSwapWallTime":1784630665637.389} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665647.jpeg","width":1280,"height":720,"timestamp":5220.789,"frameSwapWallTime":1784630665645.633} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665664.jpeg","width":1280,"height":720,"timestamp":5237.381,"frameSwapWallTime":1784630665662.1611} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665672.jpeg","width":1280,"height":720,"timestamp":5245.628,"frameSwapWallTime":1784630665670.459} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665680.jpeg","width":1280,"height":720,"timestamp":5253.909,"frameSwapWallTime":1784630665678.76} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665697.jpeg","width":1280,"height":720,"timestamp":5270.562,"frameSwapWallTime":1784630665695.302} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665705.jpeg","width":1280,"height":720,"timestamp":5278.554,"frameSwapWallTime":1784630665703.31} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665714.jpeg","width":1280,"height":720,"timestamp":5287.371,"frameSwapWallTime":1784630665712.142} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665722.jpeg","width":1280,"height":720,"timestamp":5295.59,"frameSwapWallTime":1784630665720.388} +{"type":"log","callId":"call@80","time":5305.386,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665739.jpeg","width":1280,"height":720,"timestamp":5312.748,"frameSwapWallTime":1784630665737.526} +{"type":"log","callId":"call@80","time":5320.555,"message":" element is not stable"} +{"type":"log","callId":"call@80","time":5320.563,"message":"retrying click action"} +{"type":"log","callId":"call@80","time":5320.565,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665747.jpeg","width":1280,"height":720,"timestamp":5320.91,"frameSwapWallTime":1784630665745.617} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665755.jpeg","width":1280,"height":720,"timestamp":5329.095,"frameSwapWallTime":1784630665753.926} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665763.jpeg","width":1280,"height":720,"timestamp":5337.332,"frameSwapWallTime":1784630665762.1912} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665778.jpeg","width":1280,"height":720,"timestamp":5351.762,"frameSwapWallTime":1784630665776.5679} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665785.jpeg","width":1280,"height":720,"timestamp":5358.368,"frameSwapWallTime":1784630665783.288} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665792.jpeg","width":1280,"height":720,"timestamp":5366.176,"frameSwapWallTime":1784630665791.034} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665801.jpeg","width":1280,"height":720,"timestamp":5374.931,"frameSwapWallTime":1784630665799.8418} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665818.jpeg","width":1280,"height":720,"timestamp":5391.719,"frameSwapWallTime":1784630665816.529} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665826.jpeg","width":1280,"height":720,"timestamp":5400.207,"frameSwapWallTime":1784630665825.0688} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665835.jpeg","width":1280,"height":720,"timestamp":5408.379,"frameSwapWallTime":1784630665833.277} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665843.jpeg","width":1280,"height":720,"timestamp":5416.825,"frameSwapWallTime":1784630665841.6182} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665860.jpeg","width":1280,"height":720,"timestamp":5433.606,"frameSwapWallTime":1784630665858.312} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665868.jpeg","width":1280,"height":720,"timestamp":5442.009,"frameSwapWallTime":1784630665866.7751} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665876.jpeg","width":1280,"height":720,"timestamp":5450.111,"frameSwapWallTime":1784630665874.888} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665893.jpeg","width":1280,"height":720,"timestamp":5466.616,"frameSwapWallTime":1784630665891.43} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665901.jpeg","width":1280,"height":720,"timestamp":5474.54,"frameSwapWallTime":1784630665899.3708} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665910.jpeg","width":1280,"height":720,"timestamp":5483.361,"frameSwapWallTime":1784630665908.214} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665926.jpeg","width":1280,"height":720,"timestamp":5500.301,"frameSwapWallTime":1784630665925.04} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665935.jpeg","width":1280,"height":720,"timestamp":5508.507,"frameSwapWallTime":1784630665933.311} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630665943.jpeg","width":1280,"height":720,"timestamp":5516.802,"frameSwapWallTime":1784630665941.5742} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666152.jpeg","width":1280,"height":720,"timestamp":5725.776,"frameSwapWallTime":1784630666150.276} +{"type":"log","callId":"call@80","time":5821.698,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@80","time":5837.25,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@80","time":5837.259,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@80","time":5837.767,"message":" done scrolling"} +{"type":"input","callId":"call@80","point":{"x":1105.32,"y":333},"inputSnapshot":"input@call@80"} +{"type":"frame-snapshot","snapshot":{"callId":"call@80","snapshotName":"input@call@80","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":[[1,204]],"viewport":{"width":1280,"height":720},"timestamp":5838.818,"wallTime":1784630666265,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@80","time":5839.46,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666269.jpeg","width":1280,"height":720,"timestamp":5842.406,"frameSwapWallTime":1784630666267.079} +{"type":"log","callId":"call@80","time":5853.792,"message":" click action done"} +{"type":"log","callId":"call@80","time":5853.8,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@80","time":5854.105,"message":" navigations have finished"} +{"type":"after","callId":"call@80","endTime":5854.175,"afterSnapshot":"after@call@80"} +{"type":"frame-snapshot","snapshot":{"callId":"call@80","snapshotName":"after@call@80","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[56,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"1",[[2,58]],[[2,59]],[[2,60]]],[[2,63]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."]]],[[2,70]],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},[[2,74]],["DIV",{"class":"text-center"},[[2,76]]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"1",[[2,82]],[[2,83]]]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[2,98]],["DIV",{"class":"flex flex-col items-stretch"},[[2,117]],["DIV",{},[[2,122]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-[rgb(20,113,76)] shadow-lg shadow-[rgb(20,113,76)]/10"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-[rgb(20,113,76)] text-white"},[[2,124]]],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-[rgb(20,113,76)]"},[[2,126]]],[[2,132]]]],["DIV",{"class":"flex items-center gap-3"},[[2,147]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 rotate-180 text-[rgb(20,113,76)]"},[[2,148]]]]],["DIV",{"class":"border-t border-gray-100 dark:border-gray-800 bg-white dark:bg-gray-800 p-4"},["DIV",{"class":"flex flex-wrap gap-3 mb-4"},["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-green-50 border border-green-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Available"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-blue-50 border-2 border-blue-500 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Selected"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-red-50 border border-red-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Booked"]]],["DIV",{"class":"overflow-x-auto"},["DIV",{"class":"inline-block bg-gray-50 dark:bg-gray-700/30 rounded-xl p-4 border border-gray-200 dark:border-gray-700"},["DIV",{"class":"space-y-0"},["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-[rgb(20_113_76)] text-white shadow-md scale-105","title":"Seat 1A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 1B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 1C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 1D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]]]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}]]],[[2,160]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400"},"1","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"All seats selected — ready to continue"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 100%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)] text-white"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"Seat 1A"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."],["BUTTON",{"disabled":"","class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],[[2,195]]]]]]]]],[[56,296]],[[56,308]]]],"viewport":{"width":1280,"height":720},"timestamp":5857.557,"wallTime":1784630666282,"collectionTime":1.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666285.jpeg","width":1280,"height":720,"timestamp":5858.856,"frameSwapWallTime":1784630666282.692} +{"type":"before","callId":"call@82","startTime":5858.967,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"86f5c626994083a18a4707338cb3da2c","phase":"before","event":""},"stepId":"pw:api@64","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"log","callId":"call@82","time":5858.987,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666288.jpeg","width":1280,"height":720,"timestamp":5862.21,"frameSwapWallTime":1784630666286.648} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666303.jpeg","width":1280,"height":720,"timestamp":5876.402,"frameSwapWallTime":1784630666300.674} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666310.jpeg","width":1280,"height":720,"timestamp":5884.094,"frameSwapWallTime":1784630666308.49} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666319.jpeg","width":1280,"height":720,"timestamp":5892.503,"frameSwapWallTime":1784630666316.91} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666336.jpeg","width":1280,"height":720,"timestamp":5909.688,"frameSwapWallTime":1784630666334.025} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666344.jpeg","width":1280,"height":720,"timestamp":5917.593,"frameSwapWallTime":1784630666342.001} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666353.jpeg","width":1280,"height":720,"timestamp":5926.392,"frameSwapWallTime":1784630666350.553} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666361.jpeg","width":1280,"height":720,"timestamp":5934.692,"frameSwapWallTime":1784630666359.262} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666385.jpeg","width":1280,"height":720,"timestamp":5958.481,"frameSwapWallTime":1784630666382.9492} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666421.jpeg","width":1280,"height":720,"timestamp":5994.849,"frameSwapWallTime":1784630666413.2148} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666421.jpeg","width":1280,"height":720,"timestamp":5994.954,"frameSwapWallTime":1784630666414.192} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666422.jpeg","width":1280,"height":720,"timestamp":5996.028,"frameSwapWallTime":1784630666414.689} +{"type":"log","callId":"call@82","time":5997.151,"message":" navigated to \"http://localhost:5174/booking/review\""} +{"type":"after","callId":"call@82","endTime":5997.165} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666432.jpeg","width":1280,"height":720,"timestamp":6006.298,"frameSwapWallTime":1784630666430.033} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666440.jpeg","width":1280,"height":720,"timestamp":6014.142,"frameSwapWallTime":1784630666438.844} +{"type":"after","callId":"call@77","endTime":6017.651} +{"type":"before","callId":"call@90","startTime":6017.71,"class":"Response","method":"body","params":{},"stepId":"pw:api@65","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"after","callId":"call@90","endTime":6017.945,"result":{"binary":""}} +{"type":"before","callId":"call@92","startTime":6018.837,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"b880850714084d7292b1e62467ad56e5","phase":"before","event":"response"},"stepId":"pw:api@66","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"before","callId":"call@95","startTime":6018.868,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@67","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@95"} +{"type":"frame-snapshot","snapshot":{"callId":"call@95","snapshotName":"before@call@95","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[57,0]],[[57,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[57,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[57,36]],[[57,43]],[[57,47]],[[57,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[57,55]],["OL",{"class":"space-y-1"},[[57,61]],[[47,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[57,74]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[57,77]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[57,79]]]],[[57,86]],[[57,91]]]]],[[57,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[57,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[57,132]],[[47,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[57,157]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[57,160]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[57,161]]]],[[57,164]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[57,166]]]],[[57,177]],[[57,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-28 lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Review your booking"],["DIV",{"class":"bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-3 mb-4 flex items-center gap-2"},["SPAN",{"class":"text-yellow-800 dark:text-yellow-200 text-sm"},"⏱️ Seats held for: ",["SPAN",{"class":"font-bold"}]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card overflow-hidden"},["DIV",{"class":"flex items-center gap-2 mb-6 pb-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"w-2 h-2 bg-primary rounded-full"}],["H2",{"class":"text-lg font-bold text-gray-900 dark:text-gray-100"},"Trip Details"],["SPAN",{"class":"ml-auto text-xs px-2.5 py-1 bg-primary/10 text-primary rounded-full font-semibold"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-8 flex-shrink-0"},["DIV",{"class":"w-4 h-4 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 dark:to-gray-700 my-2"}],["DIV",{"class":"w-4 h-4 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col"},["DIV",{"class":"pb-8"},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Alpha"]],["DIV",{"class":"pb-8"},["DIV",{"class":"flex items-center gap-6 text-sm text-gray-600 dark:text-gray-400"},["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"}]],["SPAN",{"class":"font-medium"},"4h 0m"]],["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M13 10V3L4 14h7v7l9-11h-7z"}]],["SPAN",{"class":"font-medium"},"Train ","UI-100"]]]],["DIV",{},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Charlie"]]]]],["DIV",{"class":"card"},["H2",{"class":"text-xl font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passengers"],["DIV",{"class":"space-y-3"},["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Adult 1"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Jun 15, 1990"," • ","ETHIOPIAN"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"1A"],["P",{"class":"text-[10px] text-gray-400 dark:text-gray-500 mt-0.5"},"Economy Regular"]]]]]],["DIV",{"class":"lg:hidden mt-4"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 py-3 z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"class":"btn-primary flex-1 py-2.5"},"Confirm "]]]]]]]],[[57,296]],[[57,308]]]],"viewport":{"width":1280,"height":720},"timestamp":6020.522,"wallTime":1784630666446,"collectionTime":0.8999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@95","time":6020.716,"message":"waiting for getByRole('button', { name: /^confirm/i }).first()"} +{"type":"log","callId":"call@95","time":6022.405,"message":" locator resolved to "} +{"type":"log","callId":"call@95","time":6022.854,"message":"attempting click action"} +{"type":"log","callId":"call@95","time":6022.904,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666456.jpeg","width":1280,"height":720,"timestamp":6029.806,"frameSwapWallTime":1784630666454.5542} +{"type":"log","callId":"call@95","time":6037.551,"message":" element is not stable"} +{"type":"log","callId":"call@95","time":6037.562,"message":"retrying click action"} +{"type":"log","callId":"call@95","time":6037.579,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666464.jpeg","width":1280,"height":720,"timestamp":6037.934,"frameSwapWallTime":1784630666462.7} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666473.jpeg","width":1280,"height":720,"timestamp":6047.067,"frameSwapWallTime":1784630666471.873} +{"type":"log","callId":"call@95","time":6054.046,"message":" element is not stable"} +{"type":"log","callId":"call@95","time":6054.054,"message":"retrying click action"} +{"type":"log","callId":"call@95","time":6054.055,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666481.jpeg","width":1280,"height":720,"timestamp":6055.128,"frameSwapWallTime":1784630666479.9841} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666498.jpeg","width":1280,"height":720,"timestamp":6071.974,"frameSwapWallTime":1784630666496.677} +{"type":"log","callId":"call@95","time":6075.753,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666506.jpeg","width":1280,"height":720,"timestamp":6080.241,"frameSwapWallTime":1784630666505.07} +{"type":"log","callId":"call@95","time":6087.421,"message":" element is not stable"} +{"type":"log","callId":"call@95","time":6087.43,"message":"retrying click action"} +{"type":"log","callId":"call@95","time":6087.431,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666515.jpeg","width":1280,"height":720,"timestamp":6088.489,"frameSwapWallTime":1784630666513.296} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666523.jpeg","width":1280,"height":720,"timestamp":6096.686,"frameSwapWallTime":1784630666521.3972} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666540.jpeg","width":1280,"height":720,"timestamp":6113.386,"frameSwapWallTime":1784630666538.1328} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666548.jpeg","width":1280,"height":720,"timestamp":6121.875,"frameSwapWallTime":1784630666546.408} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666556.jpeg","width":1280,"height":720,"timestamp":6130.241,"frameSwapWallTime":1784630666554.945} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666565.jpeg","width":1280,"height":720,"timestamp":6138.966,"frameSwapWallTime":1784630666563.571} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666582.jpeg","width":1280,"height":720,"timestamp":6155.359,"frameSwapWallTime":1784630666579.952} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666589.jpeg","width":1280,"height":720,"timestamp":6163.211,"frameSwapWallTime":1784630666587.8652} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666598.jpeg","width":1280,"height":720,"timestamp":6172.188,"frameSwapWallTime":1784630666596.715} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666615.jpeg","width":1280,"height":720,"timestamp":6188.419,"frameSwapWallTime":1784630666613.015} +{"type":"log","callId":"call@95","time":6188.656,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666623.jpeg","width":1280,"height":720,"timestamp":6196.919,"frameSwapWallTime":1784630666621.424} +{"type":"log","callId":"call@95","time":6204.063,"message":" element is not stable"} +{"type":"log","callId":"call@95","time":6204.073,"message":"retrying click action"} +{"type":"log","callId":"call@95","time":6204.075,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666631.jpeg","width":1280,"height":720,"timestamp":6205.105,"frameSwapWallTime":1784630666629.6301} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666639.jpeg","width":1280,"height":720,"timestamp":6213.269,"frameSwapWallTime":1784630666637.933} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666656.jpeg","width":1280,"height":720,"timestamp":6230.195,"frameSwapWallTime":1784630666654.8108} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666665.jpeg","width":1280,"height":720,"timestamp":6238.691,"frameSwapWallTime":1784630666663.384} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666673.jpeg","width":1280,"height":720,"timestamp":6246.904,"frameSwapWallTime":1784630666671.582} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666681.jpeg","width":1280,"height":720,"timestamp":6254.938,"frameSwapWallTime":1784630666679.553} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666697.jpeg","width":1280,"height":720,"timestamp":6271.293,"frameSwapWallTime":1784630666695.853} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666706.jpeg","width":1280,"height":720,"timestamp":6279.752,"frameSwapWallTime":1784630666704.4138} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666715.jpeg","width":1280,"height":720,"timestamp":6288.422,"frameSwapWallTime":1784630666713.014} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666723.jpeg","width":1280,"height":720,"timestamp":6297.225,"frameSwapWallTime":1784630666721.8362} +{"type":"log","callId":"call@95","time":6305.182,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666740.jpeg","width":1280,"height":720,"timestamp":6313.406,"frameSwapWallTime":1784630666738.154} +{"type":"log","callId":"call@95","time":6320.526,"message":" element is not stable"} +{"type":"log","callId":"call@95","time":6320.535,"message":"retrying click action"} +{"type":"log","callId":"call@95","time":6320.536,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666748.jpeg","width":1280,"height":720,"timestamp":6321.595,"frameSwapWallTime":1784630666746.259} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666753.jpeg","width":1280,"height":720,"timestamp":6327.191,"frameSwapWallTime":1784630666751.937} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666768.jpeg","width":1280,"height":720,"timestamp":6342.282,"frameSwapWallTime":1784630666766.978} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666776.jpeg","width":1280,"height":720,"timestamp":6350.329,"frameSwapWallTime":1784630666774.997} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666785.jpeg","width":1280,"height":720,"timestamp":6358.733,"frameSwapWallTime":1784630666783.397} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666802.jpeg","width":1280,"height":720,"timestamp":6375.933,"frameSwapWallTime":1784630666800.5422} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666810.jpeg","width":1280,"height":720,"timestamp":6383.57,"frameSwapWallTime":1784630666808.2239} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666818.jpeg","width":1280,"height":720,"timestamp":6392.262,"frameSwapWallTime":1784630666816.941} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666835.jpeg","width":1280,"height":720,"timestamp":6408.688,"frameSwapWallTime":1784630666833.403} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666843.jpeg","width":1280,"height":720,"timestamp":6416.91,"frameSwapWallTime":1784630666841.6482} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666851.jpeg","width":1280,"height":720,"timestamp":6425.129,"frameSwapWallTime":1784630666849.893} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666860.jpeg","width":1280,"height":720,"timestamp":6433.681,"frameSwapWallTime":1784630666858.419} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666876.jpeg","width":1280,"height":720,"timestamp":6450.178,"frameSwapWallTime":1784630666874.926} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666885.jpeg","width":1280,"height":720,"timestamp":6458.623,"frameSwapWallTime":1784630666883.38} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666893.jpeg","width":1280,"height":720,"timestamp":6466.917,"frameSwapWallTime":1784630666891.677} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666901.jpeg","width":1280,"height":720,"timestamp":6475.227,"frameSwapWallTime":1784630666900.0151} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666918.jpeg","width":1280,"height":720,"timestamp":6492.272,"frameSwapWallTime":1784630666916.842} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666927.jpeg","width":1280,"height":720,"timestamp":6500.656,"frameSwapWallTime":1784630666925.313} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666935.jpeg","width":1280,"height":720,"timestamp":6508.888,"frameSwapWallTime":1784630666933.462} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630666951.jpeg","width":1280,"height":720,"timestamp":6525.109,"frameSwapWallTime":1784630666949.71} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667160.jpeg","width":1280,"height":720,"timestamp":6733.863,"frameSwapWallTime":1784630667158.578} +{"type":"log","callId":"call@95","time":6821.684,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@95","time":6837.285,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@95","time":6837.297,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@95","time":6837.777,"message":" done scrolling"} +{"type":"input","callId":"call@95","point":{"x":1106.65,"y":327},"inputSnapshot":"input@call@95"} +{"type":"frame-snapshot","snapshot":{"callId":"call@95","snapshotName":"input@call@95","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[1,194]],"viewport":{"width":1280,"height":720},"timestamp":6838.725,"wallTime":1784630667265,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@95","time":6839.454,"message":" performing click action"} +{"type":"log","callId":"call@95","time":6841.851,"message":" click action done"} +{"type":"log","callId":"call@95","time":6841.86,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@95","time":6842.101,"message":" navigations have finished"} +{"type":"after","callId":"call@95","endTime":6842.161,"afterSnapshot":"after@call@95"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667269.jpeg","width":1280,"height":720,"timestamp":6842.715,"frameSwapWallTime":1784630667267.345} +{"type":"frame-snapshot","snapshot":{"callId":"call@95","snapshotName":"after@call@95","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[2,194]],"viewport":{"width":1280,"height":720},"timestamp":6842.799,"wallTime":1784630667269,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667277.jpeg","width":1280,"height":720,"timestamp":6851.049,"frameSwapWallTime":1784630667275.701} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667287.jpeg","width":1280,"height":720,"timestamp":6861.114,"frameSwapWallTime":1784630667285.678} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667303.jpeg","width":1280,"height":720,"timestamp":6876.641,"frameSwapWallTime":1784630667301.221} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667311.jpeg","width":1280,"height":720,"timestamp":6884.779,"frameSwapWallTime":1784630667309.4758} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667319.jpeg","width":1280,"height":720,"timestamp":6892.819,"frameSwapWallTime":1784630667317.488} +{"type":"after","callId":"call@92","endTime":6898.794} +{"type":"before","callId":"call@100","startTime":6898.884,"class":"Response","method":"body","params":{},"stepId":"pw:api@68","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"after","callId":"call@100","endTime":6901.001,"result":{"binary":""}} +{"type":"before","callId":"call@102","startTime":6902.51,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"40abc84b7d756187e2923fe35cfa2ca6","phase":"before","event":""},"stepId":"pw:api@70","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"log","callId":"call@102","time":6902.535,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667336.jpeg","width":1280,"height":720,"timestamp":6909.623,"frameSwapWallTime":1784630667334.209} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667344.jpeg","width":1280,"height":720,"timestamp":6917.874,"frameSwapWallTime":1784630667342.5989} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667352.jpeg","width":1280,"height":720,"timestamp":6926.186,"frameSwapWallTime":1784630667350.904} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667361.jpeg","width":1280,"height":720,"timestamp":6934.424,"frameSwapWallTime":1784630667359.273} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667377.jpeg","width":1280,"height":720,"timestamp":6950.65,"frameSwapWallTime":1784630667375.4028} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667386.jpeg","width":1280,"height":720,"timestamp":6959.717,"frameSwapWallTime":1784630667384.413} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667394.jpeg","width":1280,"height":720,"timestamp":6967.871,"frameSwapWallTime":1784630667392.589} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667402.jpeg","width":1280,"height":720,"timestamp":6976.321,"frameSwapWallTime":1784630667401.0479} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667419.jpeg","width":1280,"height":720,"timestamp":6992.709,"frameSwapWallTime":1784630667417.46} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667427.jpeg","width":1280,"height":720,"timestamp":7001.14,"frameSwapWallTime":1784630667425.7861} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667436.jpeg","width":1280,"height":720,"timestamp":7009.895,"frameSwapWallTime":1784630667434.53} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667453.jpeg","width":1280,"height":720,"timestamp":7026.406,"frameSwapWallTime":1784630667451.13} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667461.jpeg","width":1280,"height":720,"timestamp":7034.691,"frameSwapWallTime":1784630667459.38} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667469.jpeg","width":1280,"height":720,"timestamp":7043.032,"frameSwapWallTime":1784630667467.782} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667484.jpeg","width":1280,"height":720,"timestamp":7058.277,"frameSwapWallTime":1784630667482.995} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667501.jpeg","width":1280,"height":720,"timestamp":7075.261,"frameSwapWallTime":1784630667499.636} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667541.jpeg","width":1280,"height":720,"timestamp":7114.618,"frameSwapWallTime":1784630667533.481} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667541.jpeg","width":1280,"height":720,"timestamp":7114.68,"frameSwapWallTime":1784630667534.432} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667541.jpeg","width":1280,"height":720,"timestamp":7114.727,"frameSwapWallTime":1784630667534.785} +{"type":"log","callId":"call@102","time":7116.897,"message":" navigated to \"http://localhost:5174/booking/payment\""} +{"type":"after","callId":"call@102","endTime":7116.908} +{"type":"before","callId":"call@107","startTime":7116.957,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"7ab20fe6a3b4fc276e55b0c56820fe78","phase":"before","event":"response"},"stepId":"pw:api@71","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"before","callId":"call@110","startTime":7117.012,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"pay-method-WALLET\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@72","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@110"} +{"type":"frame-snapshot","snapshot":{"callId":"call@110","snapshotName":"before@call@110","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[60,0]],[[60,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[60,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[60,36]],[[60,43]],[[60,47]],[[60,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[60,55]],["OL",{"class":"space-y-1"},[[60,61]],[[50,32]],[[6,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[60,79]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[60,82]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[60,84]]]],[[60,91]]]]],[[60,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[60,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[60,132]],[[50,47]],[[6,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[60,166]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[60,169]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[60,170]]]],[[60,173]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[60,175]]]],[[60,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Complete payment"],["DIV",{"class":"card bg-green-50 dark:bg-green-900/20 border border-green-200 dark:border-green-800 mb-4 flex items-start gap-3"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-check-big w-6 h-6 text-green-600 dark:text-green-400 flex-shrink-0 mt-0.5"},["path",{"d":"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{"d":"m9 11 3 3L22 4"}]],["DIV",{},["P",{"class":"text-sm font-semibold text-green-800 dark:text-green-300"},"Your booking is successfully reserved"],["P",{"class":"text-sm text-green-700 dark:text-green-400 mt-0.5"},"Booking Reference: ",["SPAN",{"class":"font-bold"},"IRASOD"]],["P",{"class":"text-xs text-green-700/80 dark:text-green-400/80 mt-1"},"Please complete the payment below to confirm your booking. Your seats are held temporarily until payment is completed."]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 mb-4"},"Select payment method"],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-wallet w-5 h-5 text-primary"},["path",{"d":"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{"d":"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"Wallet"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]],["BUTTON",{"data-testid":"pay-method-TELEBIRR","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-smartphone w-5 h-5 text-primary"},["rect",{"width":"14","height":"20","x":"5","y":"2","rx":"2","ry":"2"}],["path",{"d":"M12 18h.01"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"telebirr"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"IRASOD"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"IRASOD"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"disabled":"","class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"]]]]]]]],[[60,296]],[[60,308]]]],"viewport":{"width":1280,"height":720},"timestamp":7118.801,"wallTime":1784630667544,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@110","time":7119.117,"message":"waiting for getByTestId('pay-method-WALLET').first()"} +{"type":"log","callId":"call@110","time":7121.014,"message":" locator resolved to "} +{"type":"log","callId":"call@110","time":7121.678,"message":"attempting click action"} +{"type":"log","callId":"call@110","time":7121.724,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667548.jpeg","width":1280,"height":720,"timestamp":7122.015,"frameSwapWallTime":1784630667546.578} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667556.jpeg","width":1280,"height":720,"timestamp":7130.19,"frameSwapWallTime":1784630667554.896} +{"type":"log","callId":"call@110","time":7137.296,"message":" element is not stable"} +{"type":"log","callId":"call@110","time":7137.3,"message":"retrying click action"} +{"type":"log","callId":"call@110","time":7137.316,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667564.jpeg","width":1280,"height":720,"timestamp":7138.143,"frameSwapWallTime":1784630667562.9758} +{"type":"log","callId":"call@110","time":7154.117,"message":" element is not stable"} +{"type":"log","callId":"call@110","time":7154.13,"message":"retrying click action"} +{"type":"log","callId":"call@110","time":7154.132,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667581.jpeg","width":1280,"height":720,"timestamp":7154.698,"frameSwapWallTime":1784630667579.398} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667589.jpeg","width":1280,"height":720,"timestamp":7163.007,"frameSwapWallTime":1784630667587.585} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667598.jpeg","width":1280,"height":720,"timestamp":7171.616,"frameSwapWallTime":1784630667596.3398} +{"type":"log","callId":"call@110","time":7175.556,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@110","time":7187.424,"message":" element is not stable"} +{"type":"log","callId":"call@110","time":7187.433,"message":"retrying click action"} +{"type":"log","callId":"call@110","time":7187.434,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667614.jpeg","width":1280,"height":720,"timestamp":7188.128,"frameSwapWallTime":1784630667612.831} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667623.jpeg","width":1280,"height":720,"timestamp":7196.516,"frameSwapWallTime":1784630667621.256} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667631.jpeg","width":1280,"height":720,"timestamp":7204.68,"frameSwapWallTime":1784630667629.3198} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667639.jpeg","width":1280,"height":720,"timestamp":7213.191,"frameSwapWallTime":1784630667637.938} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667656.jpeg","width":1280,"height":720,"timestamp":7229.82,"frameSwapWallTime":1784630667654.447} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667664.jpeg","width":1280,"height":720,"timestamp":7238.148,"frameSwapWallTime":1784630667662.8088} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667673.jpeg","width":1280,"height":720,"timestamp":7246.53,"frameSwapWallTime":1784630667671.266} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667681.jpeg","width":1280,"height":720,"timestamp":7254.774,"frameSwapWallTime":1784630667679.4119} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667698.jpeg","width":1280,"height":720,"timestamp":7271.41,"frameSwapWallTime":1784630667695.972} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667706.jpeg","width":1280,"height":720,"timestamp":7279.557,"frameSwapWallTime":1784630667704.205} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667714.jpeg","width":1280,"height":720,"timestamp":7287.932,"frameSwapWallTime":1784630667712.484} +{"type":"log","callId":"call@110","time":7288.295,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667723.jpeg","width":1280,"height":720,"timestamp":7296.42,"frameSwapWallTime":1784630667720.8992} +{"type":"log","callId":"call@110","time":7303.945,"message":" element is not stable"} +{"type":"log","callId":"call@110","time":7303.954,"message":"retrying click action"} +{"type":"log","callId":"call@110","time":7303.956,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667740.jpeg","width":1280,"height":720,"timestamp":7313.557,"frameSwapWallTime":1784630667738.1648} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667748.jpeg","width":1280,"height":720,"timestamp":7321.44,"frameSwapWallTime":1784630667746.096} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667756.jpeg","width":1280,"height":720,"timestamp":7329.723,"frameSwapWallTime":1784630667754.318} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667764.jpeg","width":1280,"height":720,"timestamp":7337.775,"frameSwapWallTime":1784630667762.408} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667781.jpeg","width":1280,"height":720,"timestamp":7354.65,"frameSwapWallTime":1784630667779.0972} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667789.jpeg","width":1280,"height":720,"timestamp":7363.046,"frameSwapWallTime":1784630667787.704} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667798.jpeg","width":1280,"height":720,"timestamp":7371.402,"frameSwapWallTime":1784630667796.105} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667806.jpeg","width":1280,"height":720,"timestamp":7379.618,"frameSwapWallTime":1784630667804.122} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667823.jpeg","width":1280,"height":720,"timestamp":7396.739,"frameSwapWallTime":1784630667821.165} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667832.jpeg","width":1280,"height":720,"timestamp":7405.607,"frameSwapWallTime":1784630667830.137} +{"type":"log","callId":"call@110","time":7405.797,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667840.jpeg","width":1280,"height":720,"timestamp":7413.439,"frameSwapWallTime":1784630667838.0898} +{"type":"log","callId":"call@110","time":7420.637,"message":" element is not stable"} +{"type":"log","callId":"call@110","time":7420.648,"message":"retrying click action"} +{"type":"log","callId":"call@110","time":7420.649,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667856.jpeg","width":1280,"height":720,"timestamp":7429.621,"frameSwapWallTime":1784630667854.319} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667864.jpeg","width":1280,"height":720,"timestamp":7438.044,"frameSwapWallTime":1784630667862.69} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667873.jpeg","width":1280,"height":720,"timestamp":7446.344,"frameSwapWallTime":1784630667870.945} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667887.jpeg","width":1280,"height":720,"timestamp":7460.626,"frameSwapWallTime":1784630667885.345} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667892.jpeg","width":1280,"height":720,"timestamp":7466.115,"frameSwapWallTime":1784630667890.9048} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667901.jpeg","width":1280,"height":720,"timestamp":7475.217,"frameSwapWallTime":1784630667900} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667918.jpeg","width":1280,"height":720,"timestamp":7492.097,"frameSwapWallTime":1784630667916.7148} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667927.jpeg","width":1280,"height":720,"timestamp":7500.518,"frameSwapWallTime":1784630667925.15} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667935.jpeg","width":1280,"height":720,"timestamp":7508.975,"frameSwapWallTime":1784630667933.5688} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667943.jpeg","width":1280,"height":720,"timestamp":7516.928,"frameSwapWallTime":1784630667941.698} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667960.jpeg","width":1280,"height":720,"timestamp":7533.957,"frameSwapWallTime":1784630667958.572} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667967.jpeg","width":1280,"height":720,"timestamp":7541.248,"frameSwapWallTime":1784630667965.895} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667977.jpeg","width":1280,"height":720,"timestamp":7550.598,"frameSwapWallTime":1784630667975.2222} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630667994.jpeg","width":1280,"height":720,"timestamp":7567.518,"frameSwapWallTime":1784630667991.968} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668001.jpeg","width":1280,"height":720,"timestamp":7574.748,"frameSwapWallTime":1784630667999.408} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668010.jpeg","width":1280,"height":720,"timestamp":7583.787,"frameSwapWallTime":1784630668008.478} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668027.jpeg","width":1280,"height":720,"timestamp":7600.508,"frameSwapWallTime":1784630668025.124} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668035.jpeg","width":1280,"height":720,"timestamp":7608.909,"frameSwapWallTime":1784630668033.541} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668043.jpeg","width":1280,"height":720,"timestamp":7617.078,"frameSwapWallTime":1784630668041.751} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668260.jpeg","width":1280,"height":720,"timestamp":7833.677,"frameSwapWallTime":1784630668258.3499} +{"type":"log","callId":"call@110","time":7921.615,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@110","time":7937.331,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@110","time":7937.343,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@110","time":7937.905,"message":" done scrolling"} +{"type":"input","callId":"call@110","point":{"x":598.66,"y":310},"inputSnapshot":"input@call@110"} +{"type":"frame-snapshot","snapshot":{"callId":"call@110","snapshotName":"input@call@110","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":[[1,262]],"viewport":{"width":1280,"height":720},"timestamp":7939.126,"wallTime":1784630668365,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@110","time":7939.907,"message":" performing click action"} +{"type":"log","callId":"call@110","time":7945.639,"message":" click action done"} +{"type":"log","callId":"call@110","time":7945.647,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@110","time":7946.051,"message":" navigations have finished"} +{"type":"after","callId":"call@110","endTime":7946.146,"afterSnapshot":"after@call@110"} +{"type":"frame-snapshot","snapshot":{"callId":"call@110","snapshotName":"after@call@110","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[62,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,58]],[[2,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[2,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-primary bg-primary/8 dark:bg-primary/15 shadow-md "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-primary"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-wallet w-5 h-5 text-white"},[[2,74]],[[2,75]]]],[[2,84]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-check-big w-5 h-5 text-primary flex-shrink-0"},["path",{"d":"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{"d":"m9 11 3 3L22 4"}]]]],[[2,99]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"IRASOD"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin text-primary"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating amount..."]],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"IRASOD"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin text-primary"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating amount..."]],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},[[2,242]],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-3.5 h-3.5 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]],["DIV",{"class":"flex gap-3"},[[2,251]],["BUTTON",{"disabled":"","class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating..."]]]]]]]]],[[62,296]],[[62,308]]]],"viewport":{"width":1280,"height":720},"timestamp":7947.566,"wallTime":1784630668373,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@112","startTime":7948.525,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^pay\\b/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@73","pageId":"page@b5951353a103748dafd971e9e44eaaca","beforeSnapshot":"before@call@112"} +{"type":"frame-snapshot","snapshot":{"callId":"call@112","snapshotName":"before@call@112","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":[[1,169]],"viewport":{"width":1280,"height":720},"timestamp":7949.305,"wallTime":1784630668375,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@112","time":7949.429,"message":"waiting for getByRole('button', { name: /^pay\\b/i }).first()"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668379.jpeg","width":1280,"height":720,"timestamp":7952.777,"frameSwapWallTime":1784630668377.274} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668390.jpeg","width":1280,"height":720,"timestamp":7963.559,"frameSwapWallTime":1784630668388.0789} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668394.jpeg","width":1280,"height":720,"timestamp":7968.199,"frameSwapWallTime":1784630668392.8809} +{"type":"log","callId":"call@112","time":7973.763,"message":" locator resolved to "} +{"type":"log","callId":"call@112","time":7974.133,"message":"attempting click action"} +{"type":"log","callId":"call@112","time":7974.147,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668403.jpeg","width":1280,"height":720,"timestamp":7976.805,"frameSwapWallTime":1784630668401.273} +{"type":"log","callId":"call@112","time":7987.575,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@112","time":7987.586,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@112","time":7987.784,"message":" done scrolling"} +{"type":"input","callId":"call@112","point":{"x":1106.65,"y":696},"inputSnapshot":"input@call@112"} +{"type":"frame-snapshot","snapshot":{"callId":"call@112","snapshotName":"input@call@112","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"9","lang":"en","dir":"ltr","class":"light","style":""},[[4,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[4,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[64,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,58]],[[4,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[2,8]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"IRASOD"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","750.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"IRASOD"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","750.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"__playwright_target__":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},[[4,242]],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["DIV",{"class":"flex gap-3"},[[4,251]],["BUTTON",{"class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"]]]]]]]],[[64,296]],[[64,308]]]],"viewport":{"width":1280,"height":720},"timestamp":7989.395,"wallTime":1784630668415,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@112","time":7990.153,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668420.jpeg","width":1280,"height":720,"timestamp":7993.684,"frameSwapWallTime":1784630668418.184} +{"type":"log","callId":"call@112","time":7996.356,"message":" click action done"} +{"type":"log","callId":"call@112","time":7996.362,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@112","time":7996.656,"message":" navigations have finished"} +{"type":"after","callId":"call@112","endTime":7996.713,"afterSnapshot":"after@call@112"} +{"type":"frame-snapshot","snapshot":{"callId":"call@112","snapshotName":"after@call@112","pageId":"page@b5951353a103748dafd971e9e44eaaca","frameId":"frame@d3cfeff6332b9b2e44f5b3e2d818836f","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"9","lang":"en","dir":"ltr","class":"light","style":""},[[5,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[5,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[65,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,58]],[[5,71]],["DIV",{"class":"fixed inset-0 bg-black/60 flex items-center justify-center z-50"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-xl p-8 max-w-sm w-full mx-4 text-center shadow-2xl"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-14 h-14 text-primary animate-spin mx-auto mb-4"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]],["H3",{"class":"text-lg font-bold mb-1 text-gray-900 dark:text-gray-100"},"Processing payment"],["P",{"class":"text-sm text-gray-500 dark:text-gray-400"},"Please wait..."]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[5,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-primary bg-primary/8 dark:bg-primary/15 shadow-md opacity-50 cursor-not-allowed","disabled":""},[[3,5]]],["BUTTON",{"data-testid":"pay-method-TELEBIRR","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 opacity-50 cursor-not-allowed","disabled":""},[[5,98]]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"IRASOD"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","750.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]],["BUTTON",{"disabled":"","class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"IRASOD"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","750.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]],["BUTTON",{"disabled":"","class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},[[1,157]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2","disabled":""},[[5,249]],[[5,250]]],["BUTTON",{"class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed","disabled":""},["SPAN",{"class":"flex items-center justify-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]]]]]]]]],[[65,296]],[[65,308]]]],"viewport":{"width":1280,"height":720},"timestamp":7998.069,"wallTime":1784630668424,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668431.jpeg","width":1280,"height":720,"timestamp":8004.388,"frameSwapWallTime":1784630668428.945} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668437.jpeg","width":1280,"height":720,"timestamp":8010.547,"frameSwapWallTime":1784630668435.2368} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668446.jpeg","width":1280,"height":720,"timestamp":8019.834,"frameSwapWallTime":1784630668444.4932} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668462.jpeg","width":1280,"height":720,"timestamp":8035.591,"frameSwapWallTime":1784630668460.271} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668470.jpeg","width":1280,"height":720,"timestamp":8043.895,"frameSwapWallTime":1784630668468.632} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668478.jpeg","width":1280,"height":720,"timestamp":8051.854,"frameSwapWallTime":1784630668476.575} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668487.jpeg","width":1280,"height":720,"timestamp":8061.241,"frameSwapWallTime":1784630668485.93} +{"type":"after","callId":"call@107","endTime":8070.992} +{"type":"before","callId":"call@117","startTime":8071.176,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"e158aabc225d0506a9b80a90304ded79","phase":"before","event":""},"stepId":"pw:api@74","pageId":"page@b5951353a103748dafd971e9e44eaaca"} +{"type":"log","callId":"call@117","time":8071.197,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668505.jpeg","width":1280,"height":720,"timestamp":8078.472,"frameSwapWallTime":1784630668503.142} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668512.jpeg","width":1280,"height":720,"timestamp":8085.67,"frameSwapWallTime":1784630668510.394} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668520.jpeg","width":1280,"height":720,"timestamp":8093.933,"frameSwapWallTime":1784630668518.7522} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668537.jpeg","width":1280,"height":720,"timestamp":8110.533,"frameSwapWallTime":1784630668535.327} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668544.jpeg","width":1280,"height":720,"timestamp":8117.424,"frameSwapWallTime":1784630668542.206} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668552.jpeg","width":1280,"height":720,"timestamp":8126.003,"frameSwapWallTime":1784630668550.8088} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668569.jpeg","width":1280,"height":720,"timestamp":8143.339,"frameSwapWallTime":1784630668568.1409} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668578.jpeg","width":1280,"height":720,"timestamp":8152.19,"frameSwapWallTime":1784630668577} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668586.jpeg","width":1280,"height":720,"timestamp":8159.732,"frameSwapWallTime":1784630668584.573} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668594.jpeg","width":1280,"height":720,"timestamp":8167.805,"frameSwapWallTime":1784630668592.633} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668611.jpeg","width":1280,"height":720,"timestamp":8184.564,"frameSwapWallTime":1784630668609.377} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668619.jpeg","width":1280,"height":720,"timestamp":8192.848,"frameSwapWallTime":1784630668617.665} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668627.jpeg","width":1280,"height":720,"timestamp":8201.162,"frameSwapWallTime":1784630668625.976} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668644.jpeg","width":1280,"height":720,"timestamp":8217.863,"frameSwapWallTime":1784630668642.72} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668652.jpeg","width":1280,"height":720,"timestamp":8226.116,"frameSwapWallTime":1784630668650.9932} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668661.jpeg","width":1280,"height":720,"timestamp":8234.388,"frameSwapWallTime":1784630668659.2861} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668677.jpeg","width":1280,"height":720,"timestamp":8251.129,"frameSwapWallTime":1784630668675.983} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668686.jpeg","width":1280,"height":720,"timestamp":8259.46,"frameSwapWallTime":1784630668684.35} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668694.jpeg","width":1280,"height":720,"timestamp":8267.719,"frameSwapWallTime":1784630668692.607} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668702.jpeg","width":1280,"height":720,"timestamp":8276.17,"frameSwapWallTime":1784630668701.0469} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668719.jpeg","width":1280,"height":720,"timestamp":8292.945,"frameSwapWallTime":1784630668717.792} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668728.jpeg","width":1280,"height":720,"timestamp":8301.396,"frameSwapWallTime":1784630668726.171} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668736.jpeg","width":1280,"height":720,"timestamp":8309.873,"frameSwapWallTime":1784630668734.6611} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668744.jpeg","width":1280,"height":720,"timestamp":8318.061,"frameSwapWallTime":1784630668742.837} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668761.jpeg","width":1280,"height":720,"timestamp":8334.741,"frameSwapWallTime":1784630668759.5261} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668769.jpeg","width":1280,"height":720,"timestamp":8343.102,"frameSwapWallTime":1784630668767.909} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668778.jpeg","width":1280,"height":720,"timestamp":8351.347,"frameSwapWallTime":1784630668776.144} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668786.jpeg","width":1280,"height":720,"timestamp":8359.737,"frameSwapWallTime":1784630668784.519} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668803.jpeg","width":1280,"height":720,"timestamp":8376.744,"frameSwapWallTime":1784630668801.464} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668811.jpeg","width":1280,"height":720,"timestamp":8384.611,"frameSwapWallTime":1784630668809.4739} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668819.jpeg","width":1280,"height":720,"timestamp":8393.055,"frameSwapWallTime":1784630668817.854} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668828.jpeg","width":1280,"height":720,"timestamp":8401.467,"frameSwapWallTime":1784630668826.282} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668845.jpeg","width":1280,"height":720,"timestamp":8418.385,"frameSwapWallTime":1784630668843.052} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668853.jpeg","width":1280,"height":720,"timestamp":8426.392,"frameSwapWallTime":1784630668851.1628} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668861.jpeg","width":1280,"height":720,"timestamp":8434.566,"frameSwapWallTime":1784630668859.332} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668877.jpeg","width":1280,"height":720,"timestamp":8451.199,"frameSwapWallTime":1784630668876.028} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668886.jpeg","width":1280,"height":720,"timestamp":8459.673,"frameSwapWallTime":1784630668884.449} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668894.jpeg","width":1280,"height":720,"timestamp":8467.813,"frameSwapWallTime":1784630668892.635} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668911.jpeg","width":1280,"height":720,"timestamp":8484.601,"frameSwapWallTime":1784630668909.3362} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668919.jpeg","width":1280,"height":720,"timestamp":8493.046,"frameSwapWallTime":1784630668917.777} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668927.jpeg","width":1280,"height":720,"timestamp":8501.227,"frameSwapWallTime":1784630668926.058} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668936.jpeg","width":1280,"height":720,"timestamp":8509.432,"frameSwapWallTime":1784630668934.267} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668952.jpeg","width":1280,"height":720,"timestamp":8526.126,"frameSwapWallTime":1784630668950.9639} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668961.jpeg","width":1280,"height":720,"timestamp":8534.57,"frameSwapWallTime":1784630668959.3699} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668969.jpeg","width":1280,"height":720,"timestamp":8542.958,"frameSwapWallTime":1784630668967.7788} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668985.jpeg","width":1280,"height":720,"timestamp":8559.027,"frameSwapWallTime":1784630668983.837} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630668994.jpeg","width":1280,"height":720,"timestamp":8568.088,"frameSwapWallTime":1784630668992.854} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630669003.jpeg","width":1280,"height":720,"timestamp":8576.591,"frameSwapWallTime":1784630669001.387} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630669203.jpeg","width":1280,"height":720,"timestamp":8776.692,"frameSwapWallTime":1784630669201.411} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630669420.jpeg","width":1280,"height":720,"timestamp":8993.496,"frameSwapWallTime":1784630669418.287} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630669627.jpeg","width":1280,"height":720,"timestamp":9201.157,"frameSwapWallTime":1784630669625.949} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630669836.jpeg","width":1280,"height":720,"timestamp":9409.722,"frameSwapWallTime":1784630669834.493} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630670044.jpeg","width":1280,"height":720,"timestamp":9617.734,"frameSwapWallTime":1784630670042.574} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630670252.jpeg","width":1280,"height":720,"timestamp":9826.223,"frameSwapWallTime":1784630670251.101} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630670461.jpeg","width":1280,"height":720,"timestamp":10034.945,"frameSwapWallTime":1784630670459.6602} +{"type":"log","callId":"call@117","time":10191.032,"message":" navigated to \"http://localhost:5174/booking/confirmation\""} +{"type":"after","callId":"call@117","endTime":10191.047} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630670617.jpeg","width":1280,"height":720,"timestamp":10191.185,"frameSwapWallTime":1784630670607.545} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630670627.jpeg","width":1280,"height":720,"timestamp":10201.013,"frameSwapWallTime":1784630670625.928} +{"type":"screencast-frame","pageId":"page@b5951353a103748dafd971e9e44eaaca","sha1":"page@b5951353a103748dafd971e9e44eaaca-1784630670642.jpeg","width":1280,"height":720,"timestamp":10215.895,"frameSwapWallTime":1784630670640.627} diff --git a/test-results/.playwright-artifacts-0/traces/783a9180b2259271d215-443a611449d7ba2025f2-recording4.network b/test-results/.playwright-artifacts-0/traces/783a9180b2259271d215-443a611449d7ba2025f2-recording4.network new file mode 100644 index 000000000..98d8d861c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/783a9180b2259271d215-443a611449d7ba2025f2-recording4.network @@ -0,0 +1,54 @@ +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:53.655Z","time":1.535,"request":{"method":"GET","url":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"image"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"url","value":"/edr-logo.png"},{"name":"w","value":"256"},{"name":"q","value":"75"}],"headersSize":767,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"public, max-age=0, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Disposition","value":"inline; filename=\"edr-logo.webp\""},{"name":"Content-Length","value":"5926"},{"name":"Content-Security-Policy","value":"script-src 'none'; frame-src 'none'; sandbox;"},{"name":"Content-Type","value":"image/webp"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:53 GMT"},{"name":"ETag","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Vary","value":"Accept"},{"name":"X-Nextjs-Cache","value":"HIT"}],"content":{"size":5926,"mimeType":"image/webp","compression":0,"_sha1":"d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp"},"headersSize":416,"bodySize":5926,"redirectURL":"","_transferSize":6342},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.132,"receive":0.403},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33230.668,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:53.636Z","time":19.931,"request":{"method":"GET","url":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-Fetch-Dest","value":"document"},{"name":"Sec-Fetch-Mode","value":"navigate"},{"name":"Sec-Fetch-Site","value":"none"},{"name":"Sec-Fetch-User","value":"?1"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"origin","value":"00000000-0000-4000-8000-000000000020"},{"name":"destination","value":"00000000-0000-4000-8000-000000000022"},{"name":"date","value":"2026-07-23"},{"name":"tripType","value":"ONE_WAY"},{"name":"adults","value":"2"},{"name":"children","value":"3"},{"name":"nationality","value":"ETHIOPIAN"}],"headersSize":673,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/html; charset=utf-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:53 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"X-Powered-By","value":"Next.js"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":51421,"mimeType":"text/html; charset=utf-8","compression":41205,"_sha1":"5698f18e9898bae459f7f5288cc4862dd7dd64b4.html"},"headersSize":765,"bodySize":10216,"redirectURL":"","_transferSize":10981},"cache":{},"timings":{"dns":0.108,"connect":0.237,"ssl":1.424,"send":0,"wait":16.754,"receive":1.408},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33209.682,"_resourceType":"document","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:53.655Z","time":4.421,"request":{"method":"GET","url":"http://localhost:5174/_next/static/css/app/layout.css?v=1784630693642","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"style"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630693642"}],"headersSize":741,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/css; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:53 GMT"},{"name":"ETag","value":"W/\"184e1-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":99553,"mimeType":"text/css; charset=UTF-8","compression":84302,"_sha1":"37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css"},"headersSize":356,"bodySize":15251,"redirectURL":"","_transferSize":15607},"cache":{},"timings":{"dns":0.004,"connect":0.267,"ssl":1.297,"send":0,"wait":1.962,"receive":0.891},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33230.73,"_resourceType":"stylesheet","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:53.655Z","time":4.4190000000000005,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/webpack.js?v=1784630693642","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630693642"}],"headersSize":726,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:53 GMT"},{"name":"ETag","value":"W/\"dc1e-19f8377166c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":369,"bodySize":10547,"redirectURL":"","_transferSize":10916},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.758,"receive":2.661},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33230.782,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:53.655Z","time":8.821,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app-pages-internals.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":738,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:53 GMT"},{"name":"ETag","value":"W/\"256bc-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":33746,"redirectURL":"","_transferSize":34116},"cache":{},"timings":{"dns":0.002,"connect":0.503,"ssl":1.536,"send":0,"wait":1.427,"receive":5.353},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33230.817,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:53.655Z","time":10.106,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":737,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:53 GMT"},{"name":"ETag","value":"W/\"2c9d3-19f8376f06f\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":51283,"redirectURL":"","_transferSize":51653},"cache":{},"timings":{"dns":0.002,"connect":0.13,"ssl":1.175,"send":0,"wait":1.924,"receive":6.875},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33230.846,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:53.656Z","time":37.391000000000005,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":729,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:53 GMT"},{"name":"ETag","value":"W/\"1c4c9e-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":434806,"redirectURL":"","_transferSize":435177},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.657,"receive":34.734},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33230.86,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:53.655Z","time":40.274,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/results/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":743,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:53 GMT"},{"name":"ETag","value":"W/\"20cb55-19f8376f071\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":479485,"redirectURL":"","_transferSize":479856},"cache":{},"timings":{"dns":0.001,"connect":0.352,"ssl":1.376,"send":0,"wait":2.046,"receive":36.499},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33230.832,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:53.655Z","time":109.15,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/main-app.js?v=1784630693642","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630693642"}],"headersSize":727,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:53 GMT"},{"name":"ETag","value":"W/\"5ec9be-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":1354462,"redirectURL":"","_transferSize":1354833},"cache":{},"timings":{"dns":0.004,"connect":0.525,"ssl":1.561,"send":0,"wait":1.664,"receive":105.396},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33230.801,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.087Z","time":24.293,"request":{"method":"POST","url":"http://localhost:4000/search","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"220"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":883,"bodySize":220,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"27f18a2326fac473460386388ea4b490dc99db84.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1599"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"63f-OMD5efbUXb8qgs4gER8xHKNTW/k\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":1599,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"38c0f979f6d45dbf2a82ce20111f311ca3535bf9.json"},"headersSize":989,"bodySize":1599,"redirectURL":"","_transferSize":2588},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":22.11,"receive":2.183},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33720.841,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.086Z","time":12.289,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"229-zUFeXplcTK0SDbso7YnmjtwW8lk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"cd415e5e995c4cad120dbb28ed89e68edc16f259.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.286,"receive":2.003},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33720.766,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.086Z","time":7.836,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-zUFeXplcTK0SDbso7YnmjtwW8lk\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"229-b9p8AIEtpkeNWFH1zo4U0AiSps4\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"6fda7c00812da6478d5851f5ce8e14d00892a6ce.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.837,"receive":1.999},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33720.788,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.083Z","time":16.466,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_features_support_SupportWidget_tsx.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":776,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"f9fd6-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":233760,"redirectURL":"","_transferSize":234130},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.133,"receive":14.333},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33720.717,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.190Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":-1,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"WebSocket is closed before the connection is established."},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33763.587,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.175Z","time":3.54,"request":{"method":"GET","url":"http://localhost:4000/support/device/unread-count?deviceId=ab005297-5933-4402-9d94-cc4f13fab1af","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"deviceId","value":"ab005297-5933-4402-9d94-cc4f13fab1af"}],"headersSize":850,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"80"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"50-xdSIGMinV81z11ZtobInEAChf5Y\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":80,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"c5d48818c8a757cd73d7566da1b2271000a17f96.json"},"headersSize":981,"bodySize":80,"redirectURL":"","_transferSize":1061},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.218,"receive":1.322},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33763.775,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.595Z","time":8.458,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=br3vi","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22results%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/results"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"br3vi"}],"headersSize":1017,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"a5a2bb1a5b49246f969011b22df0d171d298ab95.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.721,"receive":0.737},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34171.386,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.632Z","time":7.042,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=n2i48","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"n2i48"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.042,"receive":-1},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34206.457,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.640Z","time":16.618,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/auth-check/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":746,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"ed732-19f8376f656\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":254272,"redirectURL":"","_transferSize":254642},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.769,"receive":14.849},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34214.671,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.693Z","time":35.756,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-b9p8AIEtpkeNWFH1zo4U0AiSps4\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"229-IV8yjxaRVyqEG3a4CwXN8Mot4tw\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"215f328f1691572a841b76b80b05cdf0ca2de2dc.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":33.231,"receive":2.525},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34273.237,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.693Z","time":9.294,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-IV8yjxaRVyqEG3a4CwXN8Mot4tw\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"229-1y6KzCeAVmASgzIqepoNnnP4bKU\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"d72e8acc278056601283322a7a9a0d9e73f86ca5.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.865,"receive":2.429},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34273.255,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.691Z","time":46.683,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=3ko94","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/auth-check"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ko94"}],"headersSize":858,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"113ef7bc1ddbb9932f87ab52b1c6c6d273a48c10.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":42.412,"receive":4.271},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34273.204,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.739Z","time":8.052,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=xc7gl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"xc7gl"}],"headersSize":804,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":4143,"mimeType":"text/x-component","compression":2864,"_sha1":"00b003075410e308fe75d63ebaa841876e75ca92.htc"},"headersSize":734,"bodySize":1279,"redirectURL":"","_transferSize":2013},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.235,"receive":0.817},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34313.568,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.748Z","time":32.533,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/passengers/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":581,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"216ea9-19f8376f7db\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":478257,"redirectURL":"","_transferSize":478628},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.396,"receive":31.137},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34321.852,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.843Z","time":8.09,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":842,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"90-816nSvIJEizRZjXmnpq2zEXZg44\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"f35ea74af209122cd16635e69e9ab6cc45d9838e.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.728,"receive":1.362},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34445.236,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.844Z","time":5.206,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"90-816nSvIJEizRZjXmnpq2zEXZg44\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":893,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:54 GMT"},{"name":"ETag","value":"W/\"90-FyE/d3gVeklAzc+BvT3E8w6WYAw\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"17213f7778157a4940cdcf81bd3dc4f30e96600c.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.737,"receive":1.469},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":34445.262,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:57.815Z","time":5.762,"request":{"method":"POST","url":"http://localhost:4000/passengers/save-details","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1493"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":901,"bodySize":1493,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"7417263ae87c3ec86aa6943d023a97393f69f489.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1220"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:57 GMT"},{"name":"ETag","value":"W/\"4c4-+ggNltgkvpHvcdkcngqNzk+TXpw\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":1220,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"fa080d96d824be91ef71d91c9e0a8dce4f935e9c.json"},"headersSize":989,"bodySize":1220,"redirectURL":"","_transferSize":2209},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.38,"receive":1.382},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":37389.378,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:57.822Z","time":9.885,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=3ufbl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/passengers"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ufbl"}],"headersSize":853,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:57 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":111,"mimeType":"text/x-component","compression":0,"_sha1":"3ba650e38c01b7f4dba7c59a8ac235a4f5802b22.htc"},"headersSize":734,"bodySize":119,"redirectURL":"","_transferSize":853},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.174,"receive":0.711},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":37397.768,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:57.833Z","time":8.472,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=1ivgy","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1ivgy"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:57 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.472,"receive":-1},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":37407.602,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:57.844Z","time":31.03,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/seats/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":576,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:57 GMT"},{"name":"ETag","value":"W/\"1f96a9-19f8376ffca\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:21 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":484983,"redirectURL":"","_transferSize":485354},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.565,"receive":29.465},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":37417.874,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:57.931Z","time":18.143,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101?coachTypeId=00000000-0000-4000-8000-000000000001&journeyDirection=ONE_WAY&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"coachTypeId","value":"00000000-0000-4000-8000-000000000001"},{"name":"journeyDirection","value":"ONE_WAY"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"}],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9431"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:57 GMT"},{"name":"ETag","value":"W/\"24d7-lGvBDU2YmUNKsm4VpIUz64/S/nc\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9431,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"946bc10d4d9899434ab26e15a48533eb8fd2fe77.json"},"headersSize":985,"bodySize":9431,"redirectURL":"","_transferSize":10416},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":14.008,"receive":4.135},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":37530.714,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:58.791Z","time":26.354,"request":{"method":"POST","url":"http://localhost:4000/seats/hold","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"478"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":478,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"d1b32a05d9f18c51a10b46ca59b316ee808e5865.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1301"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:58 GMT"},{"name":"ETag","value":"W/\"515-ML9h6nUPhj5/foORWcU4pF2Xh4o\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":1301,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"30bf61ea750f863e7f7e839159c538a45d97878a.json"},"headersSize":989,"bodySize":1301,"redirectURL":"","_transferSize":2290},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":24.931,"receive":1.423},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":38366.114,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:58.821Z","time":9.761,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=11o05","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/seats"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"11o05"}],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:58 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":113,"mimeType":"text/x-component","compression":0,"_sha1":"efc18e093e9560b1f05c3bd786098516c99407f5.htc"},"headersSize":734,"bodySize":120,"redirectURL":"","_transferSize":854},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.953,"receive":0.808},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":38398.292,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:58.833Z","time":7.388,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=dcucj","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"dcucj"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:58 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.388,"receive":-1},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":38406.634,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:58.841Z","time":27.723,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/review/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":572,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:58 GMT"},{"name":"ETag","value":"W/\"1b5bdb-19f8377031c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:22 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":413299,"redirectURL":"","_transferSize":413670},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.121,"receive":25.602},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":38415.157,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:58.919Z","time":11.847999999999999,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9416"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:58 GMT"},{"name":"ETag","value":"W/\"24c8-gXhblEj2kOt39wO4XlrIer031aU\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9416,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"81785b9448f690eb77f703b85e5ac87abd37d5a5.json"},"headersSize":985,"bodySize":9416,"redirectURL":"","_transferSize":10401},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.029,"receive":1.819},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":38513.021,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:58.919Z","time":5.843,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:58 GMT"},{"name":"ETag","value":"W/\"2f7-umouC+SLhYyWLOmJDJmipgtJUWg\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ba6a2e0be48b858c962ce9890c99a2a60b495168.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.116,"receive":1.727},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":38513.075,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:58.919Z","time":10.517,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"24c8-gXhblEj2kOt39wO4XlrIer031aU\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":926,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9416"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:58 GMT"},{"name":"ETag","value":"W/\"24c8-Iau701ObUBzOjFahAO09of/OT4I\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9416,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"21abbbd3539b501cce8c56a100ed3da1ffce4f82.json"},"headersSize":985,"bodySize":9416,"redirectURL":"","_transferSize":10401},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.792,"receive":1.725},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":38513.103,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:58.935Z","time":27.488,"request":{"method":"GET","url":"http://localhost:4000/search/fare-breakdown?scheduleId=00000000-0000-4000-8000-000000000101&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022&passengers=%5B%7B%22passengerName%22%3A%22Adult+1%22%2C%22dateOfBirth%22%3A%221990-06-15%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000010%22%2C%22nationality%22%3A%22ETHIOPIAN%22%7D%2C%7B%22passengerName%22%3A%22Adult+2%22%2C%22dateOfBirth%22%3A%221990-06-15%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000010%22%2C%22nationality%22%3A%22ETHIOPIAN%22%7D%2C%7B%22passengerName%22%3A%22Child+1%22%2C%22dateOfBirth%22%3A%222023-03-10%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000010%22%2C%22nationality%22%3A%22ETHIOPIAN%22%7D%2C%7B%22passengerName%22%3A%22Child+2%22%2C%22dateOfBirth%22%3A%222023-03-10%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000010%22%2C%22nationality%22%3A%22ETHIOPIAN%22%7D%2C%7B%22passengerName%22%3A%22Child+3%22%2C%22dateOfBirth%22%3A%222023-03-10%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000010%22%2C%22nationality%22%3A%22ETHIOPIAN%22%7D%5D&displayCurrency=ETB","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"scheduleId","value":"00000000-0000-4000-8000-000000000101"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"},{"name":"passengers","value":"[{\"passengerName\":\"Adult 1\",\"dateOfBirth\":\"1990-06-15\",\"seatClassId\":\"00000000-0000-4000-8000-000000000010\",\"nationality\":\"ETHIOPIAN\"},{\"passengerName\":\"Adult 2\",\"dateOfBirth\":\"1990-06-15\",\"seatClassId\":\"00000000-0000-4000-8000-000000000010\",\"nationality\":\"ETHIOPIAN\"},{\"passengerName\":\"Child 1\",\"dateOfBirth\":\"2023-03-10\",\"seatClassId\":\"00000000-0000-4000-8000-000000000010\",\"nationality\":\"ETHIOPIAN\"},{\"passengerName\":\"Child 2\",\"dateOfBirth\":\"2023-03-10\",\"seatClassId\":\"00000000-0000-4000-8000-000000000010\",\"nationality\":\"ETHIOPIAN\"},{\"passengerName\":\"Child 3\",\"dateOfBirth\":\"2023-03-10\",\"seatClassId\":\"00000000-0000-4000-8000-000000000010\",\"nationality\":\"ETHIOPIAN\"}]"},{"name":"displayCurrency","value":"ETB"}],"headersSize":844,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"2078"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:58 GMT"},{"name":"ETag","value":"W/\"81e-kUodHciw4d5qYYogVHEKD2GcghU\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":2078,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"914a1d1dc8b0e1de6a618a2054710a0f619c8215.json"},"headersSize":984,"bodySize":2078,"redirectURL":"","_transferSize":3062},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":26.273,"receive":1.215},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":38514.164,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:59.792Z","time":7.774,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"2f7-umouC+SLhYyWLOmJDJmipgtJUWg\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:59 GMT"},{"name":"ETag","value":"W/\"2f7-XjJt8h9NT4n6IOasjzYYKPM5DUs\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"5e326df21f4d4f89fa20e6ac8f361828f3390d4b.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.364,"receive":0.41},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":39366.316,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:59.802Z","time":68.35,"request":{"method":"POST","url":"http://localhost:4000/bookings","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1152"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":886,"bodySize":1152,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"3f0b7fb2b3ba0cdd3f01af59de0f741f79b85084.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"5267"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:59 GMT"},{"name":"ETag","value":"W/\"1493-sha1Ot/hyKUYTAk5r1ATO4TMa1U\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":5267,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"b216b53adfe1c8a5184c0939af50133b84cc6b55.json"},"headersSize":990,"bodySize":5267,"redirectURL":"","_transferSize":6257},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":67.119,"receive":1.231},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":39377.052,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:59.973Z","time":7.021000000000001,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=1uobt","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/review"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1uobt"}],"headersSize":843,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:59 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":115,"mimeType":"text/x-component","compression":0,"_sha1":"de07c86cc64bda73e654d27a199f6610c0e4ebad.htc"},"headersSize":734,"bodySize":116,"redirectURL":"","_transferSize":850},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.376,"receive":0.645},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":39547.183,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:59.982Z","time":8.391,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=rvb09","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22payment%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"rvb09"}],"headersSize":794,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:59 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":4122,"mimeType":"text/x-component","compression":2847,"_sha1":"52013f23d15462d527c039601b2d97d3b0078e23.htc"},"headersSize":734,"bodySize":1275,"redirectURL":"","_transferSize":2009},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.156,"receive":1.235},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":39556.287,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:59.990Z","time":28.959,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/payment/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":574,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:59 GMT"},{"name":"ETag","value":"W/\"1c5af1-19f83770767\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:23 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":435498,"redirectURL":"","_transferSize":435869},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.557,"receive":27.402},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":39564.769,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:45:00.069Z","time":4.16,"request":{"method":"GET","url":"http://localhost:4000/payments/methods","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"593"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:00 GMT"},{"name":"ETag","value":"W/\"251-2+RJxdgyFaEmXBxvsm6hsmfRe+Y\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":593,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"dbe449c5d83215a1265c1c6fb26ea1b267d17be6.json"},"headersSize":983,"bodySize":593,"redirectURL":"","_transferSize":1576},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.808,"receive":1.352},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":39664.132,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:45:00.920Z","time":4.896,"request":{"method":"GET","url":"http://localhost:4000/payments/booking-amount?bookingId=032991e7-7bce-4e09-b43a-72afbb08504b¤cy=ETB","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"bookingId","value":"032991e7-7bce-4e09-b43a-72afbb08504b"},{"name":"currency","value":"ETB"}],"headersSize":846,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"147"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:00 GMT"},{"name":"ETag","value":"W/\"93-2mCyv0Fb/IxJLUs9Bg981L21QcU\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":147,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"da60b2bf415bfc8c492d4b3d060f7cd4bdb541c5.json"},"headersSize":982,"bodySize":147,"redirectURL":"","_transferSize":1129},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.636,"receive":1.26},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":40495.037,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:45:00.953Z","time":83.93100000000001,"request":{"method":"POST","url":"http://localhost:4000/payments/initiate","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":894,"bodySize":144,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"76d319cee1dd831e618e1b63cd7c9e77780ec8e1.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"135"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:01 GMT"},{"name":"ETag","value":"W/\"87-sDGB47P9ukpLwPCFX91vBtAt1ig\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":135,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"b03181e3b3fdba4a4bc0f0855fdd6f06d02dd628.json"},"headersSize":987,"bodySize":135,"redirectURL":"","_transferSize":1122},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":82.674,"receive":1.257},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":40528.014,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:45:03.039Z","time":10.637,"request":{"method":"GET","url":"http://localhost:5174/booking/confirmation?_rsc=gwlg9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22payment%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/payment"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"gwlg9"}],"headersSize":851,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":125,"mimeType":"text/x-component","compression":0,"_sha1":"a072c05619b7cf3cbedc053f6c992794b91fee45.htc"},"headersSize":734,"bodySize":126,"redirectURL":"","_transferSize":860},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.939,"receive":0.698},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":42616.29,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:45:03.051Z","time":11.891,"request":{"method":"GET","url":"http://localhost:5174/booking/confirmation?_rsc=180sd","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22confirmation%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"180sd"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.891,"receive":-1},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":42625.585,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:45:03.065Z","time":28.553,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/confirmation/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":580,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"1b9b35-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":425290,"redirectURL":"","_transferSize":425661},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.001,"receive":26.552},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":42638.721,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:45:03.134Z","time":13.158,"request":{"method":"GET","url":"http://localhost:4000/bookings/032991e7-7bce-4e09-b43a-72afbb08504b","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":868,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"17037"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"428d-8F1KLAr2evQiCjwaPS6JcWmQvcM\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":17037,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"f05d4a2c0af67af4220a3c1a3d2e89716990bdc3.json"},"headersSize":986,"bodySize":17037,"redirectURL":"","_transferSize":18023},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.853,"receive":1.305},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":42737.07,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.137Z","time":8416.85595703125,"request":{"method":"GET","url":"ws://localhost:5174/_next/webpack-hmr","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"2WOjKo3sLyaVxGCs5T8DOQ=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[],"headersSize":483,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Sec-WebSocket-Accept","value":"L2Sks4GErcmwBrnIn2dMPkHRMng="},{"name":"Connection","value":"Upgrade"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"fceb345434ac920330ac98424f646d78.jsonl"},"headersSize":129,"bodySize":-1,"redirectURL":"","_transferSize":291},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33722.871,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:44:54.200Z","time":1.1181640625,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"j1rviZ5fszCNvgPTM2iFZQ=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Sec-WebSocket-Accept","value":"i7X6+mAESyQ6c+gRza4B2bRLym4="},{"name":"Connection","value":"Upgrade"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Vary","value":"Origin"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"0b1877e26070994559d37a96807b5620.jsonl"},"headersSize":235,"bodySize":-1,"redirectURL":"","_transferSize":410},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":33774.097,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:45:03.134Z","time":46.78,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_lib_generate-voucher_ts.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":602,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"23425a-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8"},"headersSize":371,"bodySize":653430,"redirectURL":"","_transferSize":653801},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.893,"receive":44.887},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":42737.034,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@23129ddb9bc37fd187315b2487d86bb6","startedDateTime":"2026-07-21T10:45:03.134Z","time":46.78,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_lib_generate-voucher_ts.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":602,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"23425a-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":653430,"redirectURL":"","_transferSize":653801},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.893,"receive":44.887},"_frameref":"frame@8eb25fea64d7f1ed27d60d03d1db822b","_monotonicTime":42737.034,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} diff --git a/test-results/.playwright-artifacts-0/traces/783a9180b2259271d215-443a611449d7ba2025f2-recording4.trace b/test-results/.playwright-artifacts-0/traces/783a9180b2259271d215-443a611449d7ba2025f2-recording4.trace new file mode 100644 index 000000000..d44362613 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/783a9180b2259271d215-443a611449d7ba2025f2-recording4.trace @@ -0,0 +1,1673 @@ +{"version":8,"type":"context-options","origin":"library","browserName":"chromium","playwrightVersion":"1.61.1","options":{"noDefaultViewport":false,"viewport":{"width":1280,"height":720},"ignoreHTTPSErrors":false,"javaScriptEnabled":true,"bypassCSP":false,"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36","locale":"en-US","offline":false,"deviceScaleFactor":1,"isMobile":false,"hasTouch":false,"colorScheme":"light","acceptDownloads":"accept","baseURL":"http://localhost:5174","serviceWorkers":"allow","selectorEngines":[],"testIdAttributeName":"data-testid","storageState":{"cookies":[],"origins":[{"origin":"http://localhost:5174","localStorage":[{"name":"auth_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"auth_user","value":"{\"iamUserId\":\"11111111-0000-4000-8000-000000000001\",\"passengerId\":\"11111111-0000-4000-8000-000000000001\",\"email\":\"test.passenger@edr.local\",\"phone\":null,\"fullName\":\"Test Passenger\",\"nationality\":null,\"faydaVerified\":false,\"preferredCurrency\":\"USD\",\"createdAt\":\"2026-07-21T10:44:20.904Z\",\"passenger\":{\"id\":\"11111111-0000-4000-8000-000000000001\",\"preferredLanguage\":null,\"loyalty\":{\"tier\":\"BRONZE\",\"pointsBalance\":500,\"lifetimePoints\":0},\"wallet\":{\"balanceMinor\":100000000,\"currency\":\"ETB\"}}}"}]}]}},"platform":"darwin","wallTime":1784630693600,"monotonicTime":33173.546,"sdkLanguage":"javascript","testIdAttributeName":"data-testid","contextId":"browser-context@d85d89d710e36c33c219f85f007ba652","title":"portal/ua16-family-mix.spec.ts:15 › UA-16: 2 adults + 3 children — two children free, one paid"} +{"type":"before","callId":"call@530","startTime":33174.626,"class":"BrowserContext","method":"newPage","params":{},"stepId":"pw:api@24"} +{"type":"event","time":33206.509,"class":"BrowserContext","method":"page","params":{"pageId":"page@23129ddb9bc37fd187315b2487d86bb6"}} +{"type":"after","callId":"call@530","endTime":33206.553,"result":{"page":""}} +{"type":"before","callId":"call@532","startTime":33208.093,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"c749021fe40a6b947584435913ef8c6b","phase":"before","event":"response"},"stepId":"pw:api@25","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"before","callId":"call@535","startTime":33208.152,"class":"Frame","method":"goto","params":{"url":"/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","timeout":0,"waitUntil":"load"},"stepId":"pw:api@26","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@535"} +{"type":"frame-snapshot","snapshot":{"callId":"call@535","snapshotName":"before@call@535","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"about:blank","html":["HTML",{},["HEAD",{},["BASE",{"href":"about:blank"}]],["BODY"]],"viewport":{"width":1280,"height":720},"timestamp":33209.171,"wallTime":1784630693635,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@535","time":33209.531,"message":"navigating to \"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN\", waiting until \"load\""} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693639.jpeg","width":1280,"height":720,"timestamp":33212.786,"frameSwapWallTime":1784630693638.084} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693666.jpeg","width":1280,"height":720,"timestamp":33239.984,"frameSwapWallTime":1784630693664.799} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693696.jpeg","width":1280,"height":720,"timestamp":33270.182,"frameSwapWallTime":1784630693694.577} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693706.jpeg","width":1280,"height":720,"timestamp":33279.955,"frameSwapWallTime":1784630693704.9019} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693716.jpeg","width":1280,"height":720,"timestamp":33289.564,"frameSwapWallTime":1784630693714.665} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693727.jpeg","width":1280,"height":720,"timestamp":33301.284,"frameSwapWallTime":1784630693726.222} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693766.jpeg","width":1280,"height":720,"timestamp":33339.702,"frameSwapWallTime":1784630693759.0361} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693766.jpeg","width":1280,"height":720,"timestamp":33339.784,"frameSwapWallTime":1784630693759.4048} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693766.jpeg","width":1280,"height":720,"timestamp":33339.851,"frameSwapWallTime":1784630693760.0378} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693773.jpeg","width":1280,"height":720,"timestamp":33346.36,"frameSwapWallTime":1784630693771.2751} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693782.jpeg","width":1280,"height":720,"timestamp":33355.548,"frameSwapWallTime":1784630693780.534} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693791.jpeg","width":1280,"height":720,"timestamp":33364.619,"frameSwapWallTime":1784630693789.635} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693800.jpeg","width":1280,"height":720,"timestamp":33374.25,"frameSwapWallTime":1784630693799.188} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693845.jpeg","width":1280,"height":720,"timestamp":33419.128,"frameSwapWallTime":1784630693838.0042} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693845.jpeg","width":1280,"height":720,"timestamp":33419.179,"frameSwapWallTime":1784630693838.512} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693846.jpeg","width":1280,"height":720,"timestamp":33419.557,"frameSwapWallTime":1784630693839.0132} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693862.jpeg","width":1280,"height":720,"timestamp":33436.145,"frameSwapWallTime":1784630693860.854} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693878.jpeg","width":1280,"height":720,"timestamp":33452.048,"frameSwapWallTime":1784630693876.602} +{"type":"console","messageType":"info","text":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold","args":[{"preview":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools","value":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools"},{"preview":"font-weight:bold","value":"font-weight:bold"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":38559,"columnNumber":16},"time":33458.538,"pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693888.jpeg","width":1280,"height":720,"timestamp":33461.458,"frameSwapWallTime":1784630693886.324} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693897.jpeg","width":1280,"height":720,"timestamp":33470.698,"frameSwapWallTime":1784630693895.532} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693906.jpeg","width":1280,"height":720,"timestamp":33479.988,"frameSwapWallTime":1784630693904.77} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693915.jpeg","width":1280,"height":720,"timestamp":33489.256,"frameSwapWallTime":1784630693914.115} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693932.jpeg","width":1280,"height":720,"timestamp":33505.93,"frameSwapWallTime":1784630693930.81} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693941.jpeg","width":1280,"height":720,"timestamp":33514.961,"frameSwapWallTime":1784630693939.7869} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693950.jpeg","width":1280,"height":720,"timestamp":33523.951,"frameSwapWallTime":1784630693948.895} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693966.jpeg","width":1280,"height":720,"timestamp":33540.166,"frameSwapWallTime":1784630693965.036} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693975.jpeg","width":1280,"height":720,"timestamp":33549.081,"frameSwapWallTime":1784630693973.9658} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693984.jpeg","width":1280,"height":720,"timestamp":33558.246,"frameSwapWallTime":1784630693983.2002} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630693994.jpeg","width":1280,"height":720,"timestamp":33567.413,"frameSwapWallTime":1784630693992.303} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694010.jpeg","width":1280,"height":720,"timestamp":33584.048,"frameSwapWallTime":1784630694008.904} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694019.jpeg","width":1280,"height":720,"timestamp":33593.177,"frameSwapWallTime":1784630694017.992} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694028.jpeg","width":1280,"height":720,"timestamp":33602.236,"frameSwapWallTime":1784630694027.107} +{"type":"after","callId":"call@535","endTime":33720.047,"result":{"response":""},"afterSnapshot":"after@call@535"} +{"type":"console","messageType":"error","text":"Warning: Prop `%s` did not match. Server: %s Client: %s%s nonce \"\" \"YzU0OTdjYjctOWJjZi00NjU3LWIxMTItZDRkNjQyZDNjYWJh\" \n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","args":[{"preview":"Warning: Prop `%s` did not match. Server: %s Client: %s%s","value":"Warning: Prop `%s` did not match. Server: %s Client: %s%s"},{"preview":"nonce","value":"nonce"},{"preview":"\"\"","value":"\"\""},{"preview":"\"YzU0OTdjYjctOWJjZi00NjU3LWIxMTItZDRkNjQyZDNjYWJh\"","value":"\"YzU0OTdjYjctOWJjZi00NjU3LWIxMTItZDRkNjQyZDNjYWJh\""},{"preview":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","value":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js","lineNumber":32,"columnNumber":21},"time":33720.433,"pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694147.jpeg","width":1280,"height":720,"timestamp":33721.223,"frameSwapWallTime":1784630694122.728} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694148.jpeg","width":1280,"height":720,"timestamp":33721.637,"frameSwapWallTime":1784630694123.755} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694148.jpeg","width":1280,"height":720,"timestamp":33722.299,"frameSwapWallTime":1784630694124.1829} +{"type":"after","callId":"call@532","endTime":33723.214} +{"type":"frame-snapshot","snapshot":{"callId":"call@535","snapshotName":"after@call@535","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},["HEAD",{},["BASE",{"href":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN"}],["META",{"charset":"utf-8"}],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["LINK",{"rel":"stylesheet","href":"/_next/static/css/app/layout.css?v=1784630693642","data-precedence":"next_static/css/app/layout.css"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},["A",{"class":"flex items-center px-5 h-20 flex-shrink-0 hover:opacity-80 transition-opacity","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-16 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-house w-5 h-5","aria-hidden":"true"},["path",{"d":"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{"d":"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],"Home"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/booking/lookup"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-ticket w-5 h-5","aria-hidden":"true"},["path",{"d":"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{"d":"M13 5v2"}],["path",{"d":"M13 17v2"}],["path",{"d":"M13 11v2"}]],"My Bookings"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/contact"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-phone w-5 h-5","aria-hidden":"true"},["path",{"d":"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],"Contact"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/help"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-question-mark w-5 h-5","aria-hidden":"true"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{"d":"M12 17h.01"}]],"Help"],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},["P",{"class":"px-3 pb-2 text-xs font-semibold uppercase tracking-wide text-gray-200/80"},"Your booking"],["OL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},"Search"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},"2"],["SPAN",{"class":"text-sm text-white font-semibold"},"Results"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"3"],["SPAN",{"class":"text-sm text-white/50"},"Passengers"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"4"],["SPAN",{"class":"text-sm text-white/50"},"Seats"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"5"],["SPAN",{"class":"text-sm text-white/50"},"Review"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"6"],["SPAN",{"class":"text-sm text-white/50"},"Payment"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"7"],["SPAN",{"class":"text-sm text-white/50"},"Done"]]]]],["DIV",{"class":"flex-shrink-0 border-t border-white/15 p-3 space-y-1"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium text-gray-100 hover:bg-white/10 hover:text-white transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-moon w-5 h-5","aria-hidden":"true"},["path",{"d":"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],"Dark mode"],["DIV",{"class":"relative"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2 rounded-lg hover:bg-white/10 transition-colors"},["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full bg-white text-[rgb(20_113_76)] font-semibold text-sm"},"T"],["SPAN",{"class":"flex-1 text-left text-sm font-medium text-white truncate"},"Test Passenger"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-200 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]]]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},["DIV",{"class":"lg:hidden relative bg-[rgb(20_113_76)] dark:bg-gray-900 border-b border-[rgb(16_89_60)] dark:border-gray-800 px-4 h-16 flex items-center flex-shrink-0"},["A",{"class":"flex items-center hover:opacity-80 transition-opacity","aria-label":"Go to home","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-14 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["DIV",{"class":"ml-auto"},["BUTTON",{"class":"p-2 rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors","title":"Current theme: Light. Click to cycle."},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-sun w-5 h-5"},["circle",{"cx":"12","cy":"12","r":"4"}],["path",{"d":"M12 2v2"}],["path",{"d":"M12 20v2"}],["path",{"d":"m4.93 4.93 1.41 1.41"}],["path",{"d":"m17.66 17.66 1.41 1.41"}],["path",{"d":"M2 12h2"}],["path",{"d":"M20 12h2"}],["path",{"d":"m6.34 17.66-1.41 1.41"}],["path",{"d":"m19.07 4.93-1.41 1.41"}]]]]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 invisible"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},"Search"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},"2"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},"Results"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"3"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Passengers"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"4"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Seats"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"5"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Review"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"6"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Payment"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"7"]],["DIV",{"class":"flex-1 h-0.5 invisible"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Done"]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"mb-8"},["BUTTON",{"class":"btn-ghost px-0 py-4 flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Modify search"],["H1",{"class":"section-title"},"Available schedules"],["DIV",{"class":"hidden sm:flex flex-wrap items-center gap-4 text-gray-600 dark:text-gray-400 mt-3"},["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar w-4 h-4"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}]],["SPAN",{},"Thursday, July 23, 2026"]],["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-users w-4 h-4"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["path",{"d":"M22 21v-2a4 4 0 0 0-3-3.87"}],["path",{"d":"M16 3.13a4 4 0 0 1 0 7.75"}]],["SPAN",{},"2"," adult(s), ","3"," ","child(ren)"]]]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg flex items-center justify-center flex-shrink-0"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-5 h-5 text-primary"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]]],["DIV",{},["DIV",{"class":"font-bold text-lg text-gray-900 dark:text-gray-100"},"UI-100"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400"},"UI Test Express"]]],["DIV",{"class":"flex items-center gap-2 md:gap-4"},["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"Jul 23 · Morning"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Alpha"]],["DIV",{"class":"flex-1 min-w-0 flex flex-col items-center"},["DIV",{"class":"flex items-center gap-1 md:gap-2 mb-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]],["SPAN",{},"4h 0m"]],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}]],["DIV",{"class":"flex items-center gap-1 mt-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{},"1"," stops"]]],["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5 flex items-center justify-center gap-1"},["SPAN",{},"Jul 23 · Afternoon"]],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Charlie"]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-1"},"Starting from"],["DIV",{"class":"text-3xl font-bold text-primary"},"ETB 750.00"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 mb-4"},"per adult"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Select"]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-100 dark:border-gray-800 flex flex-wrap gap-2"},["SPAN",{"class":"inline-flex items-center gap-1.5 text-xs font-medium px-2.5 py-1 rounded-full bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 flex-shrink-0"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],"Standard Coach",["SPAN",{"class":"font-semibold"},"44 left"]]]]]]]]]]]]],["NEXT-ROUTE-ANNOUNCER",{"style":"position: absolute;"},["template",{"__playwright_shadow_root_":"open"},["DIV",{"aria-live":"assertive","id":"__next-route-announcer__","role":"alert","style":"position: absolute; border: 0px; height: 1px; margin: -1px; padding: 0px; width: 1px; clip: rect(0px, 0px, 0px, 0px); overflow: hidden; white-space: nowrap; overflow-wrap: normal;"}]]]]],"viewport":{"width":1280,"height":720},"timestamp":33726.388,"wallTime":1784630694152,"collectionTime":1.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694154.jpeg","width":1280,"height":720,"timestamp":33727.602,"frameSwapWallTime":1784630694151.362} +{"type":"before","callId":"call@540","startTime":33727.696,"class":"Response","method":"body","params":{},"stepId":"pw:api@27","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"after","callId":"call@540","endTime":33727.809,"result":{"binary":""}} +{"type":"before","callId":"call@542","startTime":33731.191,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"result-select-btn\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@29","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@542"} +{"type":"console","messageType":"warning","text":"WebSocket connection to 'ws://localhost:4000/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.","args":[],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/engine.io-client@6.6.5/node_modules/engine.io-client/build/esm/transports/websocket.js","lineNumber":89,"columnNumber":0},"time":33763.699,"pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"frame-snapshot","snapshot":{"callId":"call@542","snapshotName":"before@call@542","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[1,29]],["BODY",{"class":"font-sans antialiased"},[[1,108]],[[1,293]],[[1,296]],["DIV",{"class":"fixed bottom-6 right-6 z-40 flex flex-col items-end gap-3"},["BUTTON",{"aria-label":"Open support chat","class":"group relative flex items-center gap-2.5 rounded-full p-2 pr-2 text-white transition-transform duration-150 hover:-translate-y-0.5 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-[3px] focus-visible:outline-primary active:translate-y-0 motion-reduce:transition-none motion-reduce:hover:translate-y-0 sm:pr-5","style":"background: linear-gradient(135deg, rgb(20, 113, 76), rgb(30, 140, 96)); box-shadow: rgba(20, 113, 76, 0.4) 0px 10px 28px;"},["SPAN",{"class":"pointer-events-none absolute -inset-1 animate-pulse rounded-full ring-2 ring-primary/50 motion-reduce:animate-none"}],["SPAN",{"class":"relative grid h-[42px] w-[42px] shrink-0 place-items-center rounded-full bg-white/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"22","height":"22","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-headset"},["path",{"d":"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{"d":"M21 16v2a4 4 0 0 1-4 4h-5"}]]],["SPAN",{"class":"relative hidden text-left leading-tight sm:block"},["SPAN",{"class":"block whitespace-nowrap text-sm font-semibold"},"👋 Need help?"],["SPAN",{"class":"block whitespace-nowrap text-[11px] opacity-85"},"Chat with our team"]]]]]],"viewport":{"width":1280,"height":720},"timestamp":33763.807,"wallTime":1784630694179,"collectionTime":3.2000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@542","time":33763.94,"message":"waiting for getByTestId('result-select-btn').first()"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694191.jpeg","width":1280,"height":720,"timestamp":33764.918,"frameSwapWallTime":1784630694186.3489} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694191.jpeg","width":1280,"height":720,"timestamp":33765.101,"frameSwapWallTime":1784630694188.527} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694197.jpeg","width":1280,"height":720,"timestamp":33770.429,"frameSwapWallTime":1784630694195.193} +{"type":"log","callId":"call@542","time":33774.521,"message":" locator resolved to "} +{"type":"log","callId":"call@542","time":33775.217,"message":"attempting click action"} +{"type":"log","callId":"call@542","time":33775.231,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694206.jpeg","width":1280,"height":720,"timestamp":33780.037,"frameSwapWallTime":1784630694204.7588} +{"type":"log","callId":"call@542","time":33791.876,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@542","time":33791.884,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@542","time":33792.054,"message":" done scrolling"} +{"type":"input","callId":"call@542","point":{"x":1141.5,"y":340},"inputSnapshot":"input@call@542"} +{"type":"frame-snapshot","snapshot":{"callId":"call@542","snapshotName":"input@call@542","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[2,29]],["BODY",{"class":"font-sans antialiased"},[[2,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[2,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[2,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[2,264]],[[2,266]],[[2,268]],["BUTTON",{"__playwright_target__":"","data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[2,269]]]]]],[[2,283]]]]]]]]]]]],[[2,296]],[[1,11]]]],"viewport":{"width":1280,"height":720},"timestamp":33793.234,"wallTime":1784630694219,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@542","time":33794.124,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694223.jpeg","width":1280,"height":720,"timestamp":33796.864,"frameSwapWallTime":1784630694221.523} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694238.jpeg","width":1280,"height":720,"timestamp":33811.999,"frameSwapWallTime":1784630694236.8418} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694247.jpeg","width":1280,"height":720,"timestamp":33820.336,"frameSwapWallTime":1784630694245.111} +{"type":"log","callId":"call@542","time":33832.857,"message":" click action done"} +{"type":"log","callId":"call@542","time":33832.868,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@542","time":33833.098,"message":" navigations have finished"} +{"type":"after","callId":"call@542","endTime":33833.146,"afterSnapshot":"after@call@542"} +{"type":"frame-snapshot","snapshot":{"callId":"call@542","snapshotName":"after@call@542","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[3,29]],["BODY",{"class":"font-sans antialiased"},[[3,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[3,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[3,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"fixed inset-0 z-[99] bg-black/50 backdrop-blur-sm"}],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},["DIV",{"class":"flex items-center justify-between px-6 py-5 border-b border-gray-100 dark:border-gray-800 flex-shrink-0"},["DIV",{},["H2",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"Choose Your Coach"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-3.5 h-3.5"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],["SPAN",{"class":"font-medium"},"UI-100"],["SPAN",{"class":"text-gray-400"},"·"],["SPAN",{},"Alpha"," → ","Charlie"]]],["BUTTON",{"type":"button","class":"w-10 h-10 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800 transition-all","aria-label":"Close"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-gray-300 dark:border-gray-600 group-hover:border-primary/50"}],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-gray-100 dark:bg-gray-700 group-hover:bg-primary/10"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-gray-600 dark:text-gray-400 group-hover:text-primary"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]],["DIV",{"class":"flex-1 min-w-0"},["DIV",{"class":"flex items-start justify-between gap-2 mb-2"},["DIV",{},["H3",{"class":"font-bold text-base text-gray-900 dark:text-white leading-tight"},"Standard Coach"]]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"From"],["SPAN",{"class":"text-2xl font-bold tracking-tight text-gray-900 dark:text-white"},"ETB 750.00"]]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-200/60 dark:border-gray-700/60"},["DIV",{"class":"flex items-center justify-between mb-3"},["P",{"class":"text-xs font-bold text-gray-700 dark:text-gray-300 uppercase tracking-wider"},"Class Options"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"44"," seats left"]],["DIV",{"class":"space-y-2.5"},["DIV",{"class":"flex items-center justify-between py-2 px-3 rounded-lg bg-gray-50/80 dark:bg-gray-800/40"},["DIV",{"class":"flex items-center gap-2.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 text-gray-500 dark:text-gray-400"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],["DIV",{"class":"flex flex-col"},["SPAN",{"class":"text-sm font-medium text-gray-700 dark:text-gray-300"},"Economy Regular"],["SPAN",{"class":"text-[11px] font-medium text-gray-400 dark:text-gray-500"},"44 seats left"]]],["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-base font-bold tabular-nums text-gray-900 dark:text-white"},"750.00"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium ml-1"},"ETB"]]]]],["P",{"class":"mt-4 pt-3 border-t border-gray-200/60 dark:border-gray-700/60 text-xs text-gray-400 dark:text-gray-500 italic text-center"},"Click to select this coach"]]]]]],["STYLE",{},"\n @keyframes drawer-slide-in{from{transform:translateX(100%)}to{transform:translateX(0)}}\n @keyframes fade-in-up{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}\n @keyframes scale-in{from{transform:scale(0)}to{transform:scale(1)}}\n "],[[3,218]],[[1,6]]]]]]]]],[[3,296]],[[2,11]]]],"viewport":{"width":1280,"height":720},"timestamp":33834.357,"wallTime":1784630694260,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@544","startTime":33835.198,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"coach-option\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@30","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@544"} +{"type":"frame-snapshot","snapshot":{"callId":"call@544","snapshotName":"before@call@544","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[4,29]],["BODY",{"class":"font-sans antialiased"},[[4,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[4,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,0]],[[1,76]],[[1,78]],[[4,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[4,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[4,264]],[[4,266]],[[4,268]],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[4,269]]]]]],[[4,283]]]]]]]]]]]],[[4,296]],[[3,11]]]],"viewport":{"width":1280,"height":720},"timestamp":33836.059,"wallTime":1784630694262,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@544","time":33836.161,"message":"waiting for getByTestId('coach-option').first()"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694263.jpeg","width":1280,"height":720,"timestamp":33836.844,"frameSwapWallTime":1784630694261.6748} +{"type":"log","callId":"call@544","time":33837.221,"message":" locator resolved to
"} +{"type":"log","callId":"call@544","time":33837.514,"message":"attempting click action"} +{"type":"log","callId":"call@544","time":33837.526,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@544","time":33855.285,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@544","time":33855.289,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@544","time":33855.516,"message":" done scrolling"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694282.jpeg","width":1280,"height":720,"timestamp":33855.891,"frameSwapWallTime":1784630694281.002} +{"type":"input","callId":"call@544","point":{"x":1155.35,"y":255.33},"inputSnapshot":"input@call@544"} +{"type":"frame-snapshot","snapshot":{"callId":"call@544","snapshotName":"input@call@544","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[5,29]],["BODY",{"class":"font-sans antialiased"},[[5,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[5,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[2,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,26]],[[2,72]]]]]],[[2,78]],[[5,218]],[[1,6]]]]]]]]],[[5,296]],[[4,11]]]],"viewport":{"width":1280,"height":720},"timestamp":33856.799,"wallTime":1784630694283,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@544","time":33857.464,"message":" performing click action"} +{"type":"log","callId":"call@544","time":33862.582,"message":" click action done"} +{"type":"log","callId":"call@544","time":33862.584,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@544","time":33862.748,"message":" navigations have finished"} +{"type":"after","callId":"call@544","endTime":33862.791,"afterSnapshot":"after@call@544"} +{"type":"frame-snapshot","snapshot":{"callId":"call@544","snapshotName":"after@call@544","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[6,29]],["BODY",{"class":"font-sans antialiased"},[[6,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[6,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[6,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[3,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[3,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-primary"},["SPAN",{"class":"w-2.5 h-2.5 rounded-full bg-primary animate-scale-in"}]],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-primary/15 dark:bg-primary/25 shadow-inner"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-primary"},[[3,27]],[[3,28]],[[3,29]],[[3,30]]]],["DIV",{"class":"flex-1 min-w-0"},[[3,36]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},[[3,38]],["SPAN",{"class":"text-2xl font-bold tracking-tight text-primary"},[[3,39]]]]]]],[[3,69]],["BUTTON",{"type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},["SPAN",{},"Continue to Passenger Details"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-right w-4 h-4"},["path",{"d":"M5 12h14"}],["path",{"d":"m12 5 7 7-7 7"}]]]]]]]],[[3,78]],[[6,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[6,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[6,264]],[[6,266]],[[6,268]],["P",{"class":"text-xs text-primary font-semibold mb-2"},"Standard Coach"," selected"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Change"]]]],[[6,283]]]]]]]]]]]],[[6,296]],[[5,11]]]],"viewport":{"width":1280,"height":720},"timestamp":33863.549,"wallTime":1784630694289,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@546","startTime":33864.191,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"continue-passenger-details\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@31","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@546"} +{"type":"frame-snapshot","snapshot":{"callId":"call@546","snapshotName":"before@call@546","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[7,29]],["BODY",{"class":"font-sans antialiased"},[[7,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[7,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[7,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[4,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[1,1]],[[1,15]]]]]],[[4,78]],[[7,218]],[[1,30]]]]]]]]],[[7,296]],[[6,11]]]],"viewport":{"width":1280,"height":720},"timestamp":33864.745,"wallTime":1784630694291,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@546","time":33864.835,"message":"waiting for getByTestId('continue-passenger-details').first()"} +{"type":"log","callId":"call@546","time":33865.523,"message":" locator resolved to "} +{"type":"log","callId":"call@546","time":33866.54,"message":"attempting click action"} +{"type":"log","callId":"call@546","time":33866.549,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@546","time":33890.411,"message":" element is not stable"} +{"type":"log","callId":"call@546","time":33890.422,"message":"retrying click action"} +{"type":"log","callId":"call@546","time":33890.44,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694317.jpeg","width":1280,"height":720,"timestamp":33890.807,"frameSwapWallTime":1784630694315.76} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694337.jpeg","width":1280,"height":720,"timestamp":33910.959,"frameSwapWallTime":1784630694335.835} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694356.jpeg","width":1280,"height":720,"timestamp":33930.307,"frameSwapWallTime":1784630694355.248} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694377.jpeg","width":1280,"height":720,"timestamp":33951.034,"frameSwapWallTime":1784630694375.977} +{"type":"log","callId":"call@546","time":33970.354,"message":" element is not stable"} +{"type":"log","callId":"call@546","time":33970.365,"message":"retrying click action"} +{"type":"log","callId":"call@546","time":33970.367,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694398.jpeg","width":1280,"height":720,"timestamp":33971.395,"frameSwapWallTime":1784630694396.399} +{"type":"log","callId":"call@546","time":33991.164,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694419.jpeg","width":1280,"height":720,"timestamp":33992.429,"frameSwapWallTime":1784630694417.41} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694440.jpeg","width":1280,"height":720,"timestamp":34013.346,"frameSwapWallTime":1784630694438.295} +{"type":"log","callId":"call@546","time":34034.528,"message":" element is not stable"} +{"type":"log","callId":"call@546","time":34034.539,"message":"retrying click action"} +{"type":"log","callId":"call@546","time":34034.54,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694461.jpeg","width":1280,"height":720,"timestamp":34034.809,"frameSwapWallTime":1784630694459.734} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694483.jpeg","width":1280,"height":720,"timestamp":34056.823,"frameSwapWallTime":1784630694481.745} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694504.jpeg","width":1280,"height":720,"timestamp":34078.2,"frameSwapWallTime":1784630694503.0989} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694526.jpeg","width":1280,"height":720,"timestamp":34099.387,"frameSwapWallTime":1784630694524.421} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694547.jpeg","width":1280,"height":720,"timestamp":34120.9,"frameSwapWallTime":1784630694545.807} +{"type":"log","callId":"call@546","time":34136.834,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694568.jpeg","width":1280,"height":720,"timestamp":34141.77,"frameSwapWallTime":1784630694566.771} +{"type":"log","callId":"call@546","time":34162.84,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@546","time":34162.853,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@546","time":34163.506,"message":" done scrolling"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694590.jpeg","width":1280,"height":720,"timestamp":34163.857,"frameSwapWallTime":1784630694588.892} +{"type":"input","callId":"call@546","point":{"x":330.66,"y":346.5},"inputSnapshot":"input@call@546"} +{"type":"frame-snapshot","snapshot":{"callId":"call@546","snapshotName":"input@call@546","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[8,29]],["BODY",{"class":"font-sans antialiased"},[[8,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[8,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[8,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[5,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,1]],["DIV",{"class":"flex flex-col"},[[2,8]],[[5,69]],["BUTTON",{"__playwright_target__":"","type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},[[2,10]],[[2,13]]]]]]]],[[5,78]],[[8,218]],[[2,30]]]]]]]]],[[8,296]],[[7,11]]]],"viewport":{"width":1280,"height":720},"timestamp":34164.847,"wallTime":1784630694591,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@546","time":34165.488,"message":" performing click action"} +{"type":"log","callId":"call@546","time":34171.466,"message":" click action done"} +{"type":"log","callId":"call@546","time":34171.472,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@546","time":34171.714,"message":" navigations have finished"} +{"type":"after","callId":"call@546","endTime":34171.768,"afterSnapshot":"after@call@546"} +{"type":"frame-snapshot","snapshot":{"callId":"call@546","snapshotName":"after@call@546","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=2&children=3&nationality=ETHIOPIAN","doctype":"html","html":[[1,14]],"viewport":{"width":1280,"height":720},"timestamp":34172.53,"wallTime":1784630694599,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@548","startTime":34173.249,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"2ba34d390dbf6ac34bdd4356f1b47b69","phase":"before","event":""},"stepId":"pw:api@32","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"log","callId":"call@548","time":34173.273,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694610.jpeg","width":1280,"height":720,"timestamp":34183.94,"frameSwapWallTime":1784630694608.9211} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694629.jpeg","width":1280,"height":720,"timestamp":34203.122,"frameSwapWallTime":1784630694628.134} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694650.jpeg","width":1280,"height":720,"timestamp":34223.453,"frameSwapWallTime":1784630694648.453} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694670.jpeg","width":1280,"height":720,"timestamp":34244.286,"frameSwapWallTime":1784630694669.097} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694709.jpeg","width":1280,"height":720,"timestamp":34282.924,"frameSwapWallTime":1784630694693.076} +{"type":"log","callId":"call@548","time":34283.03,"message":" navigated to \"http://localhost:5174/booking/auth-check\""} +{"type":"after","callId":"call@548","endTime":34283.068} +{"type":"before","callId":"call@553","startTime":34283.123,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"48aa2ed3b28b7bffe906f26956f7d110","phase":"before","event":""},"stepId":"pw:api@33","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"log","callId":"call@553","time":34283.138,"message":"waiting for navigation until \"load\""} +{"type":"before","callId":"call@556","startTime":34283.157,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue as guest/i]","strict":true,"timeout":15000},"stepId":"pw:api@34","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@556"} +{"type":"frame-snapshot","snapshot":{"callId":"call@556","snapshotName":"before@call@556","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/auth-check","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[10,0]],[[10,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[10,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[10,36]],[[10,43]],[[10,47]],[[10,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[10,55]],["OL",{"class":"space-y-1"},[[10,61]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[10,64]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[10,67]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[10,69]]]],[[10,76]],[[10,81]],[[10,86]],[[10,91]]]]],[[10,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[10,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[10,132]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[10,139]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[10,142]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[10,143]]]],[[10,146]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[10,148]]]],[[10,159]],[[10,168]],[[10,177]],[[10,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center px-4"},["DIV",{"class":"w-full max-w-sm"},["H1",{"class":"text-2xl font-bold text-center text-gray-900 dark:text-gray-100 mb-1"},"Continue your booking"],["P",{"class":"text-sm text-center text-gray-500 dark:text-gray-400 mb-8"},"Choose how you'd like to proceed"],["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"relative"},["BUTTON",{"class":"w-full flex items-center justify-center gap-2.5 px-5 py-3.5 bg-primary hover:bg-primary/90 active:scale-[0.98] text-white font-semibold rounded-xl transition-all shadow-md shadow-primary/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-user-plus w-5 h-5 flex-shrink-0"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["line",{"x1":"19","x2":"19","y1":"8","y2":"14"}],["line",{"x1":"22","x2":"16","y1":"11","y2":"11"}]],"Continue as guest"],["DIV",{"role":"tooltip","class":"absolute bottom-[calc(100%+8px)] left-1/2 -translate-x-1/2 w-52 bg-gray-900 dark:bg-gray-700 text-white text-xs rounded-lg px-3 py-2.5 shadow-xl pointer-events-none transition-all duration-150 z-50 opacity-0 translate-y-1"},["UL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"No account required"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Quick checkout"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Create account later (optional)"]],["DIV",{"class":"absolute top-full left-1/2 -translate-x-1/2 border-4 border-transparent border-t-gray-900 dark:border-t-gray-700"}]]]],["DIV",{"class":"mt-8 text-center"},["BUTTON",{"class":"inline-flex items-center gap-1.5 text-sm text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back to results"]]]]]]]],[[10,296]],[[9,11]]]],"viewport":{"width":1280,"height":720},"timestamp":34284.679,"wallTime":1784630694710,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@556","time":34284.864,"message":"waiting for getByRole('button', { name: /continue as guest/i })"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694725.jpeg","width":1280,"height":720,"timestamp":34298.494,"frameSwapWallTime":1784630694713.389} +{"type":"log","callId":"call@556","time":34298.763,"message":" locator resolved to "} +{"type":"log","callId":"call@556","time":34299.245,"message":"attempting click action"} +{"type":"log","callId":"call@556","time":34299.261,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@556","time":34309.716,"message":" element is not stable"} +{"type":"log","callId":"call@556","time":34309.726,"message":"retrying click action"} +{"type":"log","callId":"call@556","time":34309.746,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694737.jpeg","width":1280,"height":720,"timestamp":34310.33,"frameSwapWallTime":1784630694735.3489} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694740.jpeg","width":1280,"height":720,"timestamp":34314.225,"frameSwapWallTime":1784630694739.389} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694748.jpeg","width":1280,"height":720,"timestamp":34322.048,"frameSwapWallTime":1784630694747.107} +{"type":"log","callId":"call@556","time":34324.779,"message":" element is not stable"} +{"type":"log","callId":"call@556","time":34324.782,"message":"retrying click action"} +{"type":"log","callId":"call@556","time":34324.784,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694756.jpeg","width":1280,"height":720,"timestamp":34330.227,"frameSwapWallTime":1784630694755.2258} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694764.jpeg","width":1280,"height":720,"timestamp":34338.026,"frameSwapWallTime":1784630694763.116} +{"type":"log","callId":"call@556","time":34346.106,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694781.jpeg","width":1280,"height":720,"timestamp":34354.973,"frameSwapWallTime":1784630694779.813} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694790.jpeg","width":1280,"height":720,"timestamp":34364.105,"frameSwapWallTime":1784630694789.139} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694798.jpeg","width":1280,"height":720,"timestamp":34371.977,"frameSwapWallTime":1784630694797.028} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694806.jpeg","width":1280,"height":720,"timestamp":34380.113,"frameSwapWallTime":1784630694805.205} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694823.jpeg","width":1280,"height":720,"timestamp":34396.759,"frameSwapWallTime":1784630694821.6382} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694831.jpeg","width":1280,"height":720,"timestamp":34405.068,"frameSwapWallTime":1784630694830.2131} +{"type":"log","callId":"call@556","time":34444.859,"message":" element is not stable"} +{"type":"log","callId":"call@556","time":34444.863,"message":"retrying click action"} +{"type":"log","callId":"call@556","time":34444.866,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694872.jpeg","width":1280,"height":720,"timestamp":34445.477,"frameSwapWallTime":1784630694863.505} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694872.jpeg","width":1280,"height":720,"timestamp":34445.602,"frameSwapWallTime":1784630694864.1501} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694872.jpeg","width":1280,"height":720,"timestamp":34445.804,"frameSwapWallTime":1784630694865.584} +{"type":"log","callId":"call@553","time":34448.447,"message":" navigated to \"http://localhost:5174/booking/passengers\""} +{"type":"after","callId":"call@553","endTime":34448.457} +{"type":"before","callId":"call@560","startTime":34448.558,"title":"Wait for load state \"load\"","class":"Page","method":"__waitInfo__","params":{"waitId":"780d6cd328213edee407217e011215e7","phase":"before","event":""},"stepId":"pw:api@35","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"log","callId":"call@560","time":34448.58,"message":" not waiting, \"load\" event already fired"} +{"type":"after","callId":"call@560","endTime":34448.584} +{"type":"before","callId":"call@564","startTime":34448.618,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@36","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@564"} +{"type":"before","callId":"call@566","startTime":34448.874,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@37","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@566"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694876.jpeg","width":1280,"height":720,"timestamp":34449.337,"frameSwapWallTime":1784630694874.253} +{"type":"frame-snapshot","snapshot":{"callId":"call@564","snapshotName":"before@call@564","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[11,0]],[[11,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[11,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Passenger details"],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","1"," ","(Primary)"," - Adult",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Ethiopian",")"]],["DIV",{"class":"text-center py-8"},["P",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-4"},"Fayda verification is currently unavailable"],["BUTTON",{"type":"button","class":"btn-primary"},"Enter details manually"]]],["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","2"," "," - Adult",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Ethiopian",")"]],["DIV",{"class":"text-center py-8"},["P",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-4"},"Fayda verification is currently unavailable"],["BUTTON",{"type":"button","class":"btn-primary"},"Enter details manually"]]],["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","3"," "," - Child",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Ethiopian",")"]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.2.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.2.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"ETHIOPIAN","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.2.nationality"}]],["DIV",{"class":"md:col-span-2 p-3 bg-gray-50 dark:bg-gray-800 rounded-lg text-sm text-gray-600 dark:text-gray-400"},"Contact details (phone & email) are shared with the primary passenger and don't need to be entered separately."]]]],["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","4"," "," - Child",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Ethiopian",")"]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.3.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.3.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"ETHIOPIAN","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.3.nationality"}]],["DIV",{"class":"md:col-span-2 p-3 bg-gray-50 dark:bg-gray-800 rounded-lg text-sm text-gray-600 dark:text-gray-400"},"Contact details (phone & email) are shared with the primary passenger and don't need to be entered separately."]]]],["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","5"," "," - Child",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Ethiopian",")"]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.4.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.4.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"ETHIOPIAN","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.4.nationality"}]],["DIV",{"class":"md:col-span-2 p-3 bg-gray-50 dark:bg-gray-800 rounded-lg text-sm text-gray-600 dark:text-gray-400"},"Contact details (phone & email) are shared with the primary passenger and don't need to be entered separately."]]]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},"Continue to seat selection"]]]]]]]]]],[[11,296]],[[10,11]]]],"viewport":{"width":1280,"height":720},"timestamp":34450.63,"wallTime":1784630694876,"collectionTime":1.0999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@564","time":34450.941,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@566","snapshotName":"before@call@566","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,227]],"viewport":{"width":1280,"height":720},"timestamp":34451.334,"wallTime":1784630694877,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@566","time":34451.488,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"log","callId":"call@566","time":34454.157,"message":" locator resolved to visible "} +{"type":"after","callId":"call@566","endTime":34454.212,"result":{},"afterSnapshot":"after@call@566"} +{"type":"frame-snapshot","snapshot":{"callId":"call@566","snapshotName":"after@call@566","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,227]],"viewport":{"width":1280,"height":720},"timestamp":34454.874,"wallTime":1784630694881,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@568","startTime":34455.559,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true},"stepId":"pw:api@38","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@568"} +{"type":"frame-snapshot","snapshot":{"callId":"call@568","snapshotName":"before@call@568","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,227]],"viewport":{"width":1280,"height":720},"timestamp":34456.322,"wallTime":1784630694882,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@568","time":34456.48,"message":" checking visibility of locator('input[name=\"passengers.0.name\"]')"} +{"type":"after","callId":"call@568","endTime":34457.154,"result":{"value":false},"afterSnapshot":"after@call@568"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694884.jpeg","width":1280,"height":720,"timestamp":34457.728,"frameSwapWallTime":1784630694882.501} +{"type":"frame-snapshot","snapshot":{"callId":"call@568","snapshotName":"after@call@568","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,227]],"viewport":{"width":1280,"height":720},"timestamp":34458.058,"wallTime":1784630694884,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@570","startTime":34460.698,"class":"Frame","method":"isVisible","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true},"stepId":"pw:api@39","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@570"} +{"type":"frame-snapshot","snapshot":{"callId":"call@570","snapshotName":"before@call@570","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,227]],"viewport":{"width":1280,"height":720},"timestamp":34461.49,"wallTime":1784630694888,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@570","time":34461.645,"message":" checking visibility of locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"after","callId":"call@570","endTime":34462.606,"result":{"value":true},"afterSnapshot":"after@call@570"} +{"type":"frame-snapshot","snapshot":{"callId":"call@570","snapshotName":"after@call@570","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,227]],"viewport":{"width":1280,"height":720},"timestamp":34463.299,"wallTime":1784630694889,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@572","startTime":34463.915,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@40","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@572"} +{"type":"frame-snapshot","snapshot":{"callId":"call@572","snapshotName":"before@call@572","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,227]],"viewport":{"width":1280,"height":720},"timestamp":34464.549,"wallTime":1784630694891,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@572","time":34464.677,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694892.jpeg","width":1280,"height":720,"timestamp":34465.773,"frameSwapWallTime":1784630694890.77} +{"type":"log","callId":"call@572","time":34465.891,"message":" locator resolved to "} +{"type":"log","callId":"call@572","time":34466.282,"message":"attempting click action"} +{"type":"log","callId":"call@572","time":34466.3,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694908.jpeg","width":1280,"height":720,"timestamp":34482.252,"frameSwapWallTime":1784630694907.1382} +{"type":"log","callId":"call@572","time":34483.131,"message":" element is not stable"} +{"type":"log","callId":"call@572","time":34483.136,"message":"retrying click action"} +{"type":"log","callId":"call@572","time":34483.152,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694917.jpeg","width":1280,"height":720,"timestamp":34490.403,"frameSwapWallTime":1784630694915.355} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694924.jpeg","width":1280,"height":720,"timestamp":34498.279,"frameSwapWallTime":1784630694923.2349} +{"type":"log","callId":"call@572","time":34499.098,"message":" element is not stable"} +{"type":"log","callId":"call@572","time":34499.106,"message":"retrying click action"} +{"type":"log","callId":"call@572","time":34499.107,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694942.jpeg","width":1280,"height":720,"timestamp":34516.164,"frameSwapWallTime":1784630694940.9028} +{"type":"log","callId":"call@572","time":34521.053,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694950.jpeg","width":1280,"height":720,"timestamp":34524.108,"frameSwapWallTime":1784630694948.936} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694959.jpeg","width":1280,"height":720,"timestamp":34532.458,"frameSwapWallTime":1784630694957.386} +{"type":"log","callId":"call@572","time":34533.087,"message":" element is not stable"} +{"type":"log","callId":"call@572","time":34533.093,"message":"retrying click action"} +{"type":"log","callId":"call@572","time":34533.095,"message":" waiting 100ms"} +{"type":"log","callId":"call@556","time":34546.125,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694975.jpeg","width":1280,"height":720,"timestamp":34549.036,"frameSwapWallTime":1784630694973.898} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694983.jpeg","width":1280,"height":720,"timestamp":34557.181,"frameSwapWallTime":1784630694982.008} +{"type":"log","callId":"call@556","time":34557.427,"message":"element was detached from the DOM, retrying"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630694991.jpeg","width":1280,"height":720,"timestamp":34564.566,"frameSwapWallTime":1784630694989.4832} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695000.jpeg","width":1280,"height":720,"timestamp":34573.953,"frameSwapWallTime":1784630694998.91} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695017.jpeg","width":1280,"height":720,"timestamp":34590.906,"frameSwapWallTime":1784630695015.516} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695025.jpeg","width":1280,"height":720,"timestamp":34599.222,"frameSwapWallTime":1784630695023.9119} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695034.jpeg","width":1280,"height":720,"timestamp":34607.57,"frameSwapWallTime":1784630695032.254} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695050.jpeg","width":1280,"height":720,"timestamp":34624.261,"frameSwapWallTime":1784630695048.9421} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695058.jpeg","width":1280,"height":720,"timestamp":34632.278,"frameSwapWallTime":1784630695057.167} +{"type":"log","callId":"call@572","time":34633.65,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695067.jpeg","width":1280,"height":720,"timestamp":34640.924,"frameSwapWallTime":1784630695065.613} +{"type":"log","callId":"call@572","time":34649.939,"message":" element is not stable"} +{"type":"log","callId":"call@572","time":34649.947,"message":"retrying click action"} +{"type":"log","callId":"call@572","time":34649.949,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695083.jpeg","width":1280,"height":720,"timestamp":34657.26,"frameSwapWallTime":1784630695082.13} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695091.jpeg","width":1280,"height":720,"timestamp":34665.226,"frameSwapWallTime":1784630695090.121} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695100.jpeg","width":1280,"height":720,"timestamp":34673.706,"frameSwapWallTime":1784630695098.552} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695117.jpeg","width":1280,"height":720,"timestamp":34690.589,"frameSwapWallTime":1784630695115.459} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695124.jpeg","width":1280,"height":720,"timestamp":34698.312,"frameSwapWallTime":1784630695123.1948} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695132.jpeg","width":1280,"height":720,"timestamp":34706.139,"frameSwapWallTime":1784630695131.075} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695150.jpeg","width":1280,"height":720,"timestamp":34723.846,"frameSwapWallTime":1784630695148.7} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695158.jpeg","width":1280,"height":720,"timestamp":34731.587,"frameSwapWallTime":1784630695156.5361} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695166.jpeg","width":1280,"height":720,"timestamp":34739.649,"frameSwapWallTime":1784630695164.461} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695176.jpeg","width":1280,"height":720,"timestamp":34749.319,"frameSwapWallTime":1784630695174.0698} +{"type":"log","callId":"call@572","time":34751.274,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695192.jpeg","width":1280,"height":720,"timestamp":34765.489,"frameSwapWallTime":1784630695190.294} +{"type":"log","callId":"call@572","time":34766.588,"message":" element is not stable"} +{"type":"log","callId":"call@572","time":34766.595,"message":"retrying click action"} +{"type":"log","callId":"call@572","time":34766.596,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695200.jpeg","width":1280,"height":720,"timestamp":34773.691,"frameSwapWallTime":1784630695198.569} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695206.jpeg","width":1280,"height":720,"timestamp":34779.724,"frameSwapWallTime":1784630695204.5579} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695215.jpeg","width":1280,"height":720,"timestamp":34788.577,"frameSwapWallTime":1784630695213.382} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695231.jpeg","width":1280,"height":720,"timestamp":34804.773,"frameSwapWallTime":1784630695229.542} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695239.jpeg","width":1280,"height":720,"timestamp":34812.949,"frameSwapWallTime":1784630695237.7952} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695248.jpeg","width":1280,"height":720,"timestamp":34821.336,"frameSwapWallTime":1784630695246.0388} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695264.jpeg","width":1280,"height":720,"timestamp":34837.861,"frameSwapWallTime":1784630695262.775} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695272.jpeg","width":1280,"height":720,"timestamp":34846.138,"frameSwapWallTime":1784630695270.963} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695281.jpeg","width":1280,"height":720,"timestamp":34854.564,"frameSwapWallTime":1784630695279.412} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695297.jpeg","width":1280,"height":720,"timestamp":34870.972,"frameSwapWallTime":1784630695295.844} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695306.jpeg","width":1280,"height":720,"timestamp":34879.333,"frameSwapWallTime":1784630695304.2642} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695314.jpeg","width":1280,"height":720,"timestamp":34887.692,"frameSwapWallTime":1784630695312.601} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695322.jpeg","width":1280,"height":720,"timestamp":34896.01,"frameSwapWallTime":1784630695320.89} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695339.jpeg","width":1280,"height":720,"timestamp":34913.083,"frameSwapWallTime":1784630695337.726} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695348.jpeg","width":1280,"height":720,"timestamp":34921.357,"frameSwapWallTime":1784630695346.153} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695356.jpeg","width":1280,"height":720,"timestamp":34929.58,"frameSwapWallTime":1784630695354.364} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695364.jpeg","width":1280,"height":720,"timestamp":34937.66,"frameSwapWallTime":1784630695362.539} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695381.jpeg","width":1280,"height":720,"timestamp":34954.512,"frameSwapWallTime":1784630695379.359} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695389.jpeg","width":1280,"height":720,"timestamp":34962.707,"frameSwapWallTime":1784630695387.6108} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695397.jpeg","width":1280,"height":720,"timestamp":34970.993,"frameSwapWallTime":1784630695395.944} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695614.jpeg","width":1280,"height":720,"timestamp":35187.927,"frameSwapWallTime":1784630695612.7888} +{"type":"log","callId":"call@572","time":35267.376,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@572","time":35282.891,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@572","time":35282.904,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@572","time":35283.587,"message":" done scrolling"} +{"type":"input","callId":"call@572","point":{"x":768,"y":254},"inputSnapshot":"input@call@572"} +{"type":"frame-snapshot","snapshot":{"callId":"call@572","snapshotName":"input@call@572","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[8,227]],"viewport":{"width":1280,"height":720},"timestamp":35284.824,"wallTime":1784630695711,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@572","time":35285.603,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695714.jpeg","width":1280,"height":720,"timestamp":35287.514,"frameSwapWallTime":1784630695712.2778} +{"type":"log","callId":"call@572","time":35292.356,"message":" click action done"} +{"type":"log","callId":"call@572","time":35292.364,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@572","time":35292.667,"message":" navigations have finished"} +{"type":"after","callId":"call@572","endTime":35292.716,"afterSnapshot":"after@call@572"} +{"type":"frame-snapshot","snapshot":{"callId":"call@572","snapshotName":"after@call@572","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[9,27]],["BODY",{"class":"font-sans antialiased"},[[10,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[20,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[10,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[9,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[9,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"ETHIOPIAN","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.0.nationality"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Phone Number *"],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},["DIV",{"class":"flex items-center gap-1.5 px-3 py-2.5 bg-gray-50 dark:bg-gray-800 border-r border-gray-300 dark:border-gray-600 select-none flex-shrink-0"},["SPAN",{"class":"text-sm leading-none"},"🇪🇹"],["SPAN",{"class":"text-xs font-semibold text-gray-600 dark:text-gray-300"},"+251"]],["INPUT",{"__playwright_value_":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],["P",{"class":"text-xs text-gray-400 dark:text-gray-500 mt-1"},"Format: ","+251912345678 or 0912345678"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Email (optional)"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"email@example.com","type":"email","name":"passengers.0.email"}]]]]],[[9,60]],[[9,110]],[[9,160]],[[9,210]],[[9,217]]]]]]]]]],[[20,296]],[[19,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35293.797,"wallTime":1784630695720,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@574","startTime":35294.581,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@41","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@574"} +{"type":"frame-snapshot","snapshot":{"callId":"call@574","snapshotName":"before@call@574","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,66]],"viewport":{"width":1280,"height":720},"timestamp":35295.311,"wallTime":1784630695721,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@574","time":35295.469,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695722.jpeg","width":1280,"height":720,"timestamp":35295.896,"frameSwapWallTime":1784630695720.429} +{"type":"log","callId":"call@574","time":35296.453,"message":" locator resolved to visible "} +{"type":"after","callId":"call@574","endTime":35296.467,"result":{},"afterSnapshot":"after@call@574"} +{"type":"frame-snapshot","snapshot":{"callId":"call@574","snapshotName":"after@call@574","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,66]],"viewport":{"width":1280,"height":720},"timestamp":35297.115,"wallTime":1784630695723,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@576","startTime":35297.745,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"value":"Adult 1","timeout":15000},"stepId":"pw:api@42","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@576"} +{"type":"frame-snapshot","snapshot":{"callId":"call@576","snapshotName":"before@call@576","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,66]],"viewport":{"width":1280,"height":720},"timestamp":35298.44,"wallTime":1784630695725,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@576","time":35298.573,"message":"waiting for locator('input[name=\"passengers.0.name\"]')"} +{"type":"log","callId":"call@576","time":35299.344,"message":" locator resolved to "} +{"type":"log","callId":"call@576","time":35299.656,"message":" fill(\"Adult 1\")"} +{"type":"log","callId":"call@576","time":35299.659,"message":"attempting fill action"} +{"type":"input","callId":"call@576","inputSnapshot":"input@call@576"} +{"type":"frame-snapshot","snapshot":{"callId":"call@576","snapshotName":"input@call@576","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[13,27]],["BODY",{"class":"font-sans antialiased"},[[14,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[24,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[14,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[13,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[13,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[4,1]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[4,21]],[[4,31]],[[4,35]],[[4,49]],[[4,53]]]]],[[13,60]],[[13,110]],[[13,160]],[[13,210]],[[13,217]]]]]]]]]],[[24,296]],[[23,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35300.359,"wallTime":1784630695726,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@576","time":35300.421,"message":" waiting for element to be visible, enabled and editable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695731.jpeg","width":1280,"height":720,"timestamp":35304.805,"frameSwapWallTime":1784630695729.483} +{"type":"after","callId":"call@576","endTime":35305.718,"afterSnapshot":"after@call@576"} +{"type":"frame-snapshot","snapshot":{"callId":"call@576","snapshotName":"after@call@576","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[14,27]],["BODY",{"class":"font-sans antialiased"},[[15,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[25,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[15,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[14,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[14,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[5,1]],["INPUT",{"__playwright_value_":"Adult 1","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[5,21]],[[5,31]],[[5,35]],[[5,49]],[[5,53]]]]],[[14,60]],[[14,110]],[[14,160]],[[14,210]],[[14,217]]]]]]]]]],[[25,296]],[[24,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35306.49,"wallTime":1784630695733,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@578","startTime":35307.207,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.0.gender\"]","strict":true,"options":[{"valueOrLabel":"Male"}],"timeout":15000},"stepId":"pw:api@43","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@578"} +{"type":"frame-snapshot","snapshot":{"callId":"call@578","snapshotName":"before@call@578","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[15,27]],["BODY",{"class":"font-sans antialiased"},[[16,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[26,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[16,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[15,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[15,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[6,1]],["INPUT",{"__playwright_value_":"Adult 1","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[6,21]],[[6,31]],[[6,35]],[[6,49]],[[6,53]]]]],[[15,60]],[[15,110]],[[15,160]],[[15,210]],[[15,217]]]]]]]]]],[[26,296]],[[25,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35307.997,"wallTime":1784630695734,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@578","time":35308.139,"message":"waiting for locator('select[name=\"passengers.0.gender\"]')"} +{"type":"log","callId":"call@578","time":35309.2,"message":" locator resolved to "} +{"type":"log","callId":"call@578","time":35309.472,"message":"attempting select option action"} +{"type":"input","callId":"call@578","inputSnapshot":"input@call@578"} +{"type":"frame-snapshot","snapshot":{"callId":"call@578","snapshotName":"input@call@578","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[16,27]],["BODY",{"class":"font-sans antialiased"},[[17,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[27,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[17,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[16,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[16,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[7,21]],["DIV",{},[[7,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},[[7,25]],[[7,27]],[[7,29]]]],[[7,35]],[[7,49]],[[7,53]]]]],[[16,60]],[[16,110]],[[16,160]],[[16,210]],[[16,217]]]]]]]]]],[[27,296]],[[26,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35310.234,"wallTime":1784630695736,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@578","time":35310.339,"message":" waiting for element to be visible and enabled"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695739.jpeg","width":1280,"height":720,"timestamp":35312.605,"frameSwapWallTime":1784630695737.396} +{"type":"log","callId":"call@578","time":35312.75,"message":" selected specified option(s)"} +{"type":"after","callId":"call@578","endTime":35312.792,"result":{"values":["Male"]},"afterSnapshot":"after@call@578"} +{"type":"frame-snapshot","snapshot":{"callId":"call@578","snapshotName":"after@call@578","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[17,27]],["BODY",{"class":"font-sans antialiased"},[[18,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[28,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[18,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[17,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[17,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[8,21]],["DIV",{},[[8,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[8,24]]],["OPTION",{"__playwright_selected_":"true","value":"Male"},[[8,26]]],[[8,29]]]],[[8,35]],[[8,49]],[[8,53]]]]],[[17,60]],[[17,110]],[[17,160]],[[17,210]],[[17,217]]]]]]]]]],[[28,296]],[[27,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35313.74,"wallTime":1784630695740,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@580","startTime":35314.37,"class":"Frame","method":"fill","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> input[type=\"tel\"] >> nth=0","strict":true,"value":"912345678","timeout":15000},"stepId":"pw:api@44","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@580"} +{"type":"frame-snapshot","snapshot":{"callId":"call@580","snapshotName":"before@call@580","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[18,27]],["BODY",{"class":"font-sans antialiased"},[[19,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[29,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[19,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[18,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[18,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[9,21]],["DIV",{},[[9,23]],["SELECT",{"name":"passengers.0.gender","class":"input-field "},[[1,0]],[[1,1]],[[9,29]]]],[[9,35]],[[9,49]],[[9,53]]]]],[[18,60]],[[18,110]],[[18,160]],[[18,210]],[[18,217]]]]]]]]]],[[29,296]],[[28,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35315.039,"wallTime":1784630695741,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@580","time":35315.165,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).locator('input[type=\"tel\"]').first()"} +{"type":"log","callId":"call@580","time":35316.9,"message":" locator resolved to "} +{"type":"log","callId":"call@580","time":35317.178,"message":" fill(\"912345678\")"} +{"type":"log","callId":"call@580","time":35317.18,"message":"attempting fill action"} +{"type":"input","callId":"call@580","inputSnapshot":"input@call@580"} +{"type":"frame-snapshot","snapshot":{"callId":"call@580","snapshotName":"input@call@580","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[19,27]],["BODY",{"class":"font-sans antialiased"},[[20,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[30,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[20,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[19,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[19,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],[[10,21]],[[1,1]],[[10,35]],["DIV",{},[[10,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[10,42]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],[[10,47]]]],[[10,53]]]]],[[19,60]],[[19,110]],[[19,160]],[[19,210]],[[19,217]]]]]]]]]],[[30,296]],[[29,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35317.953,"wallTime":1784630695744,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@580","time":35318.031,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@580","endTime":35322.85,"afterSnapshot":"after@call@580"} +{"type":"frame-snapshot","snapshot":{"callId":"call@580","snapshotName":"after@call@580","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[20,27]],["BODY",{"class":"font-sans antialiased"},[[21,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[31,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[21,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[20,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[20,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],[[11,21]],[[2,1]],[[11,35]],["DIV",{},[[11,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[11,42]],["INPUT",{"__playwright_value_":"912345678","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[11,47]]]],[[11,53]]]]],[[20,60]],[[20,110]],[[20,160]],[[20,210]],[[20,217]]]]]]]]]],[[31,296]],[[30,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35323.667,"wallTime":1784630695750,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@582","startTime":35324.341,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@45","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@582"} +{"type":"frame-snapshot","snapshot":{"callId":"call@582","snapshotName":"before@call@582","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[21,27]],["BODY",{"class":"font-sans antialiased"},[[22,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[32,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[22,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[21,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[21,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],[[12,21]],[[3,1]],[[12,35]],["DIV",{},[[12,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[12,42]],["INPUT",{"__playwright_value_":"912345678","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[12,47]]]],[[12,53]]]]],[[21,60]],[[21,110]],[[21,160]],[[21,210]],[[21,217]]]]]]]]]],[[32,296]],[[31,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35325.048,"wallTime":1784630695751,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@582","time":35325.167,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"log","callId":"call@582","time":35326.607,"message":" locator resolved to "} +{"type":"log","callId":"call@582","time":35326.82,"message":"attempting click action"} +{"type":"log","callId":"call@582","time":35326.829,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695756.jpeg","width":1280,"height":720,"timestamp":35330.233,"frameSwapWallTime":1784630695754.984} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695765.jpeg","width":1280,"height":720,"timestamp":35338.466,"frameSwapWallTime":1784630695763.1782} +{"type":"log","callId":"call@582","time":35341.317,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@582","time":35341.323,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@582","time":35341.678,"message":" done scrolling"} +{"type":"input","callId":"call@582","point":{"x":1007.5,"y":210},"inputSnapshot":"input@call@582"} +{"type":"frame-snapshot","snapshot":{"callId":"call@582","snapshotName":"input@call@582","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,16]],"viewport":{"width":1280,"height":720},"timestamp":35342.798,"wallTime":1784630695769,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@582","time":35343.338,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695773.jpeg","width":1280,"height":720,"timestamp":35346.596,"frameSwapWallTime":1784630695771.373} +{"type":"log","callId":"call@582","time":35352.955,"message":" click action done"} +{"type":"log","callId":"call@582","time":35352.96,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@582","time":35353.553,"message":" navigations have finished"} +{"type":"after","callId":"call@582","endTime":35353.601,"afterSnapshot":"after@call@582"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695781.jpeg","width":1280,"height":720,"timestamp":35355.044,"frameSwapWallTime":1784630695779.765} +{"type":"frame-snapshot","snapshot":{"callId":"call@582","snapshotName":"after@call@582","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[23,27]],["BODY",{"class":"font-sans antialiased"},[[24,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[34,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[24,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[23,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[23,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],["DIV",{},[[14,5]],["DIV",{},[[14,19]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2020"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2019"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2018"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2017"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2016"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2015"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2014"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2013"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2012"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2011"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2010"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2009"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2008"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2007"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2006"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2005"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2004"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2003"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2002"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2001"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2000"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1999"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1998"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1997"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1996"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1995"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1994"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1993"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1992"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1991"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1990"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1989"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1988"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1987"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1986"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1985"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1984"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1983"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1982"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1981"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1980"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1979"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1978"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1977"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1976"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1975"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1974"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1973"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1972"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1971"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1970"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1969"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1968"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1967"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1966"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1965"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1964"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1963"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1962"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1961"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1960"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1959"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1958"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1957"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1956"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1955"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1954"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1953"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1952"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1951"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1950"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1949"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1948"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1947"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1946"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1945"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1944"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1943"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1942"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1941"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1940"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1939"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1938"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1937"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1936"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1935"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1934"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1933"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1932"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1931"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1930"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1929"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1928"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1927"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1926"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1925"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1924"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1923"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1922"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1921"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1920"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1919"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1918"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1917"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1916"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2000"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[5,1]],[[14,35]],[[2,3]],[[14,53]]]]],[[23,60]],[[23,110]],[[23,160]],[[23,210]],[[23,217]]]]]]]]]],[[34,296]],[[33,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35356.034,"wallTime":1784630695781,"collectionTime":1.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@584","startTime":35356.89,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@46","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@584"} +{"type":"frame-snapshot","snapshot":{"callId":"call@584","snapshotName":"before@call@584","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,358]],"viewport":{"width":1280,"height":720},"timestamp":35357.994,"wallTime":1784630695784,"collectionTime":0.7999999970197678,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@584","time":35358.144,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@584","time":35360.696,"message":" locator resolved to "} +{"type":"log","callId":"call@584","time":35360.996,"message":"attempting click action"} +{"type":"log","callId":"call@584","time":35361.013,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695799.jpeg","width":1280,"height":720,"timestamp":35373.217,"frameSwapWallTime":1784630695797.966} +{"type":"log","callId":"call@584","time":35374.046,"message":" element is not stable"} +{"type":"log","callId":"call@584","time":35374.051,"message":"retrying click action"} +{"type":"log","callId":"call@584","time":35374.067,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695807.jpeg","width":1280,"height":720,"timestamp":35380.572,"frameSwapWallTime":1784630695805.389} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695817.jpeg","width":1280,"height":720,"timestamp":35390.4,"frameSwapWallTime":1784630695815.239} +{"type":"log","callId":"call@584","time":35391.503,"message":" element is not stable"} +{"type":"log","callId":"call@584","time":35391.509,"message":"retrying click action"} +{"type":"log","callId":"call@584","time":35391.511,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695834.jpeg","width":1280,"height":720,"timestamp":35408.1,"frameSwapWallTime":1784630695832.905} +{"type":"log","callId":"call@584","time":35412.466,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695843.jpeg","width":1280,"height":720,"timestamp":35416.903,"frameSwapWallTime":1784630695841.698} +{"type":"log","callId":"call@584","time":35425.07,"message":" element is not stable"} +{"type":"log","callId":"call@584","time":35425.081,"message":"retrying click action"} +{"type":"log","callId":"call@584","time":35425.082,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695852.jpeg","width":1280,"height":720,"timestamp":35425.356,"frameSwapWallTime":1784630695850.229} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695869.jpeg","width":1280,"height":720,"timestamp":35442.335,"frameSwapWallTime":1784630695867.068} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695877.jpeg","width":1280,"height":720,"timestamp":35450.69,"frameSwapWallTime":1784630695875.481} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695885.jpeg","width":1280,"height":720,"timestamp":35459.249,"frameSwapWallTime":1784630695884.1082} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695902.jpeg","width":1280,"height":720,"timestamp":35475.726,"frameSwapWallTime":1784630695900.455} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695911.jpeg","width":1280,"height":720,"timestamp":35484.664,"frameSwapWallTime":1784630695909.616} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695919.jpeg","width":1280,"height":720,"timestamp":35492.651,"frameSwapWallTime":1784630695917.6062} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695927.jpeg","width":1280,"height":720,"timestamp":35501.055,"frameSwapWallTime":1784630695926.004} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695944.jpeg","width":1280,"height":720,"timestamp":35517.918,"frameSwapWallTime":1784630695942.7878} +{"type":"log","callId":"call@584","time":35525.895,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695952.jpeg","width":1280,"height":720,"timestamp":35526.243,"frameSwapWallTime":1784630695951.212} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695961.jpeg","width":1280,"height":720,"timestamp":35534.663,"frameSwapWallTime":1784630695959.6218} +{"type":"log","callId":"call@584","time":35541.774,"message":" element is not stable"} +{"type":"log","callId":"call@584","time":35541.784,"message":"retrying click action"} +{"type":"log","callId":"call@584","time":35541.785,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695977.jpeg","width":1280,"height":720,"timestamp":35550.978,"frameSwapWallTime":1784630695976.037} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695986.jpeg","width":1280,"height":720,"timestamp":35559.392,"frameSwapWallTime":1784630695984.28} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630695994.jpeg","width":1280,"height":720,"timestamp":35567.752,"frameSwapWallTime":1784630695992.738} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696011.jpeg","width":1280,"height":720,"timestamp":35584.565,"frameSwapWallTime":1784630696009.4148} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696019.jpeg","width":1280,"height":720,"timestamp":35592.724,"frameSwapWallTime":1784630696017.748} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696027.jpeg","width":1280,"height":720,"timestamp":35601.131,"frameSwapWallTime":1784630696025.982} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696042.jpeg","width":1280,"height":720,"timestamp":35615.572,"frameSwapWallTime":1784630696040.437} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696049.jpeg","width":1280,"height":720,"timestamp":35622.66,"frameSwapWallTime":1784630696047.6328} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696057.jpeg","width":1280,"height":720,"timestamp":35630.803,"frameSwapWallTime":1784630696055.765} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696065.jpeg","width":1280,"height":720,"timestamp":35639.104,"frameSwapWallTime":1784630696064.065} +{"type":"log","callId":"call@584","time":35642.874,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696082.jpeg","width":1280,"height":720,"timestamp":35655.745,"frameSwapWallTime":1784630696080.74} +{"type":"log","callId":"call@584","time":35658.309,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@584","time":35658.316,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@584","time":35658.581,"message":" done scrolling"} +{"type":"input","callId":"call@584","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@584"} +{"type":"frame-snapshot","snapshot":{"callId":"call@584","snapshotName":"input@call@584","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[25,27]],["BODY",{"class":"font-sans antialiased"},[[26,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[36,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[26,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[25,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[25,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[10,1]],["DIV",{},[[16,5]],["DIV",{},[[16,19]],[[2,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[2,2]],[[2,8]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[2,9]]]],[[2,15]]],[[2,19]],[[2,26]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},[[2,27]],["DIV",{"class":"flex gap-2 h-full"},[[2,93]],[[2,121]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"805","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},[[2,122]],[[2,124]],[[2,126]],[[2,128]],[[2,130]],[[2,132]],[[2,134]],[[2,136]],[[2,138]],[[2,140]],[[2,142]],[[2,144]],[[2,146]],[[2,148]],[[2,150]],[[2,152]],[[2,154]],[[2,156]],[[2,158]],[[2,160]],[[2,162]],[[2,164]],[[2,166]],[[2,168]],[[2,170]],[[2,172]],[[2,174]],[[2,176]],[[2,178]],[[2,180]],[[2,182]],[[2,184]],[[2,186]],[[2,188]],[[2,190]],[[2,192]],[[2,194]],[[2,196]],[[2,198]],[[2,200]],[[2,202]],[[2,204]],[[2,206]],[[2,208]],[[2,210]],[[2,212]],[[2,214]],[[2,216]],[[2,218]],[[2,220]],[[2,222]],[[2,224]],[[2,226]],[[2,228]],[[2,230]],[[2,232]],[[2,234]],[[2,236]],[[2,238]],[[2,240]],[[2,242]],[[2,244]],[[2,246]],[[2,248]],[[2,250]],[[2,252]],[[2,254]],[[2,256]],[[2,258]],[[2,260]],[[2,262]],[[2,264]],[[2,266]],[[2,268]],[[2,270]],[[2,272]],[[2,274]],[[2,276]],[[2,278]],[[2,280]],[[2,282]],[[2,284]],[[2,286]],[[2,288]],[[2,290]],[[2,292]],[[2,294]],[[2,296]],[[2,298]],[[2,300]],[[2,302]],[[2,304]],[[2,306]],[[2,308]],[[2,310]],[[2,312]],[[2,314]],[[2,316]],[[2,318]],[[2,320]],[[2,322]],[[2,324]],[[2,326]],[[2,328]],[[2,330]],[[2,332]],[[2,333]]]]]],[[2,340]]],[[2,343]]]],[[7,1]],[[16,35]],[[4,3]],[[16,53]]]]],[[25,60]],[[25,110]],[[25,160]],[[25,210]],[[25,217]]]]]]]]]],[[36,296]],[[35,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35660.318,"wallTime":1784630696086,"collectionTime":0.8999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@584","time":35660.972,"message":" performing click action"} +{"type":"log","callId":"call@584","time":35664.072,"message":" click action done"} +{"type":"log","callId":"call@584","time":35664.075,"message":" waiting for scheduled navigations to finish"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696090.jpeg","width":1280,"height":720,"timestamp":35664.272,"frameSwapWallTime":1784630696089.301} +{"type":"log","callId":"call@584","time":35664.42,"message":" navigations have finished"} +{"type":"after","callId":"call@584","endTime":35664.456,"afterSnapshot":"after@call@584"} +{"type":"frame-snapshot","snapshot":{"callId":"call@584","snapshotName":"after@call@584","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[26,27]],["BODY",{"class":"font-sans antialiased"},[[27,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[37,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[27,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[26,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[26,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[11,1]],["DIV",{},[[17,5]],["DIV",{},[[17,19]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[3,2]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[3,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","1916"," – ","2020"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[3,343]]]],[[8,1]],[[17,35]],[[5,3]],[[17,53]]]]],[[26,60]],[[26,110]],[[26,160]],[[26,210]],[[26,217]]]]]]]]]],[[37,296]],[[36,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35665.426,"wallTime":1784630696091,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@586","startTime":35666.299,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"15","timeout":15000},"stepId":"pw:api@47","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@586"} +{"type":"frame-snapshot","snapshot":{"callId":"call@586","snapshotName":"before@call@586","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[27,27]],["BODY",{"class":"font-sans antialiased"},[[28,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[38,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[28,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[27,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[27,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[12,1]],["DIV",{},[[18,5]],["DIV",{},[[18,19]],[[4,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[4,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[1,0]]]],[[4,15]]],[[1,22]],[[1,25]]],[[4,343]]]],[[9,1]],[[18,35]],[[6,3]],[[18,53]]]]],[[27,60]],[[27,110]],[[27,160]],[[27,210]],[[27,217]]]]]]]]]],[[38,296]],[[37,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35667.966,"wallTime":1784630696094,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@586","time":35668.061,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@586","time":35668.996,"message":" locator resolved to "} +{"type":"log","callId":"call@586","time":35669.259,"message":" fill(\"15\")"} +{"type":"log","callId":"call@586","time":35669.262,"message":"attempting fill action"} +{"type":"input","callId":"call@586","inputSnapshot":"input@call@586"} +{"type":"frame-snapshot","snapshot":{"callId":"call@586","snapshotName":"input@call@586","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[28,27]],["BODY",{"class":"font-sans antialiased"},[[29,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[39,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[29,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[28,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[28,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[13,1]],["DIV",{},[[19,5]],["DIV",{},[[19,19]],[[5,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[1,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[5,343]]]],[[10,1]],[[19,35]],[[7,3]],[[19,53]]]]],[[28,60]],[[28,110]],[[28,160]],[[28,210]],[[28,217]]]]]]]]]],[[39,296]],[[38,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35670.31,"wallTime":1784630696096,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@586","time":35670.401,"message":" waiting for element to be visible, enabled and editable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696099.jpeg","width":1280,"height":720,"timestamp":35672.799,"frameSwapWallTime":1784630696097.846} +{"type":"after","callId":"call@586","endTime":35673.565,"afterSnapshot":"after@call@586"} +{"type":"frame-snapshot","snapshot":{"callId":"call@586","snapshotName":"after@call@586","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[29,27]],["BODY",{"class":"font-sans antialiased"},[[30,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[40,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[30,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[29,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[29,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[14,1]],["DIV",{},[[20,5]],["DIV",{},[[20,19]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"15","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[6,343]]]],[[11,1]],[[20,35]],[[8,3]],[[20,53]]]]],[[29,60]],[[29,110]],[[29,160]],[[29,210]],[[29,217]]]]]]]]]],[[40,296]],[[39,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35674.464,"wallTime":1784630696100,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@588","startTime":35675.133,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"6","timeout":15000},"stepId":"pw:api@48","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@588"} +{"type":"frame-snapshot","snapshot":{"callId":"call@588","snapshotName":"before@call@588","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[30,27]],["BODY",{"class":"font-sans antialiased"},[[31,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[41,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[31,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[30,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[30,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[15,1]],["DIV",{},[[21,5]],["DIV",{},[[21,19]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[7,343]]]],[[12,1]],[[21,35]],[[9,3]],[[21,53]]]]],[[30,60]],[[30,110]],[[30,160]],[[30,210]],[[30,217]]]]]]]]]],[[41,296]],[[40,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35676.063,"wallTime":1784630696102,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@588","time":35676.201,"message":"waiting for getByPlaceholder('MM')"} +{"type":"log","callId":"call@588","time":35677.058,"message":" locator resolved to "} +{"type":"log","callId":"call@588","time":35677.357,"message":" fill(\"6\")"} +{"type":"log","callId":"call@588","time":35677.364,"message":"attempting fill action"} +{"type":"input","callId":"call@588","inputSnapshot":"input@call@588"} +{"type":"frame-snapshot","snapshot":{"callId":"call@588","snapshotName":"input@call@588","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[31,27]],["BODY",{"class":"font-sans antialiased"},[[32,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[42,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[32,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[31,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[31,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[16,1]],["DIV",{},[[22,5]],["DIV",{},[[22,19]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[8,343]]]],[[13,1]],[[22,35]],[[10,3]],[[22,53]]]]],[[31,60]],[[31,110]],[[31,160]],[[31,210]],[[31,217]]]]]]]]]],[[42,296]],[[41,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35678.174,"wallTime":1784630696104,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@588","time":35678.248,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@588","endTime":35680.324,"afterSnapshot":"after@call@588"} +{"type":"frame-snapshot","snapshot":{"callId":"call@588","snapshotName":"after@call@588","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[32,27]],["BODY",{"class":"font-sans antialiased"},[[33,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[43,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[33,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[32,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[32,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[17,1]],["DIV",{},[[23,5]],["DIV",{},[[23,19]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"15"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"6","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[9,343]]]],[[14,1]],[[23,35]],[[11,3]],[[23,53]]]]],[[32,60]],[[32,110]],[[32,160]],[[32,210]],[[32,217]]]]]]]]]],[[43,296]],[[42,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35681.185,"wallTime":1784630696107,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@590","startTime":35681.814,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"1990","timeout":15000},"stepId":"pw:api@49","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@590"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696108.jpeg","width":1280,"height":720,"timestamp":35681.99,"frameSwapWallTime":1784630696106.448} +{"type":"frame-snapshot","snapshot":{"callId":"call@590","snapshotName":"before@call@590","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[33,27]],["BODY",{"class":"font-sans antialiased"},[[34,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[44,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[34,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[33,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[33,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[18,1]],["DIV",{},[[24,5]],["DIV",{},[[24,19]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[10,343]]]],[[15,1]],[[24,35]],[[12,3]],[[24,53]]]]],[[33,60]],[[33,110]],[[33,160]],[[33,210]],[[33,217]]]]]]]]]],[[44,296]],[[43,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35682.605,"wallTime":1784630696109,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@590","time":35682.711,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"log","callId":"call@590","time":35684.137,"message":" locator resolved to "} +{"type":"log","callId":"call@590","time":35684.418,"message":" fill(\"1990\")"} +{"type":"log","callId":"call@590","time":35684.422,"message":"attempting fill action"} +{"type":"input","callId":"call@590","inputSnapshot":"input@call@590"} +{"type":"frame-snapshot","snapshot":{"callId":"call@590","snapshotName":"input@call@590","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[34,27]],["BODY",{"class":"font-sans antialiased"},[[35,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[45,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[35,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[34,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[34,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[19,1]],["DIV",{},[[25,5]],["DIV",{},[[25,19]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[11,343]]]],[[16,1]],[[25,35]],[[13,3]],[[25,53]]]]],[[34,60]],[[34,110]],[[34,160]],[[34,210]],[[34,217]]]]]]]]]],[[45,296]],[[44,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35685.288,"wallTime":1784630696111,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@590","time":35685.328,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@590","endTime":35687.409,"afterSnapshot":"after@call@590"} +{"type":"frame-snapshot","snapshot":{"callId":"call@590","snapshotName":"after@call@590","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[35,27]],["BODY",{"class":"font-sans antialiased"},[[36,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[46,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[36,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[35,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[35,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[26,5]],["DIV",{},[[26,19]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"6"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"1990","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 15/6/1990"]]],[[12,343]]]],[[17,1]],[[26,35]],[[14,3]],[[26,53]]]]],[[35,60]],[[35,110]],[[35,160]],[[35,210]],[[35,217]]]]]]]]]],[[46,296]],[[45,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35688.337,"wallTime":1784630696114,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@592","startTime":35689.029,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@50","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@592"} +{"type":"frame-snapshot","snapshot":{"callId":"call@592","snapshotName":"before@call@592","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[36,27]],["BODY",{"class":"font-sans antialiased"},[[37,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[47,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[37,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[36,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[36,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[21,1]],["DIV",{},[[27,5]],["DIV",{},[[27,19]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"1990","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[13,343]]]],[[18,1]],[[27,35]],[[15,3]],[[27,53]]]]],[[36,60]],[[36,110]],[[36,160]],[[36,210]],[[36,217]]]]]]]]]],[[47,296]],[[46,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35689.82,"wallTime":1784630696116,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@592","time":35689.909,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"log","callId":"call@592","time":35691.105,"message":" locator resolved to "} +{"type":"log","callId":"call@592","time":35691.375,"message":"attempting click action"} +{"type":"log","callId":"call@592","time":35691.384,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696125.jpeg","width":1280,"height":720,"timestamp":35698.318,"frameSwapWallTime":1784630696123.157} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696132.jpeg","width":1280,"height":720,"timestamp":35705.546,"frameSwapWallTime":1784630696130.437} +{"type":"log","callId":"call@592","time":35708.325,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@592","time":35708.331,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@592","time":35708.745,"message":" done scrolling"} +{"type":"input","callId":"call@592","point":{"x":1163.4,"y":668},"inputSnapshot":"input@call@592"} +{"type":"frame-snapshot","snapshot":{"callId":"call@592","snapshotName":"input@call@592","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[37,27]],["BODY",{"class":"font-sans antialiased"},[[38,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[48,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[38,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[37,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[37,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[22,1]],["DIV",{},[[28,5]],["DIV",{},[[28,19]],[[14,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[10,2]],[[1,3]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"__playwright_target__":"","type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},[[2,6]]]]],[[14,343]]]],[[19,1]],[[28,35]],[[16,3]],[[28,53]]]]],[[37,60]],[[37,110]],[[37,160]],[[37,210]],[[37,217]]]]]]]]]],[[48,296]],[[47,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35710.02,"wallTime":1784630696136,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@592","time":35710.642,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696141.jpeg","width":1280,"height":720,"timestamp":35714.752,"frameSwapWallTime":1784630696139.694} +{"type":"log","callId":"call@592","time":35717.121,"message":" click action done"} +{"type":"log","callId":"call@592","time":35717.126,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@592","time":35717.312,"message":" navigations have finished"} +{"type":"after","callId":"call@592","endTime":35717.367,"afterSnapshot":"after@call@592"} +{"type":"frame-snapshot","snapshot":{"callId":"call@592","snapshotName":"after@call@592","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[38,27]],["BODY",{"class":"font-sans antialiased"},[[39,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[49,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[39,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[38,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[38,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[23,1]],["DIV",{},[[29,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"June 15, 1990"],[[29,18]]]]],[[20,1]],[[29,35]],[[17,3]],[[29,53]]]]],[[38,60]],[[38,110]],[[38,160]],[[38,210]],[[38,217]]]]]]]]]],[[49,296]],[[48,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35718.339,"wallTime":1784630696144,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@594","startTime":35719.411,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.1.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@51","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@594"} +{"type":"before","callId":"call@596","startTime":35719.585,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 2\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@52","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@596"} +{"type":"frame-snapshot","snapshot":{"callId":"call@594","snapshotName":"before@call@594","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":35720.035,"wallTime":1784630696146,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@594","time":35720.14,"message":"waiting for locator('input[name=\"passengers.1.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@596","snapshotName":"before@call@596","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,17]],"viewport":{"width":1280,"height":720},"timestamp":35720.522,"wallTime":1784630696147,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@596","time":35720.66,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 2\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"log","callId":"call@596","time":35721.913,"message":" locator resolved to visible "} +{"type":"after","callId":"call@596","endTime":35721.924,"result":{},"afterSnapshot":"after@call@596"} +{"type":"frame-snapshot","snapshot":{"callId":"call@596","snapshotName":"after@call@596","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,17]],"viewport":{"width":1280,"height":720},"timestamp":35722.656,"wallTime":1784630696149,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@598","startTime":35723.299,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.1.name\"]","strict":true},"stepId":"pw:api@53","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@598"} +{"type":"frame-snapshot","snapshot":{"callId":"call@598","snapshotName":"before@call@598","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,17]],"viewport":{"width":1280,"height":720},"timestamp":35724.035,"wallTime":1784630696150,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@598","time":35724.157,"message":" checking visibility of locator('input[name=\"passengers.1.name\"]')"} +{"type":"after","callId":"call@598","endTime":35724.759,"result":{"value":false},"afterSnapshot":"after@call@598"} +{"type":"frame-snapshot","snapshot":{"callId":"call@598","snapshotName":"after@call@598","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,17]],"viewport":{"width":1280,"height":720},"timestamp":35725.834,"wallTime":1784630696152,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@600","startTime":35726.438,"class":"Frame","method":"isVisible","params":{"selector":"div.card >> internal:has-text=/Passenger 2\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true},"stepId":"pw:api@54","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@600"} +{"type":"frame-snapshot","snapshot":{"callId":"call@600","snapshotName":"before@call@600","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,17]],"viewport":{"width":1280,"height":720},"timestamp":35727.156,"wallTime":1784630696153,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@600","time":35727.316,"message":" checking visibility of locator('div.card').filter({ hasText: /Passenger 2\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"after","callId":"call@600","endTime":35728.114,"result":{"value":true},"afterSnapshot":"after@call@600"} +{"type":"frame-snapshot","snapshot":{"callId":"call@600","snapshotName":"after@call@600","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,17]],"viewport":{"width":1280,"height":720},"timestamp":35728.846,"wallTime":1784630696155,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@602","startTime":35729.447,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 2\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@55","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@602"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696156.jpeg","width":1280,"height":720,"timestamp":35729.67,"frameSwapWallTime":1784630696154.317} +{"type":"frame-snapshot","snapshot":{"callId":"call@602","snapshotName":"before@call@602","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[8,17]],"viewport":{"width":1280,"height":720},"timestamp":35730.185,"wallTime":1784630696156,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@602","time":35730.301,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 2\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"log","callId":"call@602","time":35731.825,"message":" locator resolved to "} +{"type":"log","callId":"call@602","time":35732.68,"message":"attempting click action"} +{"type":"log","callId":"call@602","time":35732.695,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@564","time":35733.029,"message":" locator resolved to visible "} +{"type":"after","callId":"call@564","endTime":35733.053,"result":{},"afterSnapshot":"after@call@564"} +{"type":"frame-snapshot","snapshot":{"callId":"call@564","snapshotName":"after@call@564","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[47,27]],["BODY",{"class":"font-sans antialiased"},[[48,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[58,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[48,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[47,29]],["FORM",{"class":"space-y-6"},[[9,7]],["DIV",{"class":"card"},[[47,54]],["DIV",{"class":"text-center py-8"},[[47,56]],["BUTTON",{"__playwright_target__":"","type":"button","class":"btn-primary"},[[47,57]]]]],[[47,110]],[[47,160]],[[47,210]],[[47,217]]]]]]]]]],[[58,296]],[[57,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35734.211,"wallTime":1784630696160,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696165.jpeg","width":1280,"height":720,"timestamp":35738.839,"frameSwapWallTime":1784630696163.313} +{"type":"log","callId":"call@602","time":35742.761,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@602","time":35742.767,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@602","time":35743.133,"message":" done scrolling"} +{"type":"input","callId":"call@602","point":{"x":768,"y":642},"inputSnapshot":"input@call@602"} +{"type":"frame-snapshot","snapshot":{"callId":"call@602","snapshotName":"input@call@602","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,12]],"viewport":{"width":1280,"height":720},"timestamp":35744.473,"wallTime":1784630696171,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@602","time":35745.13,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696173.jpeg","width":1280,"height":720,"timestamp":35747.05,"frameSwapWallTime":1784630696171.764} +{"type":"log","callId":"call@602","time":35750.664,"message":" click action done"} +{"type":"log","callId":"call@602","time":35750.671,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@602","time":35750.89,"message":" navigations have finished"} +{"type":"after","callId":"call@602","endTime":35750.921,"afterSnapshot":"after@call@602"} +{"type":"frame-snapshot","snapshot":{"callId":"call@602","snapshotName":"after@call@602","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[49,27]],["BODY",{"class":"font-sans antialiased"},[[50,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[60,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[50,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[49,29]],["FORM",{"class":"space-y-6"},[[11,7]],["DIV",{"class":"card"},[[49,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.1.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.1.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"ETHIOPIAN","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.1.nationality"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Phone Number *"],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},["DIV",{"class":"flex items-center gap-1.5 px-3 py-2.5 bg-gray-50 dark:bg-gray-800 border-r border-gray-300 dark:border-gray-600 select-none flex-shrink-0"},["SPAN",{"class":"text-sm leading-none"},"🇪🇹"],["SPAN",{"class":"text-xs font-semibold text-gray-600 dark:text-gray-300"},"+251"]],["INPUT",{"__playwright_value_":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],["P",{"class":"text-xs text-gray-400 dark:text-gray-500 mt-1"},"Format: ","+251912345678 or 0912345678"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Email (optional)"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"email@example.com","type":"email","name":"passengers.1.email"}]]]]],[[49,110]],[[49,160]],[[49,210]],[[49,217]]]]]]]]]],[[60,296]],[[59,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35752.133,"wallTime":1784630696178,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@604","startTime":35752.989,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.1.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@56","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@604"} +{"type":"frame-snapshot","snapshot":{"callId":"call@604","snapshotName":"before@call@604","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,66]],"viewport":{"width":1280,"height":720},"timestamp":35753.8,"wallTime":1784630696180,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@604","time":35753.974,"message":"waiting for locator('input[name=\"passengers.1.name\"]') to be visible"} +{"type":"log","callId":"call@604","time":35754.761,"message":" locator resolved to visible "} +{"type":"after","callId":"call@604","endTime":35754.781,"result":{},"afterSnapshot":"after@call@604"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696181.jpeg","width":1280,"height":720,"timestamp":35755.118,"frameSwapWallTime":1784630696179.9778} +{"type":"frame-snapshot","snapshot":{"callId":"call@604","snapshotName":"after@call@604","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,66]],"viewport":{"width":1280,"height":720},"timestamp":35755.723,"wallTime":1784630696182,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@606","startTime":35756.326,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.1.name\"]","strict":true,"value":"Adult 2","timeout":15000},"stepId":"pw:api@57","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@606"} +{"type":"frame-snapshot","snapshot":{"callId":"call@606","snapshotName":"before@call@606","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,66]],"viewport":{"width":1280,"height":720},"timestamp":35756.966,"wallTime":1784630696183,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@606","time":35757.053,"message":"waiting for locator('input[name=\"passengers.1.name\"]')"} +{"type":"log","callId":"call@606","time":35757.697,"message":" locator resolved to "} +{"type":"log","callId":"call@606","time":35758.003,"message":" fill(\"Adult 2\")"} +{"type":"log","callId":"call@606","time":35758.008,"message":"attempting fill action"} +{"type":"input","callId":"call@606","inputSnapshot":"input@call@606"} +{"type":"frame-snapshot","snapshot":{"callId":"call@606","snapshotName":"input@call@606","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[53,27]],["BODY",{"class":"font-sans antialiased"},[[54,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[64,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[54,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[53,29]],["FORM",{"class":"space-y-6"},[[15,7]],["DIV",{"class":"card"},[[53,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[4,1]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.1.name"}]],[[4,21]],[[4,31]],[[4,35]],[[4,49]],[[4,53]]]]],[[53,110]],[[53,160]],[[53,210]],[[53,217]]]]]]]]]],[[64,296]],[[63,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35759.289,"wallTime":1784630696185,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@606","time":35759.355,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@606","endTime":35762.424,"afterSnapshot":"after@call@606"} +{"type":"frame-snapshot","snapshot":{"callId":"call@606","snapshotName":"after@call@606","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[54,27]],["BODY",{"class":"font-sans antialiased"},[[55,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[65,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[55,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[54,29]],["FORM",{"class":"space-y-6"},[[16,7]],["DIV",{"class":"card"},[[54,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[5,1]],["INPUT",{"__playwright_value_":"Adult 2","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.1.name"}]],[[5,21]],[[5,31]],[[5,35]],[[5,49]],[[5,53]]]]],[[54,110]],[[54,160]],[[54,210]],[[54,217]]]]]]]]]],[[65,296]],[[64,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35763.222,"wallTime":1784630696189,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@608","startTime":35763.898,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.1.gender\"]","strict":true,"options":[{"valueOrLabel":"Female"}],"timeout":15000},"stepId":"pw:api@58","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@608"} +{"type":"frame-snapshot","snapshot":{"callId":"call@608","snapshotName":"before@call@608","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[55,27]],["BODY",{"class":"font-sans antialiased"},[[56,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[66,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[56,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[55,29]],["FORM",{"class":"space-y-6"},[[17,7]],["DIV",{"class":"card"},[[55,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[6,1]],["INPUT",{"__playwright_value_":"Adult 2","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.1.name"}]],[[6,21]],[[6,31]],[[6,35]],[[6,49]],[[6,53]]]]],[[55,110]],[[55,160]],[[55,210]],[[55,217]]]]]]]]]],[[66,296]],[[65,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35764.586,"wallTime":1784630696191,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@608","time":35764.703,"message":"waiting for locator('select[name=\"passengers.1.gender\"]')"} +{"type":"log","callId":"call@608","time":35765.366,"message":" locator resolved to "} +{"type":"log","callId":"call@608","time":35765.602,"message":"attempting select option action"} +{"type":"input","callId":"call@608","inputSnapshot":"input@call@608"} +{"type":"frame-snapshot","snapshot":{"callId":"call@608","snapshotName":"input@call@608","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[56,27]],["BODY",{"class":"font-sans antialiased"},[[57,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[67,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[57,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[56,29]],["FORM",{"class":"space-y-6"},[[18,7]],["DIV",{"class":"card"},[[56,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[7,21]],["DIV",{},[[7,23]],["SELECT",{"__playwright_target__":"","name":"passengers.1.gender","class":"input-field "},[[7,25]],[[7,27]],[[7,29]]]],[[7,35]],[[7,49]],[[7,53]]]]],[[56,110]],[[56,160]],[[56,210]],[[56,217]]]]]]]]]],[[67,296]],[[66,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35766.271,"wallTime":1784630696192,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@608","time":35766.368,"message":" waiting for element to be visible and enabled"} +{"type":"log","callId":"call@608","time":35769.067,"message":" selected specified option(s)"} +{"type":"after","callId":"call@608","endTime":35769.218,"result":{"values":["Female"]},"afterSnapshot":"after@call@608"} +{"type":"frame-snapshot","snapshot":{"callId":"call@608","snapshotName":"after@call@608","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[57,27]],["BODY",{"class":"font-sans antialiased"},[[58,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[68,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[58,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[57,29]],["FORM",{"class":"space-y-6"},[[19,7]],["DIV",{"class":"card"},[[57,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[8,21]],["DIV",{},[[8,23]],["SELECT",{"__playwright_target__":"","name":"passengers.1.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[8,24]]],[[8,27]],["OPTION",{"__playwright_selected_":"true","value":"Female"},[[8,28]]]]],[[8,35]],[[8,49]],[[8,53]]]]],[[57,110]],[[57,160]],[[57,210]],[[57,217]]]]]]]]]],[[68,296]],[[67,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35770.474,"wallTime":1784630696196,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@610","startTime":35771.281,"class":"Frame","method":"fill","params":{"selector":"div.card >> internal:has-text=/Passenger 2\\b/ >> input[type=\"tel\"] >> nth=0","strict":true,"value":"912345678","timeout":15000},"stepId":"pw:api@59","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@610"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696198.jpeg","width":1280,"height":720,"timestamp":35772.016,"frameSwapWallTime":1784630696196.593} +{"type":"frame-snapshot","snapshot":{"callId":"call@610","snapshotName":"before@call@610","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[58,27]],["BODY",{"class":"font-sans antialiased"},[[59,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[69,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[59,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[58,29]],["FORM",{"class":"space-y-6"},[[20,7]],["DIV",{"class":"card"},[[58,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[9,21]],["DIV",{},[[9,23]],["SELECT",{"name":"passengers.1.gender","class":"input-field "},[[1,0]],[[9,27]],[[1,1]]]],[[9,35]],[[9,49]],[[9,53]]]]],[[58,110]],[[58,160]],[[58,210]],[[58,217]]]]]]]]]],[[69,296]],[[68,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35772.098,"wallTime":1784630696198,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@610","time":35772.224,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 2\\b/ }).locator('input[type=\"tel\"]').first()"} +{"type":"log","callId":"call@610","time":35773.238,"message":" locator resolved to "} +{"type":"log","callId":"call@610","time":35773.537,"message":" fill(\"912345678\")"} +{"type":"log","callId":"call@610","time":35773.54,"message":"attempting fill action"} +{"type":"input","callId":"call@610","inputSnapshot":"input@call@610"} +{"type":"frame-snapshot","snapshot":{"callId":"call@610","snapshotName":"input@call@610","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[59,27]],["BODY",{"class":"font-sans antialiased"},[[60,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[70,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[60,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[59,29]],["FORM",{"class":"space-y-6"},[[21,7]],["DIV",{"class":"card"},[[59,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],[[10,21]],[[1,1]],[[10,35]],["DIV",{},[[10,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[10,42]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],[[10,47]]]],[[10,53]]]]],[[59,110]],[[59,160]],[[59,210]],[[59,217]]]]]]]]]],[[70,296]],[[69,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35774.286,"wallTime":1784630696200,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@610","time":35774.375,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@610","endTime":35778.294,"afterSnapshot":"after@call@610"} +{"type":"frame-snapshot","snapshot":{"callId":"call@610","snapshotName":"after@call@610","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[60,27]],["BODY",{"class":"font-sans antialiased"},[[61,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[71,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[61,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[60,29]],["FORM",{"class":"space-y-6"},[[22,7]],["DIV",{"class":"card"},[[60,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],[[11,21]],[[2,1]],[[11,35]],["DIV",{},[[11,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[11,42]],["INPUT",{"__playwright_value_":"912345678","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[11,47]]]],[[11,53]]]]],[[60,110]],[[60,160]],[[60,210]],[[60,217]]]]]]]]]],[[71,296]],[[70,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35779.518,"wallTime":1784630696205,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@612","startTime":35780.256,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 2\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@60","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@612"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696207.jpeg","width":1280,"height":720,"timestamp":35780.426,"frameSwapWallTime":1784630696204.4958} +{"type":"frame-snapshot","snapshot":{"callId":"call@612","snapshotName":"before@call@612","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[61,27]],["BODY",{"class":"font-sans antialiased"},[[62,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[72,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[62,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[61,29]],["FORM",{"class":"space-y-6"},[[23,7]],["DIV",{"class":"card"},[[61,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],[[12,21]],[[3,1]],[[12,35]],["DIV",{},[[12,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[12,42]],["INPUT",{"__playwright_value_":"912345678","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[12,47]]]],[[12,53]]]]],[[61,110]],[[61,160]],[[61,210]],[[61,217]]]]]]]]]],[[72,296]],[[71,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35781.105,"wallTime":1784630696207,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@612","time":35781.198,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 2\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"log","callId":"call@612","time":35782.476,"message":" locator resolved to "} +{"type":"log","callId":"call@612","time":35782.794,"message":"attempting click action"} +{"type":"log","callId":"call@612","time":35782.803,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696215.jpeg","width":1280,"height":720,"timestamp":35788.821,"frameSwapWallTime":1784630696213.379} +{"type":"log","callId":"call@612","time":35791.925,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@612","time":35791.934,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@612","time":35792.44,"message":" done scrolling"} +{"type":"input","callId":"call@612","point":{"x":1007.5,"y":531},"inputSnapshot":"input@call@612"} +{"type":"frame-snapshot","snapshot":{"callId":"call@612","snapshotName":"input@call@612","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[62,27]],["BODY",{"class":"font-sans antialiased"},[[63,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[73,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[63,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[62,29]],["FORM",{"class":"space-y-6"},[[24,7]],["DIV",{"class":"card"},[[62,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[7,1]],["DIV",{},[[13,5]],["DIV",{},["BUTTON",{"__playwright_target__":"","type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[13,7]],[[13,18]]]]],[[4,1]],[[13,35]],[[1,3]],[[13,53]]]]],[[62,110]],[[62,160]],[[62,210]],[[62,217]]]]]]]]]],[[73,296]],[[72,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35793.641,"wallTime":1784630696220,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@612","time":35794.052,"message":" performing click action"} +{"type":"log","callId":"call@594","time":35794.092,"message":" locator resolved to visible "} +{"type":"after","callId":"call@594","endTime":35794.104,"result":{},"afterSnapshot":"after@call@594"} +{"type":"frame-snapshot","snapshot":{"callId":"call@594","snapshotName":"after@call@594","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[63,27]],["BODY",{"class":"font-sans antialiased"},[[64,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[74,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[64,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[63,29]],["FORM",{"class":"space-y-6"},[[25,7]],["DIV",{"class":"card"},[[63,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],["DIV",{},[[14,5]],["DIV",{},[[1,0]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2020"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2019"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2018"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2017"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2016"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2015"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2014"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2013"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2012"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2011"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2010"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2009"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2008"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2007"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2006"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2005"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2004"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2003"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2002"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2001"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2000"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1999"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1998"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1997"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1996"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1995"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1994"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1993"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1992"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1991"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1990"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1989"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1988"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1987"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1986"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1985"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1984"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1983"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1982"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1981"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1980"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1979"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1978"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1977"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1976"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1975"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1974"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1973"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1972"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1971"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1970"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1969"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1968"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1967"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1966"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1965"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1964"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1963"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1962"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1961"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1960"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1959"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1958"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1957"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1956"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1955"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1954"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1953"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1952"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1951"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1950"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1949"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1948"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1947"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1946"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1945"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1944"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1943"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1942"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1941"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1940"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1939"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1938"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1937"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1936"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1935"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1934"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1933"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1932"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1931"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1930"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1929"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1928"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1927"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1926"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1925"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1924"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1923"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1922"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1921"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1920"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1919"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1918"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1917"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1916"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2000"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[5,1]],[[14,35]],[[2,3]],[[14,53]]]]],[[63,110]],[[63,160]],[[63,210]],[[63,217]]]]]]]]]],[[74,296]],[[73,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35804.399,"wallTime":1784630696229,"collectionTime":1.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@612","time":35804.765,"message":" click action done"} +{"type":"log","callId":"call@612","time":35804.77,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@612","time":35805.08,"message":" navigations have finished"} +{"type":"after","callId":"call@612","endTime":35805.121,"afterSnapshot":"after@call@612"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696232.jpeg","width":1280,"height":720,"timestamp":35805.498,"frameSwapWallTime":1784630696230.229} +{"type":"frame-snapshot","snapshot":{"callId":"call@612","snapshotName":"after@call@612","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,358]],"viewport":{"width":1280,"height":720},"timestamp":35806.286,"wallTime":1784630696232,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@614","startTime":35806.946,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@61","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@614"} +{"type":"frame-snapshot","snapshot":{"callId":"call@614","snapshotName":"before@call@614","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[65,27]],["BODY",{"class":"font-sans antialiased"},[[66,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[76,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[66,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[65,29]],["FORM",{"class":"space-y-6"},[[27,7]],["DIV",{"class":"card"},[[65,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[10,1]],["DIV",{},[[16,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[16,7]],[[16,18]]],[[2,0]],[[2,341]],[[2,343]]]],[[7,1]],[[16,35]],[[4,3]],[[16,53]]]]],[[65,110]],[[65,160]],[[65,210]],[[65,217]]]]]]]]]],[[76,296]],[[75,11]]]],"viewport":{"width":1280,"height":720},"timestamp":35807.747,"wallTime":1784630696234,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@614","time":35807.837,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@614","time":35810.297,"message":" locator resolved to "} +{"type":"log","callId":"call@614","time":35810.585,"message":"attempting click action"} +{"type":"log","callId":"call@614","time":35810.598,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696241.jpeg","width":1280,"height":720,"timestamp":35814.874,"frameSwapWallTime":1784630696239.653} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696249.jpeg","width":1280,"height":720,"timestamp":35822.588,"frameSwapWallTime":1784630696247.233} +{"type":"log","callId":"call@614","time":35825.093,"message":" element is not stable"} +{"type":"log","callId":"call@614","time":35825.104,"message":"retrying click action"} +{"type":"log","callId":"call@614","time":35825.123,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696258.jpeg","width":1280,"height":720,"timestamp":35831.825,"frameSwapWallTime":1784630696256.5999} +{"type":"log","callId":"call@614","time":35841.614,"message":" element is not stable"} +{"type":"log","callId":"call@614","time":35841.622,"message":"retrying click action"} +{"type":"log","callId":"call@614","time":35841.623,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696275.jpeg","width":1280,"height":720,"timestamp":35849.308,"frameSwapWallTime":1784630696273.998} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696285.jpeg","width":1280,"height":720,"timestamp":35858.451,"frameSwapWallTime":1784630696283.105} +{"type":"log","callId":"call@614","time":35863.524,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696293.jpeg","width":1280,"height":720,"timestamp":35867.149,"frameSwapWallTime":1784630696291.889} +{"type":"log","callId":"call@614","time":35875.069,"message":" element is not stable"} +{"type":"log","callId":"call@614","time":35875.082,"message":"retrying click action"} +{"type":"log","callId":"call@614","time":35875.083,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696311.jpeg","width":1280,"height":720,"timestamp":35884.693,"frameSwapWallTime":1784630696309.3892} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696319.jpeg","width":1280,"height":720,"timestamp":35892.661,"frameSwapWallTime":1784630696317.342} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696327.jpeg","width":1280,"height":720,"timestamp":35900.616,"frameSwapWallTime":1784630696325.424} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696336.jpeg","width":1280,"height":720,"timestamp":35909.333,"frameSwapWallTime":1784630696334.158} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696352.jpeg","width":1280,"height":720,"timestamp":35926.18,"frameSwapWallTime":1784630696350.902} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696360.jpeg","width":1280,"height":720,"timestamp":35934.27,"frameSwapWallTime":1784630696359.154} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696369.jpeg","width":1280,"height":720,"timestamp":35942.573,"frameSwapWallTime":1784630696367.527} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696386.jpeg","width":1280,"height":720,"timestamp":35959.565,"frameSwapWallTime":1784630696384.376} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696394.jpeg","width":1280,"height":720,"timestamp":35967.647,"frameSwapWallTime":1784630696392.6138} +{"type":"log","callId":"call@614","time":35975.684,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696402.jpeg","width":1280,"height":720,"timestamp":35976.032,"frameSwapWallTime":1784630696401.042} +{"type":"log","callId":"call@614","time":35991.686,"message":" element is not stable"} +{"type":"log","callId":"call@614","time":35991.695,"message":"retrying click action"} +{"type":"log","callId":"call@614","time":35991.696,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696419.jpeg","width":1280,"height":720,"timestamp":35992.542,"frameSwapWallTime":1784630696417.511} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696427.jpeg","width":1280,"height":720,"timestamp":36000.927,"frameSwapWallTime":1784630696425.925} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696436.jpeg","width":1280,"height":720,"timestamp":36009.475,"frameSwapWallTime":1784630696434.371} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696453.jpeg","width":1280,"height":720,"timestamp":36026.544,"frameSwapWallTime":1784630696451.344} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696461.jpeg","width":1280,"height":720,"timestamp":36034.576,"frameSwapWallTime":1784630696459.437} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696469.jpeg","width":1280,"height":720,"timestamp":36042.86,"frameSwapWallTime":1784630696467.763} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696486.jpeg","width":1280,"height":720,"timestamp":36059.61,"frameSwapWallTime":1784630696484.601} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696491.jpeg","width":1280,"height":720,"timestamp":36064.995,"frameSwapWallTime":1784630696489.9458} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696499.jpeg","width":1280,"height":720,"timestamp":36072.473,"frameSwapWallTime":1784630696497.505} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696507.jpeg","width":1280,"height":720,"timestamp":36080.921,"frameSwapWallTime":1784630696505.8848} +{"type":"log","callId":"call@614","time":36092.881,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696524.jpeg","width":1280,"height":720,"timestamp":36097.542,"frameSwapWallTime":1784630696522.584} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696532.jpeg","width":1280,"height":720,"timestamp":36105.578,"frameSwapWallTime":1784630696530.611} +{"type":"log","callId":"call@614","time":36108.358,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@614","time":36108.364,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@614","time":36108.564,"message":" done scrolling"} +{"type":"input","callId":"call@614","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@614"} +{"type":"frame-snapshot","snapshot":{"callId":"call@614","snapshotName":"input@call@614","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[66,27]],["BODY",{"class":"font-sans antialiased"},[[67,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[77,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[67,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[66,29]],["FORM",{"class":"space-y-6"},[[28,7]],["DIV",{"class":"card"},[[66,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[11,1]],["DIV",{},[[17,5]],["DIV",{},[[1,0]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,16]],[[3,19]],[[3,26]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},[[3,27]],["DIV",{"class":"flex gap-2 h-full"},[[3,93]],[[3,121]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"805","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},[[3,122]],[[3,124]],[[3,126]],[[3,128]],[[3,130]],[[3,132]],[[3,134]],[[3,136]],[[3,138]],[[3,140]],[[3,142]],[[3,144]],[[3,146]],[[3,148]],[[3,150]],[[3,152]],[[3,154]],[[3,156]],[[3,158]],[[3,160]],[[3,162]],[[3,164]],[[3,166]],[[3,168]],[[3,170]],[[3,172]],[[3,174]],[[3,176]],[[3,178]],[[3,180]],[[3,182]],[[3,184]],[[3,186]],[[3,188]],[[3,190]],[[3,192]],[[3,194]],[[3,196]],[[3,198]],[[3,200]],[[3,202]],[[3,204]],[[3,206]],[[3,208]],[[3,210]],[[3,212]],[[3,214]],[[3,216]],[[3,218]],[[3,220]],[[3,222]],[[3,224]],[[3,226]],[[3,228]],[[3,230]],[[3,232]],[[3,234]],[[3,236]],[[3,238]],[[3,240]],[[3,242]],[[3,244]],[[3,246]],[[3,248]],[[3,250]],[[3,252]],[[3,254]],[[3,256]],[[3,258]],[[3,260]],[[3,262]],[[3,264]],[[3,266]],[[3,268]],[[3,270]],[[3,272]],[[3,274]],[[3,276]],[[3,278]],[[3,280]],[[3,282]],[[3,284]],[[3,286]],[[3,288]],[[3,290]],[[3,292]],[[3,294]],[[3,296]],[[3,298]],[[3,300]],[[3,302]],[[3,304]],[[3,306]],[[3,308]],[[3,310]],[[3,312]],[[3,314]],[[3,316]],[[3,318]],[[3,320]],[[3,322]],[[3,324]],[[3,326]],[[3,328]],[[3,330]],[[3,332]],[[3,333]]]]]],[[3,340]]],[[3,343]]]],[[8,1]],[[17,35]],[[5,3]],[[17,53]]]]],[[66,110]],[[66,160]],[[66,210]],[[66,217]]]]]]]]]],[[77,296]],[[76,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36110.07,"wallTime":1784630696536,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@614","time":36110.75,"message":" performing click action"} +{"type":"log","callId":"call@614","time":36113.492,"message":" click action done"} +{"type":"log","callId":"call@614","time":36113.499,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@614","time":36113.659,"message":" navigations have finished"} +{"type":"after","callId":"call@614","endTime":36113.692,"afterSnapshot":"after@call@614"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696541.jpeg","width":1280,"height":720,"timestamp":36114.417,"frameSwapWallTime":1784630696539.4011} +{"type":"frame-snapshot","snapshot":{"callId":"call@614","snapshotName":"after@call@614","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[67,27]],["BODY",{"class":"font-sans antialiased"},[[68,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[78,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[68,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[67,29]],["FORM",{"class":"space-y-6"},[[29,7]],["DIV",{"class":"card"},[[67,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[12,1]],["DIV",{},[[18,5]],["DIV",{},[[2,0]],[[4,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[4,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[4,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","1916"," – ","2020"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[4,343]]]],[[9,1]],[[18,35]],[[6,3]],[[18,53]]]]],[[67,110]],[[67,160]],[[67,210]],[[67,217]]]]]]]]]],[[78,296]],[[77,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36114.536,"wallTime":1784630696541,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@616","startTime":36115.235,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"15","timeout":15000},"stepId":"pw:api@62","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@616"} +{"type":"frame-snapshot","snapshot":{"callId":"call@616","snapshotName":"before@call@616","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,41]],"viewport":{"width":1280,"height":720},"timestamp":36115.847,"wallTime":1784630696542,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@616","time":36115.949,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@616","time":36117.515,"message":" locator resolved to "} +{"type":"log","callId":"call@616","time":36117.969,"message":" fill(\"15\")"} +{"type":"log","callId":"call@616","time":36117.972,"message":"attempting fill action"} +{"type":"input","callId":"call@616","inputSnapshot":"input@call@616"} +{"type":"frame-snapshot","snapshot":{"callId":"call@616","snapshotName":"input@call@616","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[69,27]],["BODY",{"class":"font-sans antialiased"},[[70,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[80,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[70,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[69,29]],["FORM",{"class":"space-y-6"},[[31,7]],["DIV",{"class":"card"},[[69,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[14,1]],["DIV",{},[[20,5]],["DIV",{},[[4,0]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[6,343]]]],[[11,1]],[[20,35]],[[8,3]],[[20,53]]]]],[[69,110]],[[69,160]],[[69,210]],[[69,217]]]]]]]]]],[[80,296]],[[79,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36118.814,"wallTime":1784630696545,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@616","time":36118.912,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@616","endTime":36120.774,"afterSnapshot":"after@call@616"} +{"type":"frame-snapshot","snapshot":{"callId":"call@616","snapshotName":"after@call@616","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[70,27]],["BODY",{"class":"font-sans antialiased"},[[71,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[81,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[71,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[70,29]],["FORM",{"class":"space-y-6"},[[32,7]],["DIV",{"class":"card"},[[70,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[15,1]],["DIV",{},[[21,5]],["DIV",{},[[5,0]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"15","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[7,343]]]],[[12,1]],[[21,35]],[[9,3]],[[21,53]]]]],[[70,110]],[[70,160]],[[70,210]],[[70,217]]]]]]]]]],[[81,296]],[[80,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36121.648,"wallTime":1784630696548,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@618","startTime":36122.332,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"6","timeout":15000},"stepId":"pw:api@63","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@618"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696549.jpeg","width":1280,"height":720,"timestamp":36122.791,"frameSwapWallTime":1784630696547.854} +{"type":"frame-snapshot","snapshot":{"callId":"call@618","snapshotName":"before@call@618","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[71,27]],["BODY",{"class":"font-sans antialiased"},[[72,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[82,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[72,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[71,29]],["FORM",{"class":"space-y-6"},[[33,7]],["DIV",{"class":"card"},[[71,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[16,1]],["DIV",{},[[22,5]],["DIV",{},[[6,0]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[8,343]]]],[[13,1]],[[22,35]],[[10,3]],[[22,53]]]]],[[71,110]],[[71,160]],[[71,210]],[[71,217]]]]]]]]]],[[82,296]],[[81,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36123.041,"wallTime":1784630696549,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@618","time":36123.122,"message":"waiting for getByPlaceholder('MM')"} +{"type":"log","callId":"call@618","time":36124.701,"message":" locator resolved to "} +{"type":"log","callId":"call@618","time":36125.16,"message":" fill(\"6\")"} +{"type":"log","callId":"call@618","time":36125.162,"message":"attempting fill action"} +{"type":"input","callId":"call@618","inputSnapshot":"input@call@618"} +{"type":"frame-snapshot","snapshot":{"callId":"call@618","snapshotName":"input@call@618","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[72,27]],["BODY",{"class":"font-sans antialiased"},[[73,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[83,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[73,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[72,29]],["FORM",{"class":"space-y-6"},[[34,7]],["DIV",{"class":"card"},[[72,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[17,1]],["DIV",{},[[23,5]],["DIV",{},[[7,0]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[9,343]]]],[[14,1]],[[23,35]],[[11,3]],[[23,53]]]]],[[72,110]],[[72,160]],[[72,210]],[[72,217]]]]]]]]]],[[83,296]],[[82,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36126.044,"wallTime":1784630696552,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@618","time":36126.09,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@618","endTime":36128.036,"afterSnapshot":"after@call@618"} +{"type":"frame-snapshot","snapshot":{"callId":"call@618","snapshotName":"after@call@618","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[73,27]],["BODY",{"class":"font-sans antialiased"},[[74,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[84,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[74,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[73,29]],["FORM",{"class":"space-y-6"},[[35,7]],["DIV",{"class":"card"},[[73,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[18,1]],["DIV",{},[[24,5]],["DIV",{},[[8,0]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"15"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"6","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[10,343]]]],[[15,1]],[[24,35]],[[12,3]],[[24,53]]]]],[[73,110]],[[73,160]],[[73,210]],[[73,217]]]]]]]]]],[[84,296]],[[83,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36128.822,"wallTime":1784630696555,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@620","startTime":36129.498,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"1990","timeout":15000},"stepId":"pw:api@64","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@620"} +{"type":"frame-snapshot","snapshot":{"callId":"call@620","snapshotName":"before@call@620","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[74,27]],["BODY",{"class":"font-sans antialiased"},[[75,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[85,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[75,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[74,29]],["FORM",{"class":"space-y-6"},[[36,7]],["DIV",{"class":"card"},[[74,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[19,1]],["DIV",{},[[25,5]],["DIV",{},[[9,0]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[11,343]]]],[[16,1]],[[25,35]],[[13,3]],[[25,53]]]]],[[74,110]],[[74,160]],[[74,210]],[[74,217]]]]]]]]]],[[85,296]],[[84,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36130.282,"wallTime":1784630696556,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@620","time":36130.418,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"log","callId":"call@620","time":36131.109,"message":" locator resolved to "} +{"type":"log","callId":"call@620","time":36131.344,"message":" fill(\"1990\")"} +{"type":"log","callId":"call@620","time":36131.347,"message":"attempting fill action"} +{"type":"input","callId":"call@620","inputSnapshot":"input@call@620"} +{"type":"frame-snapshot","snapshot":{"callId":"call@620","snapshotName":"input@call@620","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[75,27]],["BODY",{"class":"font-sans antialiased"},[[76,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[86,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[76,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[75,29]],["FORM",{"class":"space-y-6"},[[37,7]],["DIV",{"class":"card"},[[75,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[26,5]],["DIV",{},[[10,0]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[12,343]]]],[[17,1]],[[26,35]],[[14,3]],[[26,53]]]]],[[75,110]],[[75,160]],[[75,210]],[[75,217]]]]]]]]]],[[86,296]],[[85,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36132.035,"wallTime":1784630696558,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@620","time":36132.079,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@620","endTime":36133.744,"afterSnapshot":"after@call@620"} +{"type":"frame-snapshot","snapshot":{"callId":"call@620","snapshotName":"after@call@620","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[76,27]],["BODY",{"class":"font-sans antialiased"},[[77,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[87,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[77,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[76,29]],["FORM",{"class":"space-y-6"},[[38,7]],["DIV",{"class":"card"},[[76,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[21,1]],["DIV",{},[[27,5]],["DIV",{},[[11,0]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"6"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"1990","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 15/6/1990"]]],[[13,343]]]],[[18,1]],[[27,35]],[[15,3]],[[27,53]]]]],[[76,110]],[[76,160]],[[76,210]],[[76,217]]]]]]]]]],[[87,296]],[[86,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36135.551,"wallTime":1784630696561,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@622","startTime":36136.248,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@65","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@622"} +{"type":"frame-snapshot","snapshot":{"callId":"call@622","snapshotName":"before@call@622","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[77,27]],["BODY",{"class":"font-sans antialiased"},[[78,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[88,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[78,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[77,29]],["FORM",{"class":"space-y-6"},[[39,7]],["DIV",{"class":"card"},[[77,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[22,1]],["DIV",{},[[28,5]],["DIV",{},[[12,0]],[[14,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[10,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"1990","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[14,343]]]],[[19,1]],[[28,35]],[[16,3]],[[28,53]]]]],[[77,110]],[[77,160]],[[77,210]],[[77,217]]]]]]]]]],[[88,296]],[[87,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36137.061,"wallTime":1784630696563,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@622","time":36137.19,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"log","callId":"call@622","time":36138.827,"message":" locator resolved to "} +{"type":"log","callId":"call@622","time":36139.134,"message":"attempting click action"} +{"type":"log","callId":"call@622","time":36139.153,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696566.jpeg","width":1280,"height":720,"timestamp":36139.866,"frameSwapWallTime":1784630696564.805} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696574.jpeg","width":1280,"height":720,"timestamp":36147.851,"frameSwapWallTime":1784630696572.7488} +{"type":"log","callId":"call@622","time":36149.978,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@622","time":36149.987,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@622","time":36150.505,"message":" done scrolling"} +{"type":"input","callId":"call@622","point":{"x":1163.4,"y":668},"inputSnapshot":"input@call@622"} +{"type":"frame-snapshot","snapshot":{"callId":"call@622","snapshotName":"input@call@622","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[78,27]],["BODY",{"class":"font-sans antialiased"},[[79,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[89,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[79,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[78,29]],["FORM",{"class":"space-y-6"},[[40,7]],["DIV",{"class":"card"},[[78,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[23,1]],["DIV",{},[[29,5]],["DIV",{},[[13,0]],[[15,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[11,3]],[[1,3]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"__playwright_target__":"","type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},[[2,6]]]]],[[15,343]]]],[[20,1]],[[29,35]],[[17,3]],[[29,53]]]]],[[78,110]],[[78,160]],[[78,210]],[[78,217]]]]]]]]]],[[89,296]],[[88,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36151.717,"wallTime":1784630696578,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@622","time":36152.239,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696582.jpeg","width":1280,"height":720,"timestamp":36156.165,"frameSwapWallTime":1784630696581.074} +{"type":"log","callId":"call@622","time":36158,"message":" click action done"} +{"type":"log","callId":"call@622","time":36158.003,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@622","time":36159.137,"message":" navigations have finished"} +{"type":"after","callId":"call@622","endTime":36159.217,"afterSnapshot":"after@call@622"} +{"type":"frame-snapshot","snapshot":{"callId":"call@622","snapshotName":"after@call@622","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[79,27]],["BODY",{"class":"font-sans antialiased"},[[80,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[90,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[80,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[79,29]],["FORM",{"class":"space-y-6"},[[41,7]],["DIV",{"class":"card"},[[79,54]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[24,1]],["DIV",{},[[30,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"June 15, 1990"],[[30,18]]]]],[[21,1]],[[30,35]],[[18,3]],[[30,53]]]]],[[79,110]],[[79,160]],[[79,210]],[[79,217]]]]]]]]]],[[90,296]],[[89,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36160.062,"wallTime":1784630696586,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@624","startTime":36161.153,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.2.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@66","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@624"} +{"type":"before","callId":"call@626","startTime":36161.305,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 3\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@67","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@626"} +{"type":"frame-snapshot","snapshot":{"callId":"call@624","snapshotName":"before@call@624","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":36161.761,"wallTime":1784630696588,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@624","time":36161.869,"message":"waiting for locator('input[name=\"passengers.2.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@626","snapshotName":"before@call@626","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,17]],"viewport":{"width":1280,"height":720},"timestamp":36162.154,"wallTime":1784630696588,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@626","time":36162.276,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 3\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"log","callId":"call@624","time":36163.404,"message":" locator resolved to visible "} +{"type":"after","callId":"call@624","endTime":36163.419,"result":{},"afterSnapshot":"after@call@624"} +{"type":"frame-snapshot","snapshot":{"callId":"call@624","snapshotName":"after@call@624","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,17]],"viewport":{"width":1280,"height":720},"timestamp":36163.989,"wallTime":1784630696590,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@628","startTime":36164.456,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.2.name\"]","strict":true},"stepId":"pw:api@68","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@628"} +{"type":"frame-snapshot","snapshot":{"callId":"call@628","snapshotName":"before@call@628","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,17]],"viewport":{"width":1280,"height":720},"timestamp":36164.948,"wallTime":1784630696591,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@628","time":36165.043,"message":" checking visibility of locator('input[name=\"passengers.2.name\"]')"} +{"type":"after","callId":"call@628","endTime":36165.392,"result":{"value":true},"afterSnapshot":"after@call@628"} +{"type":"frame-snapshot","snapshot":{"callId":"call@628","snapshotName":"after@call@628","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,17]],"viewport":{"width":1280,"height":720},"timestamp":36165.869,"wallTime":1784630696592,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@630","startTime":36166.439,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.2.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@69","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@630"} +{"type":"frame-snapshot","snapshot":{"callId":"call@630","snapshotName":"before@call@630","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,17]],"viewport":{"width":1280,"height":720},"timestamp":36167.173,"wallTime":1784630696593,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@630","time":36167.31,"message":"waiting for locator('input[name=\"passengers.2.name\"]') to be visible"} +{"type":"log","callId":"call@630","time":36167.951,"message":" locator resolved to visible "} +{"type":"after","callId":"call@630","endTime":36167.965,"result":{},"afterSnapshot":"after@call@630"} +{"type":"frame-snapshot","snapshot":{"callId":"call@630","snapshotName":"after@call@630","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,17]],"viewport":{"width":1280,"height":720},"timestamp":36168.53,"wallTime":1784630696595,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@632","startTime":36169.069,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.2.name\"]","strict":true,"value":"Child 1","timeout":15000},"stepId":"pw:api@70","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@632"} +{"type":"frame-snapshot","snapshot":{"callId":"call@632","snapshotName":"before@call@632","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[8,17]],"viewport":{"width":1280,"height":720},"timestamp":36169.646,"wallTime":1784630696596,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@632","time":36169.76,"message":"waiting for locator('input[name=\"passengers.2.name\"]')"} +{"type":"log","callId":"call@632","time":36170.88,"message":" locator resolved to "} +{"type":"log","callId":"call@632","time":36171.181,"message":" fill(\"Child 1\")"} +{"type":"log","callId":"call@632","time":36171.186,"message":"attempting fill action"} +{"type":"input","callId":"call@632","inputSnapshot":"input@call@632"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696598.jpeg","width":1280,"height":720,"timestamp":36172.271,"frameSwapWallTime":1784630696596.8608} +{"type":"frame-snapshot","snapshot":{"callId":"call@632","snapshotName":"input@call@632","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"67","lang":"en","dir":"ltr","class":"light","style":""},[[88,27]],["BODY",{"class":"font-sans antialiased"},[[89,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[99,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[89,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[88,29]],["FORM",{"class":"space-y-6"},[[50,7]],[[9,7]],["DIV",{"class":"card"},[[88,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[88,71]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.2.name"}]],[[88,91]],[[88,101]],[[88,105]],[[88,107]]]]],[[88,160]],[[88,210]],[[88,217]]]]]]]]]],[[99,296]],[[98,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36172.372,"wallTime":1784630696598,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@632","time":36172.413,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@632","endTime":36175.263,"afterSnapshot":"after@call@632"} +{"type":"frame-snapshot","snapshot":{"callId":"call@632","snapshotName":"after@call@632","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"277","lang":"en","dir":"ltr","class":"light","style":""},[[89,27]],["BODY",{"class":"font-sans antialiased"},[[90,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[100,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[90,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[89,29]],["FORM",{"class":"space-y-6"},[[51,7]],[[10,7]],["DIV",{"class":"card"},[[89,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[89,71]],["INPUT",{"__playwright_value_":"Child 1","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.2.name"}]],[[89,91]],[[89,101]],[[89,105]],[[89,107]]]]],[[89,160]],[[89,210]],[[89,217]]]]]]]]]],[[100,296]],[[99,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36176.827,"wallTime":1784630696603,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@634","startTime":36177.565,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.2.gender\"]","strict":true,"options":[{"valueOrLabel":"Female"}],"timeout":15000},"stepId":"pw:api@71","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@634"} +{"type":"frame-snapshot","snapshot":{"callId":"call@634","snapshotName":"before@call@634","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"277","lang":"en","dir":"ltr","class":"light","style":""},[[90,27]],["BODY",{"class":"font-sans antialiased"},[[91,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[101,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[91,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[90,29]],["FORM",{"class":"space-y-6"},[[52,7]],[[11,7]],["DIV",{"class":"card"},[[90,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[90,71]],["INPUT",{"__playwright_value_":"Child 1","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.2.name"}]],[[90,91]],[[90,101]],[[90,105]],[[90,107]]]]],[[90,160]],[[90,210]],[[90,217]]]]]]]]]],[[101,296]],[[100,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36178.909,"wallTime":1784630696604,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@634","time":36179.083,"message":"waiting for locator('select[name=\"passengers.2.gender\"]')"} +{"type":"log","callId":"call@634","time":36179.928,"message":" locator resolved to "} +{"type":"log","callId":"call@634","time":36180.24,"message":"attempting select option action"} +{"type":"input","callId":"call@634","inputSnapshot":"input@call@634"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696607.jpeg","width":1280,"height":720,"timestamp":36180.536,"frameSwapWallTime":1784630696605.0378} +{"type":"frame-snapshot","snapshot":{"callId":"call@634","snapshotName":"input@call@634","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"277","lang":"en","dir":"ltr","class":"light","style":""},[[91,27]],["BODY",{"class":"font-sans antialiased"},[[92,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[102,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[92,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[91,29]],["FORM",{"class":"space-y-6"},[[53,7]],[[12,7]],["DIV",{"class":"card"},[[91,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[91,91]],["DIV",{},[[91,93]],["SELECT",{"__playwright_target__":"","name":"passengers.2.gender","class":"input-field "},[[91,95]],[[91,97]],[[91,99]]]],[[91,105]],[[91,107]]]]],[[91,160]],[[91,210]],[[91,217]]]]]]]]]],[[102,296]],[[101,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36181.061,"wallTime":1784630696607,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@634","time":36181.13,"message":" waiting for element to be visible and enabled"} +{"type":"log","callId":"call@634","time":36183.311,"message":" selected specified option(s)"} +{"type":"after","callId":"call@634","endTime":36183.369,"result":{"values":["Female"]},"afterSnapshot":"after@call@634"} +{"type":"frame-snapshot","snapshot":{"callId":"call@634","snapshotName":"after@call@634","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"277","lang":"en","dir":"ltr","class":"light","style":""},[[92,27]],["BODY",{"class":"font-sans antialiased"},[[93,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[103,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[93,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[92,29]],["FORM",{"class":"space-y-6"},[[54,7]],[[13,7]],["DIV",{"class":"card"},[[92,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[92,91]],["DIV",{},[[92,93]],["SELECT",{"__playwright_target__":"","name":"passengers.2.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[92,94]]],[[92,97]],["OPTION",{"__playwright_selected_":"true","value":"Female"},[[92,98]]]]],[[92,105]],[[92,107]]]]],[[92,160]],[[92,210]],[[92,217]]]]]]]]]],[[103,296]],[[102,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36184.864,"wallTime":1784630696611,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@636","startTime":36185.465,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 3\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@72","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@636"} +{"type":"frame-snapshot","snapshot":{"callId":"call@636","snapshotName":"before@call@636","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"277","lang":"en","dir":"ltr","class":"light","style":""},[[93,27]],["BODY",{"class":"font-sans antialiased"},[[94,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[104,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[94,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[93,29]],["FORM",{"class":"space-y-6"},[[55,7]],[[14,7]],["DIV",{"class":"card"},[[93,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[93,91]],["DIV",{},[[93,93]],["SELECT",{"name":"passengers.2.gender","class":"input-field "},[[1,0]],[[93,97]],[[1,1]]]],[[93,105]],[[93,107]]]]],[[93,160]],[[93,210]],[[93,217]]]]]]]]]],[[104,296]],[[103,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36186.114,"wallTime":1784630696612,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@636","time":36186.283,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 3\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"log","callId":"call@636","time":36187.722,"message":" locator resolved to "} +{"type":"log","callId":"call@636","time":36188.017,"message":"attempting click action"} +{"type":"log","callId":"call@636","time":36188.029,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696615.jpeg","width":1280,"height":720,"timestamp":36188.987,"frameSwapWallTime":1784630696613.6838} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696623.jpeg","width":1280,"height":720,"timestamp":36196.943,"frameSwapWallTime":1784630696621.5032} +{"type":"log","callId":"call@636","time":36199.898,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@636","time":36199.9,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@636","time":36200.361,"message":" done scrolling"} +{"type":"input","callId":"call@636","point":{"x":1007.5,"y":696},"inputSnapshot":"input@call@636"} +{"type":"frame-snapshot","snapshot":{"callId":"call@636","snapshotName":"input@call@636","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[94,27]],["BODY",{"class":"font-sans antialiased"},[[95,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[105,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[95,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[94,29]],["FORM",{"class":"space-y-6"},[[56,7]],[[15,7]],["DIV",{"class":"card"},[[94,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],["DIV",{},[[94,75]],["DIV",{},["BUTTON",{"__playwright_target__":"","type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[94,77]],[[94,88]]]]],[[1,1]],[[94,105]],[[94,107]]]]],[[94,160]],[[94,210]],[[94,217]]]]]]]]]],[[105,296]],[[104,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36201.731,"wallTime":1784630696628,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@636","time":36202.348,"message":" performing click action"} +{"type":"log","callId":"call@636","time":36206.308,"message":" click action done"} +{"type":"log","callId":"call@636","time":36206.312,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@636","time":36206.492,"message":" navigations have finished"} +{"type":"after","callId":"call@636","endTime":36206.545,"afterSnapshot":"after@call@636"} +{"type":"frame-snapshot","snapshot":{"callId":"call@636","snapshotName":"after@call@636","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[95,27]],["BODY",{"class":"font-sans antialiased"},[[96,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[106,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[96,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[95,29]],["FORM",{"class":"space-y-6"},[[57,7]],[[16,7]],["DIV",{"class":"card"},[[95,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],["DIV",{},[[95,75]],["DIV",{},[[1,0]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2026"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2025"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2024"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2023"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2022"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2021"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2026"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[2,1]],[[95,105]],[[95,107]]]]],[[95,160]],[[95,210]],[[95,217]]]]]]]]]],[[106,296]],[[105,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36207.974,"wallTime":1784630696634,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@638","startTime":36208.845,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@73","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@638"} +{"type":"frame-snapshot","snapshot":{"callId":"call@638","snapshotName":"before@call@638","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[96,27]],["BODY",{"class":"font-sans antialiased"},[[97,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[107,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[97,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[96,29]],["FORM",{"class":"space-y-6"},[[58,7]],[[17,7]],["DIV",{"class":"card"},[[96,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],["DIV",{},[[96,75]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[96,77]],[[96,88]]],[[1,0]],[[1,143]],[[1,145]]]],[[3,1]],[[96,105]],[[96,107]]]]],[[96,160]],[[96,210]],[[96,217]]]]]]]]]],[[107,296]],[[106,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36209.981,"wallTime":1784630696636,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@638","time":36210.185,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@638","time":36212.183,"message":" locator resolved to "} +{"type":"log","callId":"call@638","time":36212.587,"message":"attempting click action"} +{"type":"log","callId":"call@638","time":36212.597,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696640.jpeg","width":1280,"height":720,"timestamp":36213.861,"frameSwapWallTime":1784630696638.378} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696649.jpeg","width":1280,"height":720,"timestamp":36223.222,"frameSwapWallTime":1784630696647.832} +{"type":"log","callId":"call@638","time":36224.308,"message":" element is not stable"} +{"type":"log","callId":"call@638","time":36224.314,"message":"retrying click action"} +{"type":"log","callId":"call@638","time":36224.331,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696657.jpeg","width":1280,"height":720,"timestamp":36230.573,"frameSwapWallTime":1784630696655.285} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696666.jpeg","width":1280,"height":720,"timestamp":36240.062,"frameSwapWallTime":1784630696664.988} +{"type":"log","callId":"call@638","time":36241.506,"message":" element is not stable"} +{"type":"log","callId":"call@638","time":36241.51,"message":"retrying click action"} +{"type":"log","callId":"call@638","time":36241.512,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696683.jpeg","width":1280,"height":720,"timestamp":36257.301,"frameSwapWallTime":1784630696681.993} +{"type":"log","callId":"call@638","time":36263.483,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696692.jpeg","width":1280,"height":720,"timestamp":36265.932,"frameSwapWallTime":1784630696690.707} +{"type":"log","callId":"call@638","time":36274.669,"message":" element is not stable"} +{"type":"log","callId":"call@638","time":36274.678,"message":"retrying click action"} +{"type":"log","callId":"call@638","time":36274.679,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696702.jpeg","width":1280,"height":720,"timestamp":36275.395,"frameSwapWallTime":1784630696700.0889} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696719.jpeg","width":1280,"height":720,"timestamp":36292.519,"frameSwapWallTime":1784630696717.275} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696727.jpeg","width":1280,"height":720,"timestamp":36300.731,"frameSwapWallTime":1784630696725.452} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696736.jpeg","width":1280,"height":720,"timestamp":36309.417,"frameSwapWallTime":1784630696734.14} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696751.jpeg","width":1280,"height":720,"timestamp":36325.09,"frameSwapWallTime":1784630696749.827} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696760.jpeg","width":1280,"height":720,"timestamp":36334.057,"frameSwapWallTime":1784630696758.888} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696769.jpeg","width":1280,"height":720,"timestamp":36342.785,"frameSwapWallTime":1784630696767.6921} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696777.jpeg","width":1280,"height":720,"timestamp":36350.984,"frameSwapWallTime":1784630696775.857} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696794.jpeg","width":1280,"height":720,"timestamp":36367.918,"frameSwapWallTime":1784630696792.6099} +{"type":"log","callId":"call@638","time":36375.613,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696803.jpeg","width":1280,"height":720,"timestamp":36376.363,"frameSwapWallTime":1784630696801.332} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696811.jpeg","width":1280,"height":720,"timestamp":36384.771,"frameSwapWallTime":1784630696809.4941} +{"type":"log","callId":"call@638","time":36391.661,"message":" element is not stable"} +{"type":"log","callId":"call@638","time":36391.672,"message":"retrying click action"} +{"type":"log","callId":"call@638","time":36391.673,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696819.jpeg","width":1280,"height":720,"timestamp":36392.537,"frameSwapWallTime":1784630696817.535} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696836.jpeg","width":1280,"height":720,"timestamp":36409.472,"frameSwapWallTime":1784630696834.375} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696844.jpeg","width":1280,"height":720,"timestamp":36417.354,"frameSwapWallTime":1784630696842.239} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696853.jpeg","width":1280,"height":720,"timestamp":36426.345,"frameSwapWallTime":1784630696851.286} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696861.jpeg","width":1280,"height":720,"timestamp":36434.451,"frameSwapWallTime":1784630696859.407} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696877.jpeg","width":1280,"height":720,"timestamp":36450.936,"frameSwapWallTime":1784630696875.939} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696885.jpeg","width":1280,"height":720,"timestamp":36459.222,"frameSwapWallTime":1784630696884.286} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696894.jpeg","width":1280,"height":720,"timestamp":36467.788,"frameSwapWallTime":1784630696892.633} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696900.jpeg","width":1280,"height":720,"timestamp":36473.73,"frameSwapWallTime":1784630696898.677} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696914.jpeg","width":1280,"height":720,"timestamp":36488.112,"frameSwapWallTime":1784630696913.03} +{"type":"log","callId":"call@638","time":36492.719,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696924.jpeg","width":1280,"height":720,"timestamp":36497.749,"frameSwapWallTime":1784630696922.628} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696932.jpeg","width":1280,"height":720,"timestamp":36505.392,"frameSwapWallTime":1784630696930.295} +{"type":"log","callId":"call@638","time":36508.379,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@638","time":36508.386,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@638","time":36508.588,"message":" done scrolling"} +{"type":"input","callId":"call@638","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@638"} +{"type":"frame-snapshot","snapshot":{"callId":"call@638","snapshotName":"input@call@638","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,15]],"viewport":{"width":1280,"height":720},"timestamp":36510.169,"wallTime":1784630696936,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@638","time":36510.659,"message":" performing click action"} +{"type":"log","callId":"call@638","time":36513.708,"message":" click action done"} +{"type":"log","callId":"call@638","time":36513.715,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@638","time":36513.94,"message":" navigations have finished"} +{"type":"after","callId":"call@638","endTime":36513.976,"afterSnapshot":"after@call@638"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696941.jpeg","width":1280,"height":720,"timestamp":36514.486,"frameSwapWallTime":1784630696939.401} +{"type":"frame-snapshot","snapshot":{"callId":"call@638","snapshotName":"after@call@638","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[98,27]],["BODY",{"class":"font-sans antialiased"},[[99,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[109,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[99,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[98,29]],["FORM",{"class":"space-y-6"},[[60,7]],[[19,7]],["DIV",{"class":"card"},[[98,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],["DIV",{},[[98,75]],["DIV",{},[[2,0]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[3,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[3,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","2021"," – ","2026"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[3,145]]]],[[5,1]],[[98,105]],[[98,107]]]]],[[98,160]],[[98,210]],[[98,217]]]]]]]]]],[[109,296]],[[108,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36514.917,"wallTime":1784630696941,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@640","startTime":36515.678,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"10","timeout":15000},"stepId":"pw:api@74","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@640"} +{"type":"frame-snapshot","snapshot":{"callId":"call@640","snapshotName":"before@call@640","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,41]],"viewport":{"width":1280,"height":720},"timestamp":36516.488,"wallTime":1784630696942,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@640","time":36516.584,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@640","time":36519.327,"message":" locator resolved to "} +{"type":"log","callId":"call@640","time":36519.6,"message":" fill(\"10\")"} +{"type":"log","callId":"call@640","time":36519.603,"message":"attempting fill action"} +{"type":"input","callId":"call@640","inputSnapshot":"input@call@640"} +{"type":"frame-snapshot","snapshot":{"callId":"call@640","snapshotName":"input@call@640","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[100,27]],["BODY",{"class":"font-sans antialiased"},[[101,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[111,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[101,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[100,29]],["FORM",{"class":"space-y-6"},[[62,7]],[[21,7]],["DIV",{"class":"card"},[[100,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[10,1]],["DIV",{},[[100,75]],["DIV",{},[[4,0]],[[5,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[5,145]]]],[[7,1]],[[100,105]],[[100,107]]]]],[[100,160]],[[100,210]],[[100,217]]]]]]]]]],[[111,296]],[[110,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36520.468,"wallTime":1784630696946,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@640","time":36520.535,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@640","endTime":36522.41,"afterSnapshot":"after@call@640"} +{"type":"frame-snapshot","snapshot":{"callId":"call@640","snapshotName":"after@call@640","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[101,27]],["BODY",{"class":"font-sans antialiased"},[[102,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[112,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[102,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[101,29]],["FORM",{"class":"space-y-6"},[[63,7]],[[22,7]],["DIV",{"class":"card"},[[101,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[11,1]],["DIV",{},[[101,75]],["DIV",{},[[5,0]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"10","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[6,145]]]],[[8,1]],[[101,105]],[[101,107]]]]],[[101,160]],[[101,210]],[[101,217]]]]]]]]]],[[112,296]],[[111,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36523.18,"wallTime":1784630696949,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@642","startTime":36523.921,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"3","timeout":15000},"stepId":"pw:api@75","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@642"} +{"type":"frame-snapshot","snapshot":{"callId":"call@642","snapshotName":"before@call@642","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[102,27]],["BODY",{"class":"font-sans antialiased"},[[103,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[113,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[103,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[102,29]],["FORM",{"class":"space-y-6"},[[64,7]],[[23,7]],["DIV",{"class":"card"},[[102,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[12,1]],["DIV",{},[[102,75]],["DIV",{},[[6,0]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"10","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[7,145]]]],[[9,1]],[[102,105]],[[102,107]]]]],[[102,160]],[[102,210]],[[102,217]]]]]]]]]],[[113,296]],[[112,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36524.834,"wallTime":1784630696951,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@642","time":36524.941,"message":"waiting for getByPlaceholder('MM')"} +{"type":"log","callId":"call@642","time":36526.413,"message":" locator resolved to "} +{"type":"log","callId":"call@642","time":36526.712,"message":" fill(\"3\")"} +{"type":"log","callId":"call@642","time":36526.715,"message":"attempting fill action"} +{"type":"input","callId":"call@642","inputSnapshot":"input@call@642"} +{"type":"frame-snapshot","snapshot":{"callId":"call@642","snapshotName":"input@call@642","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[103,27]],["BODY",{"class":"font-sans antialiased"},[[104,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[114,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[104,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[103,29]],["FORM",{"class":"space-y-6"},[[65,7]],[[24,7]],["DIV",{"class":"card"},[[103,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[13,1]],["DIV",{},[[103,75]],["DIV",{},[[7,0]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[8,145]]]],[[10,1]],[[103,105]],[[103,107]]]]],[[103,160]],[[103,210]],[[103,217]]]]]]]]]],[[114,296]],[[113,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36527.619,"wallTime":1784630696954,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@642","time":36527.711,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@642","endTime":36530.107,"afterSnapshot":"after@call@642"} +{"type":"frame-snapshot","snapshot":{"callId":"call@642","snapshotName":"after@call@642","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[104,27]],["BODY",{"class":"font-sans antialiased"},[[105,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[115,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[105,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[104,29]],["FORM",{"class":"space-y-6"},[[66,7]],[[25,7]],["DIV",{"class":"card"},[[104,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[14,1]],["DIV",{},[[104,75]],["DIV",{},[[8,0]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"10","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"10"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"3","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[9,145]]]],[[11,1]],[[104,105]],[[104,107]]]]],[[104,160]],[[104,210]],[[104,217]]]]]]]]]],[[115,296]],[[114,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36531.034,"wallTime":1784630696957,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@644","startTime":36531.844,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"2023","timeout":15000},"stepId":"pw:api@76","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@644"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696958.jpeg","width":1280,"height":720,"timestamp":36532.044,"frameSwapWallTime":1784630696956.32} +{"type":"frame-snapshot","snapshot":{"callId":"call@644","snapshotName":"before@call@644","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[105,27]],["BODY",{"class":"font-sans antialiased"},[[106,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[116,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[106,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[105,29]],["FORM",{"class":"space-y-6"},[[67,7]],[[26,7]],["DIV",{"class":"card"},[[105,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[15,1]],["DIV",{},[[105,75]],["DIV",{},[[9,0]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"3","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[10,145]]]],[[12,1]],[[105,105]],[[105,107]]]]],[[105,160]],[[105,210]],[[105,217]]]]]]]]]],[[116,296]],[[115,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36532.714,"wallTime":1784630696959,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@644","time":36532.805,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"log","callId":"call@644","time":36534.576,"message":" locator resolved to "} +{"type":"log","callId":"call@644","time":36534.958,"message":" fill(\"2023\")"} +{"type":"log","callId":"call@644","time":36534.965,"message":"attempting fill action"} +{"type":"input","callId":"call@644","inputSnapshot":"input@call@644"} +{"type":"frame-snapshot","snapshot":{"callId":"call@644","snapshotName":"input@call@644","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[106,27]],["BODY",{"class":"font-sans antialiased"},[[107,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[117,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[107,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[106,29]],["FORM",{"class":"space-y-6"},[[68,7]],[[27,7]],["DIV",{"class":"card"},[[106,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[16,1]],["DIV",{},[[106,75]],["DIV",{},[[10,0]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[11,145]]]],[[13,1]],[[106,105]],[[106,107]]]]],[[106,160]],[[106,210]],[[106,217]]]]]]]]]],[[117,296]],[[116,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36535.843,"wallTime":1784630696962,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@644","time":36535.927,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@644","endTime":36538.377,"afterSnapshot":"after@call@644"} +{"type":"frame-snapshot","snapshot":{"callId":"call@644","snapshotName":"after@call@644","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[107,27]],["BODY",{"class":"font-sans antialiased"},[[108,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[118,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[108,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[107,29]],["FORM",{"class":"space-y-6"},[[69,7]],[[28,7]],["DIV",{"class":"card"},[[107,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[17,1]],["DIV",{},[[107,75]],["DIV",{},[[11,0]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"3","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"3"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"2023","__playwright_target__":"","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 10/3/2023"]]],[[12,145]]]],[[14,1]],[[107,105]],[[107,107]]]]],[[107,160]],[[107,210]],[[107,217]]]]]]]]]],[[118,296]],[[117,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36539.339,"wallTime":1784630696965,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@646","startTime":36540.064,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@77","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@646"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696966.jpeg","width":1280,"height":720,"timestamp":36540.226,"frameSwapWallTime":1784630696964.517} +{"type":"frame-snapshot","snapshot":{"callId":"call@646","snapshotName":"before@call@646","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[108,27]],["BODY",{"class":"font-sans antialiased"},[[109,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[119,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[109,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[108,29]],["FORM",{"class":"space-y-6"},[[70,7]],[[29,7]],["DIV",{"class":"card"},[[108,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[18,1]],["DIV",{},[[108,75]],["DIV",{},[[12,0]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[10,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"2023","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[13,145]]]],[[15,1]],[[108,105]],[[108,107]]]]],[[108,160]],[[108,210]],[[108,217]]]]]]]]]],[[119,296]],[[118,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36540.886,"wallTime":1784630696967,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@646","time":36541,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"log","callId":"call@646","time":36543.285,"message":" locator resolved to "} +{"type":"log","callId":"call@646","time":36543.62,"message":"attempting click action"} +{"type":"log","callId":"call@646","time":36543.637,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696973.jpeg","width":1280,"height":720,"timestamp":36547.089,"frameSwapWallTime":1784630696972.002} +{"type":"log","callId":"call@646","time":36558.458,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@646","time":36558.468,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@646","time":36558.93,"message":" done scrolling"} +{"type":"input","callId":"call@646","point":{"x":1162.85,"y":668},"inputSnapshot":"input@call@646"} +{"type":"frame-snapshot","snapshot":{"callId":"call@646","snapshotName":"input@call@646","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[109,27]],["BODY",{"class":"font-sans antialiased"},[[110,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[120,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[110,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[109,29]],["FORM",{"class":"space-y-6"},[[71,7]],[[30,7]],["DIV",{"class":"card"},[[109,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[19,1]],["DIV",{},[[109,75]],["DIV",{},[[13,0]],[[14,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[11,3]],[[1,3]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"__playwright_target__":"","type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},[[2,6]]]]],[[14,145]]]],[[16,1]],[[109,105]],[[109,107]]]]],[[109,160]],[[109,210]],[[109,217]]]]]]]]]],[[120,296]],[[119,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36560.349,"wallTime":1784630696986,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@646","time":36561.041,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696991.jpeg","width":1280,"height":720,"timestamp":36564.621,"frameSwapWallTime":1784630696989.47} +{"type":"log","callId":"call@646","time":36567.816,"message":" click action done"} +{"type":"log","callId":"call@646","time":36567.821,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@646","time":36568.225,"message":" navigations have finished"} +{"type":"after","callId":"call@646","endTime":36568.278,"afterSnapshot":"after@call@646"} +{"type":"frame-snapshot","snapshot":{"callId":"call@646","snapshotName":"after@call@646","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[110,27]],["BODY",{"class":"font-sans antialiased"},[[111,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[121,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[111,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[110,29]],["FORM",{"class":"space-y-6"},[[72,7]],[[31,7]],["DIV",{"class":"card"},[[110,69]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[110,75]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"March 10, 2023"],[[110,88]]]]],[[17,1]],[[110,105]],[[110,107]]]]],[[110,160]],[[110,210]],[[110,217]]]]]]]]]],[[121,296]],[[120,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36569.171,"wallTime":1784630696995,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@648","startTime":36570.359,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.3.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@78","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@648"} +{"type":"before","callId":"call@650","startTime":36570.589,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 4\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@79","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@650"} +{"type":"frame-snapshot","snapshot":{"callId":"call@648","snapshotName":"before@call@648","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":36571.512,"wallTime":1784630696997,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@648","time":36571.625,"message":"waiting for locator('input[name=\"passengers.3.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@650","snapshotName":"before@call@650","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,17]],"viewport":{"width":1280,"height":720},"timestamp":36571.815,"wallTime":1784630696998,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@650","time":36571.887,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 4\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630696999.jpeg","width":1280,"height":720,"timestamp":36572.866,"frameSwapWallTime":1784630696997.697} +{"type":"log","callId":"call@648","time":36573.192,"message":" locator resolved to visible "} +{"type":"after","callId":"call@648","endTime":36573.207,"result":{},"afterSnapshot":"after@call@648"} +{"type":"frame-snapshot","snapshot":{"callId":"call@648","snapshotName":"after@call@648","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,17]],"viewport":{"width":1280,"height":720},"timestamp":36573.804,"wallTime":1784630697000,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@652","startTime":36574.419,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.3.name\"]","strict":true},"stepId":"pw:api@80","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@652"} +{"type":"frame-snapshot","snapshot":{"callId":"call@652","snapshotName":"before@call@652","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,17]],"viewport":{"width":1280,"height":720},"timestamp":36575.071,"wallTime":1784630697001,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@652","time":36575.214,"message":" checking visibility of locator('input[name=\"passengers.3.name\"]')"} +{"type":"after","callId":"call@652","endTime":36575.673,"result":{"value":true},"afterSnapshot":"after@call@652"} +{"type":"frame-snapshot","snapshot":{"callId":"call@652","snapshotName":"after@call@652","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,17]],"viewport":{"width":1280,"height":720},"timestamp":36576.261,"wallTime":1784630697002,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@654","startTime":36576.743,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.3.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@81","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@654"} +{"type":"frame-snapshot","snapshot":{"callId":"call@654","snapshotName":"before@call@654","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,17]],"viewport":{"width":1280,"height":720},"timestamp":36577.299,"wallTime":1784630697003,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@654","time":36577.418,"message":"waiting for locator('input[name=\"passengers.3.name\"]') to be visible"} +{"type":"log","callId":"call@654","time":36578.236,"message":" locator resolved to visible "} +{"type":"after","callId":"call@654","endTime":36578.261,"result":{},"afterSnapshot":"after@call@654"} +{"type":"frame-snapshot","snapshot":{"callId":"call@654","snapshotName":"after@call@654","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,17]],"viewport":{"width":1280,"height":720},"timestamp":36578.851,"wallTime":1784630697005,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@656","startTime":36579.466,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.3.name\"]","strict":true,"value":"Child 2","timeout":15000},"stepId":"pw:api@82","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@656"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697006.jpeg","width":1280,"height":720,"timestamp":36579.701,"frameSwapWallTime":1784630697004.303} +{"type":"frame-snapshot","snapshot":{"callId":"call@656","snapshotName":"before@call@656","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[8,17]],"viewport":{"width":1280,"height":720},"timestamp":36580.08,"wallTime":1784630697006,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@656","time":36580.16,"message":"waiting for locator('input[name=\"passengers.3.name\"]')"} +{"type":"log","callId":"call@656","time":36580.904,"message":" locator resolved to "} +{"type":"log","callId":"call@656","time":36581.136,"message":" fill(\"Child 2\")"} +{"type":"log","callId":"call@656","time":36581.139,"message":"attempting fill action"} +{"type":"input","callId":"call@656","inputSnapshot":"input@call@656"} +{"type":"frame-snapshot","snapshot":{"callId":"call@656","snapshotName":"input@call@656","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"290","lang":"en","dir":"ltr","class":"light","style":""},[[119,27]],["BODY",{"class":"font-sans antialiased"},[[120,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[130,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[120,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[119,29]],["FORM",{"class":"space-y-6"},[[81,7]],[[40,7]],[[9,7]],["DIV",{"class":"card"},[[119,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[119,121]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.3.name"}]],[[119,141]],[[119,151]],[[119,155]],[[119,157]]]]],[[119,210]],[[119,217]]]]]]]]]],[[130,296]],[[129,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36581.766,"wallTime":1784630697008,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@656","time":36581.814,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@656","endTime":36585.269,"afterSnapshot":"after@call@656"} +{"type":"frame-snapshot","snapshot":{"callId":"call@656","snapshotName":"after@call@656","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"623","lang":"en","dir":"ltr","class":"light","style":""},[[120,27]],["BODY",{"class":"font-sans antialiased"},[[121,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[131,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[121,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[120,29]],["FORM",{"class":"space-y-6"},[[82,7]],[[41,7]],[[10,7]],["DIV",{"class":"card"},[[120,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[120,121]],["INPUT",{"__playwright_value_":"Child 2","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.3.name"}]],[[120,141]],[[120,151]],[[120,155]],[[120,157]]]]],[[120,210]],[[120,217]]]]]]]]]],[[131,296]],[[130,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36585.98,"wallTime":1784630697012,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@658","startTime":36586.589,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.3.gender\"]","strict":true,"options":[{"valueOrLabel":"Female"}],"timeout":15000},"stepId":"pw:api@83","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@658"} +{"type":"frame-snapshot","snapshot":{"callId":"call@658","snapshotName":"before@call@658","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"623","lang":"en","dir":"ltr","class":"light","style":""},[[121,27]],["BODY",{"class":"font-sans antialiased"},[[122,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[132,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[122,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[121,29]],["FORM",{"class":"space-y-6"},[[83,7]],[[42,7]],[[11,7]],["DIV",{"class":"card"},[[121,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[121,121]],["INPUT",{"__playwright_value_":"Child 2","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.3.name"}]],[[121,141]],[[121,151]],[[121,155]],[[121,157]]]]],[[121,210]],[[121,217]]]]]]]]]],[[132,296]],[[131,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36587.289,"wallTime":1784630697013,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@658","time":36587.43,"message":"waiting for locator('select[name=\"passengers.3.gender\"]')"} +{"type":"log","callId":"call@658","time":36588.181,"message":" locator resolved to "} +{"type":"log","callId":"call@658","time":36588.445,"message":"attempting select option action"} +{"type":"input","callId":"call@658","inputSnapshot":"input@call@658"} +{"type":"frame-snapshot","snapshot":{"callId":"call@658","snapshotName":"input@call@658","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"623","lang":"en","dir":"ltr","class":"light","style":""},[[122,27]],["BODY",{"class":"font-sans antialiased"},[[123,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[133,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[123,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[122,29]],["FORM",{"class":"space-y-6"},[[84,7]],[[43,7]],[[12,7]],["DIV",{"class":"card"},[[122,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[122,141]],["DIV",{},[[122,143]],["SELECT",{"__playwright_target__":"","name":"passengers.3.gender","class":"input-field "},[[122,145]],[[122,147]],[[122,149]]]],[[122,155]],[[122,157]]]]],[[122,210]],[[122,217]]]]]]]]]],[[133,296]],[[132,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36589.084,"wallTime":1784630697015,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@658","time":36589.143,"message":" waiting for element to be visible and enabled"} +{"type":"log","callId":"call@658","time":36591.003,"message":" selected specified option(s)"} +{"type":"after","callId":"call@658","endTime":36591.066,"result":{"values":["Female"]},"afterSnapshot":"after@call@658"} +{"type":"frame-snapshot","snapshot":{"callId":"call@658","snapshotName":"after@call@658","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"623","lang":"en","dir":"ltr","class":"light","style":""},[[123,27]],["BODY",{"class":"font-sans antialiased"},[[124,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[134,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[124,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[123,29]],["FORM",{"class":"space-y-6"},[[85,7]],[[44,7]],[[13,7]],["DIV",{"class":"card"},[[123,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[123,141]],["DIV",{},[[123,143]],["SELECT",{"__playwright_target__":"","name":"passengers.3.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[123,144]]],[[123,147]],["OPTION",{"__playwright_selected_":"true","value":"Female"},[[123,148]]]]],[[123,155]],[[123,157]]]]],[[123,210]],[[123,217]]]]]]]]]],[[134,296]],[[133,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36592.528,"wallTime":1784630697019,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@660","startTime":36593.437,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 4\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@84","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@660"} +{"type":"frame-snapshot","snapshot":{"callId":"call@660","snapshotName":"before@call@660","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"623","lang":"en","dir":"ltr","class":"light","style":""},[[124,27]],["BODY",{"class":"font-sans antialiased"},[[125,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[135,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[125,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[124,29]],["FORM",{"class":"space-y-6"},[[86,7]],[[45,7]],[[14,7]],["DIV",{"class":"card"},[[124,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[124,141]],["DIV",{},[[124,143]],["SELECT",{"name":"passengers.3.gender","class":"input-field "},[[1,0]],[[124,147]],[[1,1]]]],[[124,155]],[[124,157]]]]],[[124,210]],[[124,217]]]]]]]]]],[[135,296]],[[134,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36594.734,"wallTime":1784630697021,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@660","time":36594.902,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 4\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697022.jpeg","width":1280,"height":720,"timestamp":36596.061,"frameSwapWallTime":1784630697020.743} +{"type":"log","callId":"call@660","time":36596.413,"message":" locator resolved to "} +{"type":"log","callId":"call@660","time":36596.673,"message":"attempting click action"} +{"type":"log","callId":"call@660","time":36596.683,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697032.jpeg","width":1280,"height":720,"timestamp":36605.621,"frameSwapWallTime":1784630697030.252} +{"type":"log","callId":"call@660","time":36607.697,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@660","time":36607.701,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@660","time":36608.132,"message":" done scrolling"} +{"type":"input","callId":"call@660","point":{"x":1007.5,"y":696},"inputSnapshot":"input@call@660"} +{"type":"frame-snapshot","snapshot":{"callId":"call@660","snapshotName":"input@call@660","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[125,27]],["BODY",{"class":"font-sans antialiased"},[[126,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[136,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[126,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[125,29]],["FORM",{"class":"space-y-6"},[[87,7]],[[46,7]],[[15,7]],["DIV",{"class":"card"},[[125,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],["DIV",{},[[125,125]],["DIV",{},["BUTTON",{"__playwright_target__":"","type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[125,127]],[[125,138]]]]],[[1,1]],[[125,155]],[[125,157]]]]],[[125,210]],[[125,217]]]]]]]]]],[[136,296]],[[135,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36609.215,"wallTime":1784630697035,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@660","time":36609.806,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697039.jpeg","width":1280,"height":720,"timestamp":36612.963,"frameSwapWallTime":1784630697037.638} +{"type":"log","callId":"call@660","time":36613.691,"message":" click action done"} +{"type":"log","callId":"call@660","time":36613.695,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@660","time":36613.833,"message":" navigations have finished"} +{"type":"after","callId":"call@660","endTime":36613.868,"afterSnapshot":"after@call@660"} +{"type":"frame-snapshot","snapshot":{"callId":"call@660","snapshotName":"after@call@660","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[126,27]],["BODY",{"class":"font-sans antialiased"},[[127,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[137,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[127,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[126,29]],["FORM",{"class":"space-y-6"},[[88,7]],[[47,7]],[[16,7]],["DIV",{"class":"card"},[[126,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],["DIV",{},[[126,125]],["DIV",{},[[1,0]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2026"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2025"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2024"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2023"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2022"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2021"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2026"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[2,1]],[[126,155]],[[126,157]]]]],[[126,210]],[[126,217]]]]]]]]]],[[137,296]],[[136,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36615.139,"wallTime":1784630697041,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@662","startTime":36615.906,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@85","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@662"} +{"type":"frame-snapshot","snapshot":{"callId":"call@662","snapshotName":"before@call@662","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[127,27]],["BODY",{"class":"font-sans antialiased"},[[128,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[138,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[128,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[127,29]],["FORM",{"class":"space-y-6"},[[89,7]],[[48,7]],[[17,7]],["DIV",{"class":"card"},[[127,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],["DIV",{},[[127,125]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[127,127]],[[127,138]]],[[1,0]],[[1,143]],[[1,145]]]],[[3,1]],[[127,155]],[[127,157]]]]],[[127,210]],[[127,217]]]]]]]]]],[[138,296]],[[137,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36616.677,"wallTime":1784630697043,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@662","time":36616.789,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@662","time":36619.077,"message":" locator resolved to "} +{"type":"log","callId":"call@662","time":36619.317,"message":"attempting click action"} +{"type":"log","callId":"call@662","time":36619.332,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697048.jpeg","width":1280,"height":720,"timestamp":36622.023,"frameSwapWallTime":1784630697046.5989} +{"type":"log","callId":"call@662","time":36632.885,"message":" element is not stable"} +{"type":"log","callId":"call@662","time":36632.896,"message":"retrying click action"} +{"type":"log","callId":"call@662","time":36632.917,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697065.jpeg","width":1280,"height":720,"timestamp":36639.133,"frameSwapWallTime":1784630697063.9019} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697075.jpeg","width":1280,"height":720,"timestamp":36648.547,"frameSwapWallTime":1784630697073.3262} +{"type":"log","callId":"call@662","time":36649.9,"message":" element is not stable"} +{"type":"log","callId":"call@662","time":36649.905,"message":"retrying click action"} +{"type":"log","callId":"call@662","time":36649.907,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697083.jpeg","width":1280,"height":720,"timestamp":36657.061,"frameSwapWallTime":1784630697081.85} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697091.jpeg","width":1280,"height":720,"timestamp":36665.215,"frameSwapWallTime":1784630697090.037} +{"type":"log","callId":"call@662","time":36671.063,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697110.jpeg","width":1280,"height":720,"timestamp":36683.398,"frameSwapWallTime":1784630697108.217} +{"type":"log","callId":"call@662","time":36683.518,"message":" element is not stable"} +{"type":"log","callId":"call@662","time":36683.522,"message":"retrying click action"} +{"type":"log","callId":"call@662","time":36683.523,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697118.jpeg","width":1280,"height":720,"timestamp":36691.896,"frameSwapWallTime":1784630697116.732} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697127.jpeg","width":1280,"height":720,"timestamp":36700.743,"frameSwapWallTime":1784630697125.3728} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697136.jpeg","width":1280,"height":720,"timestamp":36709.335,"frameSwapWallTime":1784630697134.0781} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697152.jpeg","width":1280,"height":720,"timestamp":36726.19,"frameSwapWallTime":1784630697150.847} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697160.jpeg","width":1280,"height":720,"timestamp":36733.92,"frameSwapWallTime":1784630697158.784} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697169.jpeg","width":1280,"height":720,"timestamp":36743.04,"frameSwapWallTime":1784630697167.9028} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697186.jpeg","width":1280,"height":720,"timestamp":36759.464,"frameSwapWallTime":1784630697184.505} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697194.jpeg","width":1280,"height":720,"timestamp":36767.829,"frameSwapWallTime":1784630697192.731} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697202.jpeg","width":1280,"height":720,"timestamp":36776.078,"frameSwapWallTime":1784630697201.0168} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697210.jpeg","width":1280,"height":720,"timestamp":36784.112,"frameSwapWallTime":1784630697208.966} +{"type":"log","callId":"call@662","time":36784.273,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@662","time":36800.47,"message":" element is not stable"} +{"type":"log","callId":"call@662","time":36800.479,"message":"retrying click action"} +{"type":"log","callId":"call@662","time":36800.481,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697228.jpeg","width":1280,"height":720,"timestamp":36801.706,"frameSwapWallTime":1784630697226.585} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697237.jpeg","width":1280,"height":720,"timestamp":36810.588,"frameSwapWallTime":1784630697235.424} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697245.jpeg","width":1280,"height":720,"timestamp":36818.989,"frameSwapWallTime":1784630697243.884} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697254.jpeg","width":1280,"height":720,"timestamp":36827.586,"frameSwapWallTime":1784630697252.451} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697269.jpeg","width":1280,"height":720,"timestamp":36843.284,"frameSwapWallTime":1784630697268.0818} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697278.jpeg","width":1280,"height":720,"timestamp":36852.157,"frameSwapWallTime":1784630697276.7341} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697287.jpeg","width":1280,"height":720,"timestamp":36860.58,"frameSwapWallTime":1784630697285.438} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697295.jpeg","width":1280,"height":720,"timestamp":36869.057,"frameSwapWallTime":1784630697293.9092} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697308.jpeg","width":1280,"height":720,"timestamp":36881.409,"frameSwapWallTime":1784630697306.316} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697315.jpeg","width":1280,"height":720,"timestamp":36888.967,"frameSwapWallTime":1784630697313.999} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697323.jpeg","width":1280,"height":720,"timestamp":36897.274,"frameSwapWallTime":1784630697322.233} +{"type":"log","callId":"call@662","time":36902.158,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697332.jpeg","width":1280,"height":720,"timestamp":36905.76,"frameSwapWallTime":1784630697330.659} +{"type":"log","callId":"call@662","time":36916.72,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@662","time":36916.73,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@662","time":36916.973,"message":" done scrolling"} +{"type":"input","callId":"call@662","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@662"} +{"type":"frame-snapshot","snapshot":{"callId":"call@662","snapshotName":"input@call@662","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,15]],"viewport":{"width":1280,"height":720},"timestamp":36918.189,"wallTime":1784630697344,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@662","time":36918.775,"message":" performing click action"} +{"type":"log","callId":"call@662","time":36921.727,"message":" click action done"} +{"type":"log","callId":"call@662","time":36921.731,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@662","time":36921.936,"message":" navigations have finished"} +{"type":"after","callId":"call@662","endTime":36921.982,"afterSnapshot":"after@call@662"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697349.jpeg","width":1280,"height":720,"timestamp":36922.839,"frameSwapWallTime":1784630697347.794} +{"type":"frame-snapshot","snapshot":{"callId":"call@662","snapshotName":"after@call@662","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[129,27]],["BODY",{"class":"font-sans antialiased"},[[130,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[140,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[130,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[129,29]],["FORM",{"class":"space-y-6"},[[91,7]],[[50,7]],[[19,7]],["DIV",{"class":"card"},[[129,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],["DIV",{},[[129,125]],["DIV",{},[[2,0]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[3,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[3,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","2021"," – ","2026"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[3,145]]]],[[5,1]],[[129,155]],[[129,157]]]]],[[129,210]],[[129,217]]]]]]]]]],[[140,296]],[[139,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36922.969,"wallTime":1784630697349,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@664","startTime":36923.557,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"10","timeout":15000},"stepId":"pw:api@86","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@664"} +{"type":"frame-snapshot","snapshot":{"callId":"call@664","snapshotName":"before@call@664","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,41]],"viewport":{"width":1280,"height":720},"timestamp":36925.386,"wallTime":1784630697351,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@664","time":36925.508,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@664","time":36926.175,"message":" locator resolved to "} +{"type":"log","callId":"call@664","time":36926.396,"message":" fill(\"10\")"} +{"type":"log","callId":"call@664","time":36926.398,"message":"attempting fill action"} +{"type":"input","callId":"call@664","inputSnapshot":"input@call@664"} +{"type":"frame-snapshot","snapshot":{"callId":"call@664","snapshotName":"input@call@664","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[131,27]],["BODY",{"class":"font-sans antialiased"},[[132,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[142,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[132,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[131,29]],["FORM",{"class":"space-y-6"},[[93,7]],[[52,7]],[[21,7]],["DIV",{"class":"card"},[[131,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[10,1]],["DIV",{},[[131,125]],["DIV",{},[[4,0]],[[5,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[5,145]]]],[[7,1]],[[131,155]],[[131,157]]]]],[[131,210]],[[131,217]]]]]]]]]],[[142,296]],[[141,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36927.022,"wallTime":1784630697353,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@664","time":36927.064,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@664","endTime":36928.708,"afterSnapshot":"after@call@664"} +{"type":"frame-snapshot","snapshot":{"callId":"call@664","snapshotName":"after@call@664","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[132,27]],["BODY",{"class":"font-sans antialiased"},[[133,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[143,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[133,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[132,29]],["FORM",{"class":"space-y-6"},[[94,7]],[[53,7]],[[22,7]],["DIV",{"class":"card"},[[132,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[11,1]],["DIV",{},[[132,125]],["DIV",{},[[5,0]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"10","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[6,145]]]],[[8,1]],[[132,155]],[[132,157]]]]],[[132,210]],[[132,217]]]]]]]]]],[[143,296]],[[142,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36929.555,"wallTime":1784630697356,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@666","startTime":36930.24,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"3","timeout":15000},"stepId":"pw:api@87","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@666"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697357.jpeg","width":1280,"height":720,"timestamp":36930.406,"frameSwapWallTime":1784630697354.888} +{"type":"frame-snapshot","snapshot":{"callId":"call@666","snapshotName":"before@call@666","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[133,27]],["BODY",{"class":"font-sans antialiased"},[[134,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[144,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[134,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[133,29]],["FORM",{"class":"space-y-6"},[[95,7]],[[54,7]],[[23,7]],["DIV",{"class":"card"},[[133,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[12,1]],["DIV",{},[[133,125]],["DIV",{},[[6,0]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"10","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[7,145]]]],[[9,1]],[[133,155]],[[133,157]]]]],[[133,210]],[[133,217]]]]]]]]]],[[144,296]],[[143,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36930.986,"wallTime":1784630697357,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@666","time":36931.071,"message":"waiting for getByPlaceholder('MM')"} +{"type":"log","callId":"call@666","time":36931.621,"message":" locator resolved to "} +{"type":"log","callId":"call@666","time":36931.83,"message":" fill(\"3\")"} +{"type":"log","callId":"call@666","time":36931.834,"message":"attempting fill action"} +{"type":"input","callId":"call@666","inputSnapshot":"input@call@666"} +{"type":"frame-snapshot","snapshot":{"callId":"call@666","snapshotName":"input@call@666","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[134,27]],["BODY",{"class":"font-sans antialiased"},[[135,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[145,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[135,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[134,29]],["FORM",{"class":"space-y-6"},[[96,7]],[[55,7]],[[24,7]],["DIV",{"class":"card"},[[134,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[13,1]],["DIV",{},[[134,125]],["DIV",{},[[7,0]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[8,145]]]],[[10,1]],[[134,155]],[[134,157]]]]],[[134,210]],[[134,217]]]]]]]]]],[[145,296]],[[144,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36932.5,"wallTime":1784630697359,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@666","time":36932.583,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@666","endTime":36935.03,"afterSnapshot":"after@call@666"} +{"type":"frame-snapshot","snapshot":{"callId":"call@666","snapshotName":"after@call@666","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[135,27]],["BODY",{"class":"font-sans antialiased"},[[136,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[146,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[136,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[135,29]],["FORM",{"class":"space-y-6"},[[97,7]],[[56,7]],[[25,7]],["DIV",{"class":"card"},[[135,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[14,1]],["DIV",{},[[135,125]],["DIV",{},[[8,0]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"10","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"10"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"3","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[9,145]]]],[[11,1]],[[135,155]],[[135,157]]]]],[[135,210]],[[135,217]]]]]]]]]],[[146,296]],[[145,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36935.794,"wallTime":1784630697362,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@668","startTime":36936.413,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"2023","timeout":15000},"stepId":"pw:api@88","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@668"} +{"type":"frame-snapshot","snapshot":{"callId":"call@668","snapshotName":"before@call@668","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[136,27]],["BODY",{"class":"font-sans antialiased"},[[137,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[147,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[137,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[136,29]],["FORM",{"class":"space-y-6"},[[98,7]],[[57,7]],[[26,7]],["DIV",{"class":"card"},[[136,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[15,1]],["DIV",{},[[136,125]],["DIV",{},[[9,0]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"3","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[10,145]]]],[[12,1]],[[136,155]],[[136,157]]]]],[[136,210]],[[136,217]]]]]]]]]],[[147,296]],[[146,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36937.195,"wallTime":1784630697363,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@668","time":36937.306,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"log","callId":"call@668","time":36938.269,"message":" locator resolved to "} +{"type":"log","callId":"call@668","time":36938.557,"message":" fill(\"2023\")"} +{"type":"log","callId":"call@668","time":36938.563,"message":"attempting fill action"} +{"type":"input","callId":"call@668","inputSnapshot":"input@call@668"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697365.jpeg","width":1280,"height":720,"timestamp":36939.021,"frameSwapWallTime":1784630697363.927} +{"type":"frame-snapshot","snapshot":{"callId":"call@668","snapshotName":"input@call@668","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[137,27]],["BODY",{"class":"font-sans antialiased"},[[138,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[148,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[138,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[137,29]],["FORM",{"class":"space-y-6"},[[99,7]],[[58,7]],[[27,7]],["DIV",{"class":"card"},[[137,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[16,1]],["DIV",{},[[137,125]],["DIV",{},[[10,0]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[11,145]]]],[[13,1]],[[137,155]],[[137,157]]]]],[[137,210]],[[137,217]]]]]]]]]],[[148,296]],[[147,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36939.3,"wallTime":1784630697365,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@668","time":36939.345,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@668","endTime":36941.377,"afterSnapshot":"after@call@668"} +{"type":"frame-snapshot","snapshot":{"callId":"call@668","snapshotName":"after@call@668","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[138,27]],["BODY",{"class":"font-sans antialiased"},[[139,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[149,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[139,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[138,29]],["FORM",{"class":"space-y-6"},[[100,7]],[[59,7]],[[28,7]],["DIV",{"class":"card"},[[138,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[17,1]],["DIV",{},[[138,125]],["DIV",{},[[11,0]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"3","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"3"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"2023","__playwright_target__":"","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 10/3/2023"]]],[[12,145]]]],[[14,1]],[[138,155]],[[138,157]]]]],[[138,210]],[[138,217]]]]]]]]]],[[149,296]],[[148,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36942.859,"wallTime":1784630697369,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@670","startTime":36943.832,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@89","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@670"} +{"type":"frame-snapshot","snapshot":{"callId":"call@670","snapshotName":"before@call@670","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[139,27]],["BODY",{"class":"font-sans antialiased"},[[140,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[150,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[140,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[139,29]],["FORM",{"class":"space-y-6"},[[101,7]],[[60,7]],[[29,7]],["DIV",{"class":"card"},[[139,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[18,1]],["DIV",{},[[139,125]],["DIV",{},[[12,0]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[10,3]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"2023","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[13,145]]]],[[15,1]],[[139,155]],[[139,157]]]]],[[139,210]],[[139,217]]]]]]]]]],[[150,296]],[[149,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36944.575,"wallTime":1784630697371,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@670","time":36944.701,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"log","callId":"call@670","time":36945.999,"message":" locator resolved to "} +{"type":"log","callId":"call@670","time":36946.305,"message":"attempting click action"} +{"type":"log","callId":"call@670","time":36946.321,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697382.jpeg","width":1280,"height":720,"timestamp":36956.304,"frameSwapWallTime":1784630697381.156} +{"type":"log","callId":"call@670","time":36958.264,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@670","time":36958.271,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@670","time":36958.797,"message":" done scrolling"} +{"type":"input","callId":"call@670","point":{"x":1162.85,"y":668},"inputSnapshot":"input@call@670"} +{"type":"frame-snapshot","snapshot":{"callId":"call@670","snapshotName":"input@call@670","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[140,27]],["BODY",{"class":"font-sans antialiased"},[[141,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[151,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[141,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[140,29]],["FORM",{"class":"space-y-6"},[[102,7]],[[61,7]],[[30,7]],["DIV",{"class":"card"},[[140,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[19,1]],["DIV",{},[[140,125]],["DIV",{},[[13,0]],[[14,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[11,3]],[[1,3]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"__playwright_target__":"","type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},[[2,6]]]]],[[14,145]]]],[[16,1]],[[140,155]],[[140,157]]]]],[[140,210]],[[140,217]]]]]]]]]],[[151,296]],[[150,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36960.075,"wallTime":1784630697386,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@670","time":36960.822,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697391.jpeg","width":1280,"height":720,"timestamp":36964.424,"frameSwapWallTime":1784630697389.277} +{"type":"log","callId":"call@670","time":36967.733,"message":" click action done"} +{"type":"log","callId":"call@670","time":36967.742,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@670","time":36968.066,"message":" navigations have finished"} +{"type":"after","callId":"call@670","endTime":36968.117,"afterSnapshot":"after@call@670"} +{"type":"frame-snapshot","snapshot":{"callId":"call@670","snapshotName":"after@call@670","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[141,27]],["BODY",{"class":"font-sans antialiased"},[[142,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[152,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[142,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[141,29]],["FORM",{"class":"space-y-6"},[[103,7]],[[62,7]],[[31,7]],["DIV",{"class":"card"},[[141,119]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[141,125]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"March 10, 2023"],[[141,138]]]]],[[17,1]],[[141,155]],[[141,157]]]]],[[141,210]],[[141,217]]]]]]]]]],[[152,296]],[[151,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36969.008,"wallTime":1784630697395,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@672","startTime":36970.044,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.4.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@90","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@672"} +{"type":"before","callId":"call@674","startTime":36970.303,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 5\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@91","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@674"} +{"type":"frame-snapshot","snapshot":{"callId":"call@672","snapshotName":"before@call@672","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":36970.799,"wallTime":1784630697397,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@672","time":36970.901,"message":"waiting for locator('input[name=\"passengers.4.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@674","snapshotName":"before@call@674","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,17]],"viewport":{"width":1280,"height":720},"timestamp":36971.495,"wallTime":1784630697397,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@674","time":36971.593,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 5\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"log","callId":"call@672","time":36972.612,"message":" locator resolved to visible "} +{"type":"after","callId":"call@672","endTime":36972.624,"result":{},"afterSnapshot":"after@call@672"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697399.jpeg","width":1280,"height":720,"timestamp":36972.912,"frameSwapWallTime":1784630697397.706} +{"type":"frame-snapshot","snapshot":{"callId":"call@672","snapshotName":"after@call@672","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,17]],"viewport":{"width":1280,"height":720},"timestamp":36973.367,"wallTime":1784630697399,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@676","startTime":36973.914,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.4.name\"]","strict":true},"stepId":"pw:api@92","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@676"} +{"type":"frame-snapshot","snapshot":{"callId":"call@676","snapshotName":"before@call@676","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,17]],"viewport":{"width":1280,"height":720},"timestamp":36974.666,"wallTime":1784630697401,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@676","time":36974.817,"message":" checking visibility of locator('input[name=\"passengers.4.name\"]')"} +{"type":"after","callId":"call@676","endTime":36975.612,"result":{"value":true},"afterSnapshot":"after@call@676"} +{"type":"frame-snapshot","snapshot":{"callId":"call@676","snapshotName":"after@call@676","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,17]],"viewport":{"width":1280,"height":720},"timestamp":36976.3,"wallTime":1784630697402,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@678","startTime":36976.8,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.4.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@93","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@678"} +{"type":"frame-snapshot","snapshot":{"callId":"call@678","snapshotName":"before@call@678","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,17]],"viewport":{"width":1280,"height":720},"timestamp":36977.333,"wallTime":1784630697403,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@678","time":36977.421,"message":"waiting for locator('input[name=\"passengers.4.name\"]') to be visible"} +{"type":"log","callId":"call@678","time":36978.34,"message":" locator resolved to visible "} +{"type":"after","callId":"call@678","endTime":36978.355,"result":{},"afterSnapshot":"after@call@678"} +{"type":"frame-snapshot","snapshot":{"callId":"call@678","snapshotName":"after@call@678","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,17]],"viewport":{"width":1280,"height":720},"timestamp":36978.886,"wallTime":1784630697405,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@680","startTime":36979.416,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.4.name\"]","strict":true,"value":"Child 3","timeout":15000},"stepId":"pw:api@94","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@680"} +{"type":"frame-snapshot","snapshot":{"callId":"call@680","snapshotName":"before@call@680","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[8,17]],"viewport":{"width":1280,"height":720},"timestamp":36980.034,"wallTime":1784630697406,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@680","time":36980.153,"message":"waiting for locator('input[name=\"passengers.4.name\"]')"} +{"type":"log","callId":"call@680","time":36980.912,"message":" locator resolved to "} +{"type":"log","callId":"call@680","time":36981.27,"message":" fill(\"Child 3\")"} +{"type":"log","callId":"call@680","time":36981.272,"message":"attempting fill action"} +{"type":"input","callId":"call@680","inputSnapshot":"input@call@680"} +{"type":"frame-snapshot","snapshot":{"callId":"call@680","snapshotName":"input@call@680","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"636","lang":"en","dir":"ltr","class":"light","style":""},[[150,27]],["BODY",{"class":"font-sans antialiased"},[[151,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[161,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[151,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[150,29]],["FORM",{"class":"space-y-6"},[[112,7]],[[71,7]],[[40,7]],[[9,7]],["DIV",{"class":"card"},[[150,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[150,171]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.4.name"}]],[[150,191]],[[150,201]],[[150,205]],[[150,207]]]]],[[150,217]]]]]]]]]],[[161,296]],[[160,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36981.924,"wallTime":1784630697408,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@680","time":36981.99,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@680","endTime":36984.901,"afterSnapshot":"after@call@680"} +{"type":"frame-snapshot","snapshot":{"callId":"call@680","snapshotName":"after@call@680","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"969","lang":"en","dir":"ltr","class":"light","style":""},[[151,27]],["BODY",{"class":"font-sans antialiased"},[[152,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[162,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[152,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[151,29]],["FORM",{"class":"space-y-6"},[[113,7]],[[72,7]],[[41,7]],[[10,7]],["DIV",{"class":"card"},[[151,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[151,171]],["INPUT",{"__playwright_value_":"Child 3","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.4.name"}]],[[151,191]],[[151,201]],[[151,205]],[[151,207]]]]],[[151,217]]]]]]]]]],[[162,296]],[[161,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36986.281,"wallTime":1784630697412,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@682","startTime":36986.999,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.4.gender\"]","strict":true,"options":[{"valueOrLabel":"Female"}],"timeout":15000},"stepId":"pw:api@95","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@682"} +{"type":"frame-snapshot","snapshot":{"callId":"call@682","snapshotName":"before@call@682","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"969","lang":"en","dir":"ltr","class":"light","style":""},[[152,27]],["BODY",{"class":"font-sans antialiased"},[[153,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[163,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[153,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[152,29]],["FORM",{"class":"space-y-6"},[[114,7]],[[73,7]],[[42,7]],[[11,7]],["DIV",{"class":"card"},[[152,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[152,171]],["INPUT",{"__playwright_value_":"Child 3","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.4.name"}]],[[152,191]],[[152,201]],[[152,205]],[[152,207]]]]],[[152,217]]]]]]]]]],[[163,296]],[[162,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36987.713,"wallTime":1784630697414,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@682","time":36987.913,"message":"waiting for locator('select[name=\"passengers.4.gender\"]')"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697415.jpeg","width":1280,"height":720,"timestamp":36988.476,"frameSwapWallTime":1784630697413.162} +{"type":"log","callId":"call@682","time":36988.789,"message":" locator resolved to "} +{"type":"log","callId":"call@682","time":36989.116,"message":"attempting select option action"} +{"type":"input","callId":"call@682","inputSnapshot":"input@call@682"} +{"type":"frame-snapshot","snapshot":{"callId":"call@682","snapshotName":"input@call@682","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"969","lang":"en","dir":"ltr","class":"light","style":""},[[153,27]],["BODY",{"class":"font-sans antialiased"},[[154,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[164,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[154,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[153,29]],["FORM",{"class":"space-y-6"},[[115,7]],[[74,7]],[[43,7]],[[12,7]],["DIV",{"class":"card"},[[153,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[153,191]],["DIV",{},[[153,193]],["SELECT",{"__playwright_target__":"","name":"passengers.4.gender","class":"input-field "},[[153,195]],[[153,197]],[[153,199]]]],[[153,205]],[[153,207]]]]],[[153,217]]]]]]]]]],[[164,296]],[[163,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36989.741,"wallTime":1784630697416,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@682","time":36989.809,"message":" waiting for element to be visible and enabled"} +{"type":"log","callId":"call@682","time":36991.909,"message":" selected specified option(s)"} +{"type":"after","callId":"call@682","endTime":36991.984,"result":{"values":["Female"]},"afterSnapshot":"after@call@682"} +{"type":"frame-snapshot","snapshot":{"callId":"call@682","snapshotName":"after@call@682","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"969","lang":"en","dir":"ltr","class":"light","style":""},[[154,27]],["BODY",{"class":"font-sans antialiased"},[[155,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[165,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[155,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[154,29]],["FORM",{"class":"space-y-6"},[[116,7]],[[75,7]],[[44,7]],[[13,7]],["DIV",{"class":"card"},[[154,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[154,191]],["DIV",{},[[154,193]],["SELECT",{"__playwright_target__":"","name":"passengers.4.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[154,194]]],[[154,197]],["OPTION",{"__playwright_selected_":"true","value":"Female"},[[154,198]]]]],[[154,205]],[[154,207]]]]],[[154,217]]]]]]]]]],[[165,296]],[[164,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36993.39,"wallTime":1784630697419,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@684","startTime":36994.479,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 5\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@96","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@684"} +{"type":"frame-snapshot","snapshot":{"callId":"call@684","snapshotName":"before@call@684","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"969","lang":"en","dir":"ltr","class":"light","style":""},[[155,27]],["BODY",{"class":"font-sans antialiased"},[[156,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[166,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[156,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[155,29]],["FORM",{"class":"space-y-6"},[[117,7]],[[76,7]],[[45,7]],[[14,7]],["DIV",{"class":"card"},[[155,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[155,191]],["DIV",{},[[155,193]],["SELECT",{"name":"passengers.4.gender","class":"input-field "},[[1,0]],[[155,197]],[[1,1]]]],[[155,205]],[[155,207]]]]],[[155,217]]]]]]]]]],[[166,296]],[[165,11]]]],"viewport":{"width":1280,"height":720},"timestamp":36995.15,"wallTime":1784630697421,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@684","time":36995.306,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 5\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"log","callId":"call@684","time":36996.631,"message":" locator resolved to "} +{"type":"log","callId":"call@684","time":36996.944,"message":"attempting click action"} +{"type":"log","callId":"call@684","time":36996.956,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697424.jpeg","width":1280,"height":720,"timestamp":36997.365,"frameSwapWallTime":1784630697422.028} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697432.jpeg","width":1280,"height":720,"timestamp":37005.386,"frameSwapWallTime":1784630697429.941} +{"type":"log","callId":"call@684","time":37008.335,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@684","time":37008.341,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@684","time":37008.866,"message":" done scrolling"} +{"type":"input","callId":"call@684","point":{"x":1007.5,"y":696},"inputSnapshot":"input@call@684"} +{"type":"frame-snapshot","snapshot":{"callId":"call@684","snapshotName":"input@call@684","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[156,27]],["BODY",{"class":"font-sans antialiased"},[[157,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[167,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[157,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[156,29]],["FORM",{"class":"space-y-6"},[[118,7]],[[77,7]],[[46,7]],[[15,7]],["DIV",{"class":"card"},[[156,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],["DIV",{},[[156,175]],["DIV",{},["BUTTON",{"__playwright_target__":"","type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[156,177]],[[156,188]]]]],[[1,1]],[[156,205]],[[156,207]]]]],[[156,217]]]]]]]]]],[[167,296]],[[166,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37010.156,"wallTime":1784630697436,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@684","time":37010.806,"message":" performing click action"} +{"type":"log","callId":"call@684","time":37014.812,"message":" click action done"} +{"type":"log","callId":"call@684","time":37014.814,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@684","time":37015.089,"message":" navigations have finished"} +{"type":"after","callId":"call@684","endTime":37015.14,"afterSnapshot":"after@call@684"} +{"type":"frame-snapshot","snapshot":{"callId":"call@684","snapshotName":"after@call@684","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[157,27]],["BODY",{"class":"font-sans antialiased"},[[158,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[168,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[158,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[157,29]],["FORM",{"class":"space-y-6"},[[119,7]],[[78,7]],[[47,7]],[[16,7]],["DIV",{"class":"card"},[[157,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],["DIV",{},[[157,175]],["DIV",{},[[1,0]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2026"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2025"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2024"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2023"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2022"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2021"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2026"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[2,1]],[[157,205]],[[157,207]]]]],[[157,217]]]]]]]]]],[[168,296]],[[167,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37016.53,"wallTime":1784630697442,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@686","startTime":37017.534,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@97","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@686"} +{"type":"frame-snapshot","snapshot":{"callId":"call@686","snapshotName":"before@call@686","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[158,27]],["BODY",{"class":"font-sans antialiased"},[[159,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[169,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[159,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[158,29]],["FORM",{"class":"space-y-6"},[[120,7]],[[79,7]],[[48,7]],[[17,7]],["DIV",{"class":"card"},[[158,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],["DIV",{},[[158,175]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[158,177]],[[158,188]]],[[1,0]],[[1,143]],[[1,145]]]],[[3,1]],[[158,205]],[[158,207]]]]],[[158,217]]]]]]]]]],[[169,296]],[[168,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37018.45,"wallTime":1784630697444,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@686","time":37018.625,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@686","time":37020.664,"message":" locator resolved to "} +{"type":"log","callId":"call@686","time":37021.049,"message":"attempting click action"} +{"type":"log","callId":"call@686","time":37021.066,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697448.jpeg","width":1280,"height":720,"timestamp":37022.189,"frameSwapWallTime":1784630697446.852} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697458.jpeg","width":1280,"height":720,"timestamp":37031.64,"frameSwapWallTime":1784630697456.303} +{"type":"log","callId":"call@686","time":37033.49,"message":" element is not stable"} +{"type":"log","callId":"call@686","time":37033.5,"message":"retrying click action"} +{"type":"log","callId":"call@686","time":37033.52,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697466.jpeg","width":1280,"height":720,"timestamp":37040.039,"frameSwapWallTime":1784630697464.761} +{"type":"log","callId":"call@686","time":37050.056,"message":" element is not stable"} +{"type":"log","callId":"call@686","time":37050.069,"message":"retrying click action"} +{"type":"log","callId":"call@686","time":37050.07,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697484.jpeg","width":1280,"height":720,"timestamp":37057.416,"frameSwapWallTime":1784630697482.1428} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697492.jpeg","width":1280,"height":720,"timestamp":37065.812,"frameSwapWallTime":1784630697490.646} +{"type":"log","callId":"call@686","time":37072.148,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697501.jpeg","width":1280,"height":720,"timestamp":37074.726,"frameSwapWallTime":1784630697499.522} +{"type":"log","callId":"call@686","time":37083.223,"message":" element is not stable"} +{"type":"log","callId":"call@686","time":37083.234,"message":"retrying click action"} +{"type":"log","callId":"call@686","time":37083.235,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697518.jpeg","width":1280,"height":720,"timestamp":37092.199,"frameSwapWallTime":1784630697516.9512} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697527.jpeg","width":1280,"height":720,"timestamp":37100.986,"frameSwapWallTime":1784630697525.78} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697535.jpeg","width":1280,"height":720,"timestamp":37109.139,"frameSwapWallTime":1784630697533.8499} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697544.jpeg","width":1280,"height":720,"timestamp":37117.702,"frameSwapWallTime":1784630697542.5168} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697561.jpeg","width":1280,"height":720,"timestamp":37134.393,"frameSwapWallTime":1784630697559.177} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697569.jpeg","width":1280,"height":720,"timestamp":37143.27,"frameSwapWallTime":1784630697568.126} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697578.jpeg","width":1280,"height":720,"timestamp":37151.617,"frameSwapWallTime":1784630697576.425} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697586.jpeg","width":1280,"height":720,"timestamp":37159.822,"frameSwapWallTime":1784630697584.6702} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697602.jpeg","width":1280,"height":720,"timestamp":37176.011,"frameSwapWallTime":1784630697600.8552} +{"type":"log","callId":"call@686","time":37183.798,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697611.jpeg","width":1280,"height":720,"timestamp":37184.726,"frameSwapWallTime":1784630697609.637} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697619.jpeg","width":1280,"height":720,"timestamp":37193.105,"frameSwapWallTime":1784630697617.978} +{"type":"log","callId":"call@686","time":37200.116,"message":" element is not stable"} +{"type":"log","callId":"call@686","time":37200.127,"message":"retrying click action"} +{"type":"log","callId":"call@686","time":37200.128,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697628.jpeg","width":1280,"height":720,"timestamp":37201.321,"frameSwapWallTime":1784630697626.291} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697644.jpeg","width":1280,"height":720,"timestamp":37218.18,"frameSwapWallTime":1784630697643.0571} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697653.jpeg","width":1280,"height":720,"timestamp":37226.645,"frameSwapWallTime":1784630697651.468} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697661.jpeg","width":1280,"height":720,"timestamp":37234.985,"frameSwapWallTime":1784630697659.874} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697669.jpeg","width":1280,"height":720,"timestamp":37243.286,"frameSwapWallTime":1784630697668.207} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697686.jpeg","width":1280,"height":720,"timestamp":37259.828,"frameSwapWallTime":1784630697684.711} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697694.jpeg","width":1280,"height":720,"timestamp":37268.221,"frameSwapWallTime":1784630697693.075} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697703.jpeg","width":1280,"height":720,"timestamp":37276.33,"frameSwapWallTime":1784630697701.291} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697716.jpeg","width":1280,"height":720,"timestamp":37289.541,"frameSwapWallTime":1784630697714.49} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697723.jpeg","width":1280,"height":720,"timestamp":37297.103,"frameSwapWallTime":1784630697722.168} +{"type":"log","callId":"call@686","time":37300.958,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697732.jpeg","width":1280,"height":720,"timestamp":37305.553,"frameSwapWallTime":1784630697730.6409} +{"type":"log","callId":"call@686","time":37316.689,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@686","time":37316.7,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@686","time":37316.783,"message":" done scrolling"} +{"type":"input","callId":"call@686","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@686"} +{"type":"frame-snapshot","snapshot":{"callId":"call@686","snapshotName":"input@call@686","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[159,27]],["BODY",{"class":"font-sans antialiased"},[[160,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[170,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[160,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[159,29]],["FORM",{"class":"space-y-6"},[[121,7]],[[80,7]],[[49,7]],[[18,7]],["DIV",{"class":"card"},[[159,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[7,1]],["DIV",{},[[159,175]],["DIV",{},[[1,0]],[[2,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[2,2]],[[2,8]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[2,9]]]],[[2,15]]],[[2,19]],[[2,26]],[[2,139]],[[2,142]]],[[2,145]]]],[[4,1]],[[159,205]],[[159,207]]]]],[[159,217]]]]]]]]]],[[170,296]],[[169,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37318.011,"wallTime":1784630697744,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@686","time":37318.578,"message":" performing click action"} +{"type":"log","callId":"call@686","time":37321.459,"message":" click action done"} +{"type":"log","callId":"call@686","time":37321.464,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@686","time":37321.613,"message":" navigations have finished"} +{"type":"after","callId":"call@686","endTime":37321.654,"afterSnapshot":"after@call@686"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697749.jpeg","width":1280,"height":720,"timestamp":37322.58,"frameSwapWallTime":1784630697747.609} +{"type":"frame-snapshot","snapshot":{"callId":"call@686","snapshotName":"after@call@686","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[160,27]],["BODY",{"class":"font-sans antialiased"},[[161,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[171,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[161,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[160,29]],["FORM",{"class":"space-y-6"},[[122,7]],[[81,7]],[[50,7]],[[19,7]],["DIV",{"class":"card"},[[160,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],["DIV",{},[[160,175]],["DIV",{},[[2,0]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[3,2]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[3,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","2021"," – ","2026"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[3,145]]]],[[5,1]],[[160,205]],[[160,207]]]]],[[160,217]]]]]]]]]],[[171,296]],[[170,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37322.679,"wallTime":1784630697748,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@688","startTime":37323.313,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"10","timeout":15000},"stepId":"pw:api@98","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@688"} +{"type":"frame-snapshot","snapshot":{"callId":"call@688","snapshotName":"before@call@688","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[161,27]],["BODY",{"class":"font-sans antialiased"},[[162,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[172,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[162,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[161,29]],["FORM",{"class":"space-y-6"},[[123,7]],[[82,7]],[[51,7]],[[20,7]],["DIV",{"class":"card"},[[161,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[9,1]],["DIV",{},[[161,175]],["DIV",{},[[3,0]],[[4,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[4,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[1,0]]]],[[4,15]]],[[1,22]],[[1,25]]],[[4,145]]]],[[6,1]],[[161,205]],[[161,207]]]]],[[161,217]]]]]]]]]],[[172,296]],[[171,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37323.978,"wallTime":1784630697750,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@688","time":37324.06,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@688","time":37325.708,"message":" locator resolved to "} +{"type":"log","callId":"call@688","time":37326.065,"message":" fill(\"10\")"} +{"type":"log","callId":"call@688","time":37326.069,"message":"attempting fill action"} +{"type":"input","callId":"call@688","inputSnapshot":"input@call@688"} +{"type":"frame-snapshot","snapshot":{"callId":"call@688","snapshotName":"input@call@688","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[162,27]],["BODY",{"class":"font-sans antialiased"},[[163,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[173,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[163,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[162,29]],["FORM",{"class":"space-y-6"},[[124,7]],[[83,7]],[[52,7]],[[21,7]],["DIV",{"class":"card"},[[162,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[10,1]],["DIV",{},[[162,175]],["DIV",{},[[4,0]],[[5,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[1,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[5,145]]]],[[7,1]],[[162,205]],[[162,207]]]]],[[162,217]]]]]]]]]],[[173,296]],[[172,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37326.793,"wallTime":1784630697753,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@688","time":37326.848,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@688","endTime":37328.317,"afterSnapshot":"after@call@688"} +{"type":"frame-snapshot","snapshot":{"callId":"call@688","snapshotName":"after@call@688","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[163,27]],["BODY",{"class":"font-sans antialiased"},[[164,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[174,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[164,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[163,29]],["FORM",{"class":"space-y-6"},[[125,7]],[[84,7]],[[53,7]],[[22,7]],["DIV",{"class":"card"},[[163,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[11,1]],["DIV",{},[[163,175]],["DIV",{},[[5,0]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"10","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[6,145]]]],[[8,1]],[[163,205]],[[163,207]]]]],[[163,217]]]]]]]]]],[[174,296]],[[173,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37328.986,"wallTime":1784630697755,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@690","startTime":37329.523,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"3","timeout":15000},"stepId":"pw:api@99","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@690"} +{"type":"frame-snapshot","snapshot":{"callId":"call@690","snapshotName":"before@call@690","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[164,27]],["BODY",{"class":"font-sans antialiased"},[[165,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[175,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[165,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[164,29]],["FORM",{"class":"space-y-6"},[[126,7]],[[85,7]],[[54,7]],[[23,7]],["DIV",{"class":"card"},[[164,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[12,1]],["DIV",{},[[164,175]],["DIV",{},[[6,0]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"10","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[7,145]]]],[[9,1]],[[164,205]],[[164,207]]]]],[[164,217]]]]]]]]]],[[175,296]],[[174,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37330.194,"wallTime":1784630697756,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@690","time":37330.288,"message":"waiting for getByPlaceholder('MM')"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697757.jpeg","width":1280,"height":720,"timestamp":37330.727,"frameSwapWallTime":1784630697755.7212} +{"type":"log","callId":"call@690","time":37330.982,"message":" locator resolved to "} +{"type":"log","callId":"call@690","time":37331.201,"message":" fill(\"3\")"} +{"type":"log","callId":"call@690","time":37331.204,"message":"attempting fill action"} +{"type":"input","callId":"call@690","inputSnapshot":"input@call@690"} +{"type":"frame-snapshot","snapshot":{"callId":"call@690","snapshotName":"input@call@690","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[165,27]],["BODY",{"class":"font-sans antialiased"},[[166,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[176,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[166,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[165,29]],["FORM",{"class":"space-y-6"},[[127,7]],[[86,7]],[[55,7]],[[24,7]],["DIV",{"class":"card"},[[165,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[13,1]],["DIV",{},[[165,175]],["DIV",{},[[7,0]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[8,145]]]],[[10,1]],[[165,205]],[[165,207]]]]],[[165,217]]]]]]]]]],[[176,296]],[[175,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37331.813,"wallTime":1784630697758,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@690","time":37332.005,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@690","endTime":37334.422,"afterSnapshot":"after@call@690"} +{"type":"frame-snapshot","snapshot":{"callId":"call@690","snapshotName":"after@call@690","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[166,27]],["BODY",{"class":"font-sans antialiased"},[[167,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[177,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[167,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[166,29]],["FORM",{"class":"space-y-6"},[[128,7]],[[87,7]],[[56,7]],[[25,7]],["DIV",{"class":"card"},[[166,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[14,1]],["DIV",{},[[166,175]],["DIV",{},[[8,0]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"10","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"10"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"3","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[9,145]]]],[[11,1]],[[166,205]],[[166,207]]]]],[[166,217]]]]]]]]]],[[177,296]],[[176,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37335.222,"wallTime":1784630697761,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@692","startTime":37335.822,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"2023","timeout":15000},"stepId":"pw:api@100","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@692"} +{"type":"frame-snapshot","snapshot":{"callId":"call@692","snapshotName":"before@call@692","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[167,27]],["BODY",{"class":"font-sans antialiased"},[[168,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[178,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[168,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[167,29]],["FORM",{"class":"space-y-6"},[[129,7]],[[88,7]],[[57,7]],[[26,7]],["DIV",{"class":"card"},[[167,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[15,1]],["DIV",{},[[167,175]],["DIV",{},[[9,0]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"3","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[10,145]]]],[[12,1]],[[167,205]],[[167,207]]]]],[[167,217]]]]]]]]]],[[178,296]],[[177,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37336.576,"wallTime":1784630697763,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@692","time":37336.683,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"log","callId":"call@692","time":37337.752,"message":" locator resolved to "} +{"type":"log","callId":"call@692","time":37338.029,"message":" fill(\"2023\")"} +{"type":"log","callId":"call@692","time":37338.034,"message":"attempting fill action"} +{"type":"input","callId":"call@692","inputSnapshot":"input@call@692"} +{"type":"frame-snapshot","snapshot":{"callId":"call@692","snapshotName":"input@call@692","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[168,27]],["BODY",{"class":"font-sans antialiased"},[[169,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[179,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[169,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[168,29]],["FORM",{"class":"space-y-6"},[[130,7]],[[89,7]],[[58,7]],[[27,7]],["DIV",{"class":"card"},[[168,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[16,1]],["DIV",{},[[168,175]],["DIV",{},[[10,0]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[11,145]]]],[[13,1]],[[168,205]],[[168,207]]]]],[[168,217]]]]]]]]]],[[179,296]],[[178,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37338.721,"wallTime":1784630697765,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@692","time":37338.814,"message":" waiting for element to be visible, enabled and editable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697765.jpeg","width":1280,"height":720,"timestamp":37339.091,"frameSwapWallTime":1784630697764.03} +{"type":"after","callId":"call@692","endTime":37340.663,"afterSnapshot":"after@call@692"} +{"type":"frame-snapshot","snapshot":{"callId":"call@692","snapshotName":"after@call@692","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[169,27]],["BODY",{"class":"font-sans antialiased"},[[170,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[180,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[170,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[169,29]],["FORM",{"class":"space-y-6"},[[131,7]],[[90,7]],[[59,7]],[[28,7]],["DIV",{"class":"card"},[[169,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[17,1]],["DIV",{},[[169,175]],["DIV",{},[[11,0]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"3","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"3"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"2023","__playwright_target__":"","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 10/3/2023"]]],[[12,145]]]],[[14,1]],[[169,205]],[[169,207]]]]],[[169,217]]]]]]]]]],[[180,296]],[[179,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37341.45,"wallTime":1784630697767,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@694","startTime":37342.157,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@101","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@694"} +{"type":"frame-snapshot","snapshot":{"callId":"call@694","snapshotName":"before@call@694","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[170,27]],["BODY",{"class":"font-sans antialiased"},[[171,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[181,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[171,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[170,29]],["FORM",{"class":"space-y-6"},[[132,7]],[[91,7]],[[60,7]],[[29,7]],["DIV",{"class":"card"},[[170,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[18,1]],["DIV",{},[[170,175]],["DIV",{},[[12,0]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"2023","min":"2021","max":"2026","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[13,145]]]],[[15,1]],[[170,205]],[[170,207]]]]],[[170,217]]]]]]]]]],[[181,296]],[[180,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37343.009,"wallTime":1784630697769,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@694","time":37343.125,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"log","callId":"call@694","time":37344.362,"message":" locator resolved to "} +{"type":"log","callId":"call@694","time":37344.602,"message":"attempting click action"} +{"type":"log","callId":"call@694","time":37344.622,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697782.jpeg","width":1280,"height":720,"timestamp":37355.595,"frameSwapWallTime":1784630697780.575} +{"type":"log","callId":"call@694","time":37358.31,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@694","time":37358.315,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@694","time":37358.917,"message":" done scrolling"} +{"type":"input","callId":"call@694","point":{"x":1162.85,"y":668},"inputSnapshot":"input@call@694"} +{"type":"frame-snapshot","snapshot":{"callId":"call@694","snapshotName":"input@call@694","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,19]],"viewport":{"width":1280,"height":720},"timestamp":37360.146,"wallTime":1784630697786,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@694","time":37360.652,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697791.jpeg","width":1280,"height":720,"timestamp":37364.349,"frameSwapWallTime":1784630697789.285} +{"type":"log","callId":"call@694","time":37367.415,"message":" click action done"} +{"type":"log","callId":"call@694","time":37367.419,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@694","time":37367.726,"message":" navigations have finished"} +{"type":"after","callId":"call@694","endTime":37367.779,"afterSnapshot":"after@call@694"} +{"type":"frame-snapshot","snapshot":{"callId":"call@694","snapshotName":"after@call@694","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"982","lang":"en","dir":"ltr","class":"light","style":""},[[172,27]],["BODY",{"class":"font-sans antialiased"},[[173,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[183,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[173,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[172,29]],["FORM",{"class":"space-y-6"},[[134,7]],[[93,7]],[[62,7]],[[31,7]],["DIV",{"class":"card"},[[172,169]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[172,175]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"March 10, 2023"],[[172,188]]]]],[[17,1]],[[172,205]],[[172,207]]]]],[[172,217]]]]]]]]]],[[183,296]],[[182,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37368.666,"wallTime":1784630697795,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@696","startTime":37369.354,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue to seat selection/i]","strict":true,"timeout":15000},"stepId":"pw:api@102","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@696"} +{"type":"frame-snapshot","snapshot":{"callId":"call@696","snapshotName":"before@call@696","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":37369.951,"wallTime":1784630697796,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@696","time":37370.03,"message":"waiting for getByRole('button', { name: /continue to seat selection/i })"} +{"type":"log","callId":"call@696","time":37371.634,"message":" locator resolved to "} +{"type":"log","callId":"call@696","time":37371.875,"message":"attempting click action"} +{"type":"log","callId":"call@696","time":37371.886,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697799.jpeg","width":1280,"height":720,"timestamp":37372.693,"frameSwapWallTime":1784630697797.641} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697807.jpeg","width":1280,"height":720,"timestamp":37380.324,"frameSwapWallTime":1784630697804.972} +{"type":"log","callId":"call@696","time":37383.252,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@696","time":37383.259,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@696","time":37383.66,"message":" done scrolling"} +{"type":"input","callId":"call@696","point":{"x":1021,"y":646},"inputSnapshot":"input@call@696"} +{"type":"frame-snapshot","snapshot":{"callId":"call@696","snapshotName":"input@call@696","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"1287","lang":"en","dir":"ltr","class":"light","style":""},[[174,27]],["BODY",{"class":"font-sans antialiased"},[[175,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[185,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[175,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[174,29]],["FORM",{"class":"space-y-6"},[[136,7]],[[95,7]],[[64,7]],[[33,7]],[[2,7]],["DIV",{"class":"flex gap-4"},[[174,214]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},[[174,215]]]]]]]]]]]],[[185,296]],[[184,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37384.732,"wallTime":1784630697811,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@696","time":37385.246,"message":" performing click action"} +{"type":"log","callId":"call@696","time":37389.488,"message":" click action done"} +{"type":"log","callId":"call@696","time":37389.491,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@696","time":37389.713,"message":" navigations have finished"} +{"type":"after","callId":"call@696","endTime":37389.764,"afterSnapshot":"after@call@696"} +{"type":"frame-snapshot","snapshot":{"callId":"call@696","snapshotName":"after@call@696","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"1287","lang":"en","dir":"ltr","class":"light","style":""},[[175,27]],["BODY",{"class":"font-sans antialiased"},[[176,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[186,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[176,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[175,29]],["FORM",{"class":"space-y-6"},[[137,7]],[[96,7]],[[65,7]],[[34,7]],[[3,7]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2","disabled":""},[[175,212]],[[175,213]]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2","disabled":""},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]]]]]]]]],[[186,296]],[[185,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37390.5,"wallTime":1784630697817,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@698","startTime":37391.267,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"a76a697f83558ac69aa861806cd0eac5","phase":"before","event":""},"stepId":"pw:api@103","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"log","callId":"call@698","time":37391.288,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697823.jpeg","width":1280,"height":720,"timestamp":37396.745,"frameSwapWallTime":1784630697821.381} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697831.jpeg","width":1280,"height":720,"timestamp":37405.141,"frameSwapWallTime":1784630697829.601} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697840.jpeg","width":1280,"height":720,"timestamp":37413.877,"frameSwapWallTime":1784630697838.397} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697856.jpeg","width":1280,"height":720,"timestamp":37429.421,"frameSwapWallTime":1784630697854.045} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697865.jpeg","width":1280,"height":720,"timestamp":37438.325,"frameSwapWallTime":1784630697863.039} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697873.jpeg","width":1280,"height":720,"timestamp":37446.746,"frameSwapWallTime":1784630697871.395} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697881.jpeg","width":1280,"height":720,"timestamp":37455.152,"frameSwapWallTime":1784630697879.7551} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697898.jpeg","width":1280,"height":720,"timestamp":37471.457,"frameSwapWallTime":1784630697896.1238} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697906.jpeg","width":1280,"height":720,"timestamp":37479.836,"frameSwapWallTime":1784630697904.471} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697914.jpeg","width":1280,"height":720,"timestamp":37488.06,"frameSwapWallTime":1784630697912.817} +{"type":"console","messageType":"warning","text":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element: JSHandle@node","args":[{"preview":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:","value":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:"},{"preview":"JSHandle@node"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js","lineNumber":109,"columnNumber":20},"time":37530.624,"pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697959.jpeg","width":1280,"height":720,"timestamp":37532.529,"frameSwapWallTime":1784630697948.973} +{"type":"log","callId":"call@698","time":37532.646,"message":" navigated to \"http://localhost:5174/booking/seats\""} +{"type":"after","callId":"call@698","endTime":37532.655} +{"type":"before","callId":"call@703","startTime":37532.71,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"b156c665511819f5565d51590e749b41","phase":"before","event":"response"},"stepId":"pw:api@104","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"before","callId":"call@706","startTime":37532.765,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/auto assign seats/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@105","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@706"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697959.jpeg","width":1280,"height":720,"timestamp":37533.027,"frameSwapWallTime":1784630697950.206} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697959.jpeg","width":1280,"height":720,"timestamp":37533.064,"frameSwapWallTime":1784630697950.554} +{"type":"frame-snapshot","snapshot":{"callId":"call@706","snapshotName":"before@call@706","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[187,0]],[[187,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[187,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[187,36]],[[187,43]],[[187,47]],[[187,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[187,55]],["OL",{"class":"space-y-1"},[[187,61]],[[177,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[187,69]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[187,72]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[187,74]]]],[[187,81]],[[187,86]],[[187,91]]]]],[[187,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[187,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[187,132]],[[177,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[187,148]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[187,151]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[187,152]]]],[[187,155]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[187,157]]]],[[187,168]],[[187,177]],[[187,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"0","/","3"," seats selected"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-400 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"]]],["STYLE",{},"@keyframes seats-slide-up{from{transform:translateY(100%)}to{transform:translateY(0)}}"],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},["BUTTON",{"class":"flex items-center gap-1.5 text-sm text-gray-600 dark:text-gray-400 hover:text-primary transition-colors font-medium"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["DIV",{"class":"text-center"},["H1",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Select Seats"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Now selecting: ","Adult 1"]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"0","/","5"]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"flex justify-end"},["BUTTON",{"type":"button","class":"flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 text-sm font-semibold text-gray-700 dark:text-gray-300 hover:border-primary hover:text-primary transition-colors shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-4 h-4"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],"Preview Train Coach"]],["DIV",{"class":"flex flex-col items-stretch"},["DIV",{"class":"px-4"},["DIV",{"class":"relative bg-[rgb(20,113,76)] rounded-t-2xl px-5 pt-4 pb-3 text-white overflow-hidden"},["DIV",{"class":"absolute top-0 left-0 right-0 h-1 bg-white/20"}],["DIV",{"class":"flex items-center justify-between"},["DIV",{},["P",{"class":"text-[10px] font-bold uppercase tracking-widest text-white/60"},"EDR Express"],["P",{"class":"text-sm font-bold mt-0.5"},"1"," Coach"]],["DIV",{"class":"flex gap-2"},["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}]]],["DIV",{"class":"mt-3 flex items-center gap-2"},["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}],["DIV",{"class":"flex-1 h-1 bg-white/20 rounded-full"}],["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}]]],["DIV",{"class":"h-3 bg-[rgb(15,85,57)] mx-3 rounded-b-lg"}]],["DIV",{},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}],["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}]]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-900/30"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-gray-100 dark:bg-gray-700 text-gray-600 dark:text-gray-300"},"1"],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-gray-900 dark:text-white"},"UI-C1"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"44"," of ","48"," seats available"]]],["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"hidden sm:flex items-end gap-0.5 h-5"},["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-3 bg-gray-200 dark:bg-gray-600"}]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 text-gray-400"},["path",{"d":"m6 9 6 6 6-6"}]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}]]],["DIV",{"class":"px-4"},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}]]],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded-b-2xl"}]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-amber-100 text-amber-700 dark:bg-amber-900/30 dark:text-amber-400"},"0","/","3"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"Selecting seat for Adult 1 (1 of 3)"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 0%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)]/20 text-[rgb(20,113,76)] ring-2 ring-[rgb(20,113,76)]"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"],["SPAN",{"class":"text-[10px] font-semibold text-[rgb(20,113,76)] uppercase tracking-wide"},"Now selecting"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-gray-400"},"Not Assigned"]]],["BUTTON",{"type":"button","disabled":"","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-transparent cursor-not-allowed opacity-50"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-gray-200 dark:bg-gray-700 text-gray-500"},"2"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 2"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-gray-400"},"Not Assigned"]]],["DIV",{"class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border border-transparent opacity-70"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-gray-200 dark:bg-gray-700 text-gray-500"},"3"],["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Child 1"]],["SPAN",{"class":"text-xs font-medium text-gray-400 flex-shrink-0 text-right"},"Shares seat with ","Adult 1"]],["DIV",{"class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border border-transparent opacity-70"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-gray-200 dark:bg-gray-700 text-gray-500"},"4"],["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Child 2"]],["SPAN",{"class":"text-xs font-medium text-gray-400 flex-shrink-0 text-right"},"Shares seat with ","Adult 2"]],["BUTTON",{"type":"button","disabled":"","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-transparent cursor-not-allowed opacity-50"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-gray-200 dark:bg-gray-700 text-gray-500"},"5"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Child 3"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-gray-400"},"Not Assigned"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"],["BUTTON",{"class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],["DIV",{"class":"lg:hidden h-24"}]]]]]]]],[[187,296]],[[186,11]]]],"viewport":{"width":1280,"height":720},"timestamp":37542.592,"wallTime":1784630697967,"collectionTime":0.8999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@706","time":37542.847,"message":"waiting for getByRole('button', { name: /auto assign seats/i }).first()"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697970.jpeg","width":1280,"height":720,"timestamp":37544.055,"frameSwapWallTime":1784630697968.7358} +{"type":"log","callId":"call@706","time":37544.986,"message":" locator resolved to "} +{"type":"log","callId":"call@706","time":37545.386,"message":"attempting click action"} +{"type":"log","callId":"call@706","time":37545.441,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697985.jpeg","width":1280,"height":720,"timestamp":37558.52,"frameSwapWallTime":1784630697983.2449} +{"type":"log","callId":"call@706","time":37558.634,"message":" element is not stable"} +{"type":"log","callId":"call@706","time":37558.637,"message":"retrying click action"} +{"type":"log","callId":"call@706","time":37558.652,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630697993.jpeg","width":1280,"height":720,"timestamp":37567.05,"frameSwapWallTime":1784630697991.909} +{"type":"log","callId":"call@706","time":37574.988,"message":" element is not stable"} +{"type":"log","callId":"call@706","time":37574.997,"message":"retrying click action"} +{"type":"log","callId":"call@706","time":37574.998,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698002.jpeg","width":1280,"height":720,"timestamp":37575.414,"frameSwapWallTime":1784630698000.259} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698010.jpeg","width":1280,"height":720,"timestamp":37583.73,"frameSwapWallTime":1784630698008.481} +{"type":"log","callId":"call@706","time":37596.371,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698026.jpeg","width":1280,"height":720,"timestamp":37600.286,"frameSwapWallTime":1784630698025.127} +{"type":"log","callId":"call@706","time":37608.002,"message":" element is not stable"} +{"type":"log","callId":"call@706","time":37608.013,"message":"retrying click action"} +{"type":"log","callId":"call@706","time":37608.015,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698035.jpeg","width":1280,"height":720,"timestamp":37608.621,"frameSwapWallTime":1784630698033.4402} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698043.jpeg","width":1280,"height":720,"timestamp":37616.958,"frameSwapWallTime":1784630698041.647} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698052.jpeg","width":1280,"height":720,"timestamp":37625.327,"frameSwapWallTime":1784630698050.125} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698068.jpeg","width":1280,"height":720,"timestamp":37642.155,"frameSwapWallTime":1784630698066.7979} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698077.jpeg","width":1280,"height":720,"timestamp":37650.687,"frameSwapWallTime":1784630698075.342} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698085.jpeg","width":1280,"height":720,"timestamp":37658.785,"frameSwapWallTime":1784630698083.523} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698093.jpeg","width":1280,"height":720,"timestamp":37667.02,"frameSwapWallTime":1784630698091.766} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698110.jpeg","width":1280,"height":720,"timestamp":37683.562,"frameSwapWallTime":1784630698108.279} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698118.jpeg","width":1280,"height":720,"timestamp":37691.699,"frameSwapWallTime":1784630698116.52} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698126.jpeg","width":1280,"height":720,"timestamp":37699.994,"frameSwapWallTime":1784630698124.805} +{"type":"log","callId":"call@706","time":37709.365,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698143.jpeg","width":1280,"height":720,"timestamp":37716.625,"frameSwapWallTime":1784630698141.4648} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698151.jpeg","width":1280,"height":720,"timestamp":37725.026,"frameSwapWallTime":1784630698149.773} +{"type":"log","callId":"call@706","time":37725.166,"message":" element is not stable"} +{"type":"log","callId":"call@706","time":37725.169,"message":"retrying click action"} +{"type":"log","callId":"call@706","time":37725.17,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698160.jpeg","width":1280,"height":720,"timestamp":37733.452,"frameSwapWallTime":1784630698158.232} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698177.jpeg","width":1280,"height":720,"timestamp":37750.32,"frameSwapWallTime":1784630698175.0432} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698185.jpeg","width":1280,"height":720,"timestamp":37758.66,"frameSwapWallTime":1784630698183.395} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698193.jpeg","width":1280,"height":720,"timestamp":37766.862,"frameSwapWallTime":1784630698191.607} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698201.jpeg","width":1280,"height":720,"timestamp":37775.173,"frameSwapWallTime":1784630698199.9421} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698218.jpeg","width":1280,"height":720,"timestamp":37791.777,"frameSwapWallTime":1784630698216.476} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698226.jpeg","width":1280,"height":720,"timestamp":37800.073,"frameSwapWallTime":1784630698224.7878} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698235.jpeg","width":1280,"height":720,"timestamp":37808.917,"frameSwapWallTime":1784630698233.649} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698243.jpeg","width":1280,"height":720,"timestamp":37816.982,"frameSwapWallTime":1784630698241.6821} +{"type":"log","callId":"call@706","time":37826.432,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698260.jpeg","width":1280,"height":720,"timestamp":37833.516,"frameSwapWallTime":1784630698258.242} +{"type":"log","callId":"call@706","time":37841.661,"message":" element is not stable"} +{"type":"log","callId":"call@706","time":37841.669,"message":"retrying click action"} +{"type":"log","callId":"call@706","time":37841.671,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698268.jpeg","width":1280,"height":720,"timestamp":37841.949,"frameSwapWallTime":1784630698266.639} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698277.jpeg","width":1280,"height":720,"timestamp":37850.436,"frameSwapWallTime":1784630698275.168} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698293.jpeg","width":1280,"height":720,"timestamp":37867.185,"frameSwapWallTime":1784630698291.7668} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698298.jpeg","width":1280,"height":720,"timestamp":37871.813,"frameSwapWallTime":1784630698296.5642} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698306.jpeg","width":1280,"height":720,"timestamp":37879.448,"frameSwapWallTime":1784630698304.2542} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698322.jpeg","width":1280,"height":720,"timestamp":37895.55,"frameSwapWallTime":1784630698320.3462} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698330.jpeg","width":1280,"height":720,"timestamp":37904.103,"frameSwapWallTime":1784630698328.791} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698339.jpeg","width":1280,"height":720,"timestamp":37912.913,"frameSwapWallTime":1784630698337.6492} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698347.jpeg","width":1280,"height":720,"timestamp":37921.003,"frameSwapWallTime":1784630698345.839} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698364.jpeg","width":1280,"height":720,"timestamp":37937.546,"frameSwapWallTime":1784630698362.216} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698372.jpeg","width":1280,"height":720,"timestamp":37945.724,"frameSwapWallTime":1784630698370.429} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698381.jpeg","width":1280,"height":720,"timestamp":37954.462,"frameSwapWallTime":1784630698379.148} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698398.jpeg","width":1280,"height":720,"timestamp":37971.494,"frameSwapWallTime":1784630698396.155} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698406.jpeg","width":1280,"height":720,"timestamp":37979.676,"frameSwapWallTime":1784630698404.356} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698416.jpeg","width":1280,"height":720,"timestamp":37990.001,"frameSwapWallTime":1784630698414.777} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698425.jpeg","width":1280,"height":720,"timestamp":37999.2,"frameSwapWallTime":1784630698424.003} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698434.jpeg","width":1280,"height":720,"timestamp":38007.952,"frameSwapWallTime":1784630698432.77} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698443.jpeg","width":1280,"height":720,"timestamp":38016.568,"frameSwapWallTime":1784630698441.3892} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698460.jpeg","width":1280,"height":720,"timestamp":38033.406,"frameSwapWallTime":1784630698458.167} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698668.jpeg","width":1280,"height":720,"timestamp":38241.915,"frameSwapWallTime":1784630698666.7148} +{"type":"log","callId":"call@706","time":38343.784,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@706","time":38353.286,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@706","time":38353.293,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@706","time":38353.732,"message":" done scrolling"} +{"type":"input","callId":"call@706","point":{"x":1105.32,"y":531},"inputSnapshot":"input@call@706"} +{"type":"frame-snapshot","snapshot":{"callId":"call@706","snapshotName":"input@call@706","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":[[1,242]],"viewport":{"width":1280,"height":720},"timestamp":38354.798,"wallTime":1784630698781,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@706","time":38355.356,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698784.jpeg","width":1280,"height":720,"timestamp":38358.054,"frameSwapWallTime":1784630698782.789} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698793.jpeg","width":1280,"height":720,"timestamp":38366.996,"frameSwapWallTime":1784630698791.734} +{"type":"log","callId":"call@706","time":38369.937,"message":" click action done"} +{"type":"log","callId":"call@706","time":38369.947,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@706","time":38371.467,"message":" navigations have finished"} +{"type":"after","callId":"call@706","endTime":38371.519,"afterSnapshot":"after@call@706"} +{"type":"frame-snapshot","snapshot":{"callId":"call@706","snapshotName":"after@call@706","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[189,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"3",[[2,58]],[[2,59]],[[2,60]]],[[2,63]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."]]],[[2,70]],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},[[2,74]],["DIV",{"class":"text-center"},[[2,76]]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"3",[[2,82]],[[2,83]]]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[2,98]],["DIV",{"class":"flex flex-col items-stretch"},[[2,117]],["DIV",{},[[2,122]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-[rgb(20,113,76)] shadow-lg shadow-[rgb(20,113,76)]/10"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-[rgb(20,113,76)] text-white"},[[2,124]]],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-[rgb(20,113,76)]"},[[2,126]]],[[2,132]]]],["DIV",{"class":"flex items-center gap-3"},[[2,147]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 rotate-180 text-[rgb(20,113,76)]"},[[2,148]]]]],["DIV",{"class":"border-t border-gray-100 dark:border-gray-800 bg-white dark:bg-gray-800 p-4"},["DIV",{"class":"flex flex-wrap gap-3 mb-4"},["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-green-50 border border-green-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Available"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-blue-50 border-2 border-blue-500 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Selected"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-red-50 border border-red-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Booked"]]],["DIV",{"class":"overflow-x-auto"},["DIV",{"class":"inline-block bg-gray-50 dark:bg-gray-700/30 rounded-xl p-4 border border-gray-200 dark:border-gray-700"},["DIV",{"class":"space-y-0"},["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 1A - BOOKED - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 1B - BOOKED - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-yellow-500 text-white cursor-not-allowed opacity-75","title":"Seat 1C - HELD - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-yellow-500 text-white cursor-not-allowed opacity-75","title":"Seat 1D - HELD - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-purple-400 text-white cursor-not-allowed opacity-75","title":"Seat 2A - already assigned to another passenger","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-purple-400 text-white cursor-not-allowed opacity-75","title":"Seat 2B - already assigned to another passenger","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-[rgb(20_113_76)] text-white shadow-md scale-105","title":"Seat 2C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]]]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}]]],[[2,160]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400"},"3","/","3"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"All seats selected — ready to continue"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 100%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-transparent cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)] text-white"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"Seat 2A"]]],["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-transparent cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)] text-white"},"2"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 2"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"Seat 2B"]]],["DIV",{"class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border border-transparent opacity-70"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-gray-200 dark:bg-gray-700 text-gray-500"},"3"],["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Child 1"]],["SPAN",{"class":"text-xs font-medium text-gray-400 flex-shrink-0 text-right"},"Shares seat with ","Adult 1"]],["DIV",{"class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border border-transparent opacity-70"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-gray-200 dark:bg-gray-700 text-gray-500"},"4"],["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Child 2"]],["SPAN",{"class":"text-xs font-medium text-gray-400 flex-shrink-0 text-right"},"Shares seat with ","Adult 2"]],["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)] text-white"},"5"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Child 3"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"Seat 2C"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."],["BUTTON",{"disabled":"","class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],[[2,233]]]]]]]]],[[189,296]],[[188,11]]]],"viewport":{"width":1280,"height":720},"timestamp":38375.072,"wallTime":1784630698800,"collectionTime":1.800000000745058,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698802.jpeg","width":1280,"height":720,"timestamp":38376.28,"frameSwapWallTime":1784630698800.252} +{"type":"before","callId":"call@708","startTime":38376.415,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"dbcb581f2d3d9921fd5141deb8293a1a","phase":"before","event":""},"stepId":"pw:api@106","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"log","callId":"call@708","time":38376.44,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698812.jpeg","width":1280,"height":720,"timestamp":38385.816,"frameSwapWallTime":1784630698808.787} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698827.jpeg","width":1280,"height":720,"timestamp":38400.676,"frameSwapWallTime":1784630698825.037} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698836.jpeg","width":1280,"height":720,"timestamp":38409.889,"frameSwapWallTime":1784630698834.2969} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698844.jpeg","width":1280,"height":720,"timestamp":38417.491,"frameSwapWallTime":1784630698841.967} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698853.jpeg","width":1280,"height":720,"timestamp":38426.639,"frameSwapWallTime":1784630698851.033} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698869.jpeg","width":1280,"height":720,"timestamp":38442.694,"frameSwapWallTime":1784630698867.065} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698877.jpeg","width":1280,"height":720,"timestamp":38450.764,"frameSwapWallTime":1784630698875.118} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698886.jpeg","width":1280,"height":720,"timestamp":38459.512,"frameSwapWallTime":1784630698883.97} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698894.jpeg","width":1280,"height":720,"timestamp":38467.644,"frameSwapWallTime":1784630698892.14} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698940.jpeg","width":1280,"height":720,"timestamp":38513.782,"frameSwapWallTime":1784630698932.044} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698940.jpeg","width":1280,"height":720,"timestamp":38513.916,"frameSwapWallTime":1784630698932.97} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698940.jpeg","width":1280,"height":720,"timestamp":38513.979,"frameSwapWallTime":1784630698933.3032} +{"type":"log","callId":"call@708","time":38515.842,"message":" navigated to \"http://localhost:5174/booking/review\""} +{"type":"after","callId":"call@708","endTime":38515.858} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698951.jpeg","width":1280,"height":720,"timestamp":38524.433,"frameSwapWallTime":1784630698947.676} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698958.jpeg","width":1280,"height":720,"timestamp":38531.557,"frameSwapWallTime":1784630698956.1738} +{"type":"after","callId":"call@703","endTime":38538.329} +{"type":"before","callId":"call@716","startTime":38538.411,"class":"Response","method":"body","params":{},"stepId":"pw:api@107","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698966.jpeg","width":1280,"height":720,"timestamp":38539.652,"frameSwapWallTime":1784630698964.497} +{"type":"after","callId":"call@716","endTime":38540.398,"result":{"binary":""}} +{"type":"before","callId":"call@718","startTime":38541.489,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"dcc6668620df8543a0014f8364aa691d","phase":"before","event":"response"},"stepId":"pw:api@108","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"before","callId":"call@721","startTime":38541.541,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@109","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@721"} +{"type":"frame-snapshot","snapshot":{"callId":"call@721","snapshotName":"before@call@721","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[190,0]],[[190,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[190,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[190,36]],[[190,43]],[[190,47]],[[190,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[190,55]],["OL",{"class":"space-y-1"},[[190,61]],[[180,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[190,74]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[190,77]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[190,79]]]],[[190,86]],[[190,91]]]]],[[190,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[190,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[190,132]],[[180,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[190,157]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[190,160]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[190,161]]]],[[190,164]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[190,166]]]],[[190,177]],[[190,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-28 lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Review your booking"],["DIV",{"class":"bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-3 mb-4 flex items-center gap-2"},["SPAN",{"class":"text-yellow-800 dark:text-yellow-200 text-sm"},"⏱️ Seats held for: ",["SPAN",{"class":"font-bold"}]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card overflow-hidden"},["DIV",{"class":"flex items-center gap-2 mb-6 pb-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"w-2 h-2 bg-primary rounded-full"}],["H2",{"class":"text-lg font-bold text-gray-900 dark:text-gray-100"},"Trip Details"],["SPAN",{"class":"ml-auto text-xs px-2.5 py-1 bg-primary/10 text-primary rounded-full font-semibold"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-8 flex-shrink-0"},["DIV",{"class":"w-4 h-4 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 dark:to-gray-700 my-2"}],["DIV",{"class":"w-4 h-4 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col"},["DIV",{"class":"pb-8"},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Alpha"]],["DIV",{"class":"pb-8"},["DIV",{"class":"flex items-center gap-6 text-sm text-gray-600 dark:text-gray-400"},["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"}]],["SPAN",{"class":"font-medium"},"4h 0m"]],["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M13 10V3L4 14h7v7l9-11h-7z"}]],["SPAN",{"class":"font-medium"},"Train ","UI-100"]]]],["DIV",{},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Charlie"]]]]],["DIV",{"class":"card"},["H2",{"class":"text-xl font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passengers"],["DIV",{"class":"space-y-3"},["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Adult 1"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Jun 15, 1990"," • ","ETHIOPIAN"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"2A"],["P",{"class":"text-[10px] text-gray-400 dark:text-gray-500 mt-0.5"},"Economy Regular"]]]],["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Adult 2"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Jun 15, 1990"," • ","ETHIOPIAN"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"2B"],["P",{"class":"text-[10px] text-gray-400 dark:text-gray-500 mt-0.5"},"Economy Regular"]]]],["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Child 1"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Mar 10, 2023"," • ","ETHIOPIAN"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"—"]]]],["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Child 2"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Mar 10, 2023"," • ","ETHIOPIAN"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"—"]]]],["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Child 3"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Mar 10, 2023"," • ","ETHIOPIAN"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"2C"],["P",{"class":"text-[10px] text-gray-400 dark:text-gray-500 mt-0.5"},"Economy Regular"]]]]]],["DIV",{"class":"lg:hidden mt-4"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 2250.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 2250.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 py-3 z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary"},"ETB 2250.00"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"class":"btn-primary flex-1 py-2.5"},"Confirm "]]]]]]]],[[190,296]],[[189,11]]]],"viewport":{"width":1280,"height":720},"timestamp":38543.554,"wallTime":1784630698969,"collectionTime":1,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@721","time":38543.906,"message":"waiting for getByRole('button', { name: /^confirm/i }).first()"} +{"type":"log","callId":"call@721","time":38545.472,"message":" locator resolved to "} +{"type":"log","callId":"call@721","time":38546.261,"message":"attempting click action"} +{"type":"log","callId":"call@721","time":38546.277,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698982.jpeg","width":1280,"height":720,"timestamp":38555.439,"frameSwapWallTime":1784630698980.229} +{"type":"log","callId":"call@721","time":38562.567,"message":" element is not stable"} +{"type":"log","callId":"call@721","time":38562.576,"message":"retrying click action"} +{"type":"log","callId":"call@721","time":38562.592,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698990.jpeg","width":1280,"height":720,"timestamp":38563.85,"frameSwapWallTime":1784630698988.638} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630698998.jpeg","width":1280,"height":720,"timestamp":38572.155,"frameSwapWallTime":1784630698996.752} +{"type":"log","callId":"call@721","time":38579.189,"message":" element is not stable"} +{"type":"log","callId":"call@721","time":38579.198,"message":"retrying click action"} +{"type":"log","callId":"call@721","time":38579.199,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699015.jpeg","width":1280,"height":720,"timestamp":38588.518,"frameSwapWallTime":1784630699013.361} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699023.jpeg","width":1280,"height":720,"timestamp":38596.882,"frameSwapWallTime":1784630699021.617} +{"type":"log","callId":"call@721","time":38600.311,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699032.jpeg","width":1280,"height":720,"timestamp":38605.587,"frameSwapWallTime":1784630699030.201} +{"type":"log","callId":"call@721","time":38612.511,"message":" element is not stable"} +{"type":"log","callId":"call@721","time":38612.519,"message":"retrying click action"} +{"type":"log","callId":"call@721","time":38612.52,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699040.jpeg","width":1280,"height":720,"timestamp":38613.713,"frameSwapWallTime":1784630699038.5288} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699057.jpeg","width":1280,"height":720,"timestamp":38630.51,"frameSwapWallTime":1784630699055.1091} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699065.jpeg","width":1280,"height":720,"timestamp":38638.952,"frameSwapWallTime":1784630699063.593} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699073.jpeg","width":1280,"height":720,"timestamp":38647.246,"frameSwapWallTime":1784630699071.945} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699090.jpeg","width":1280,"height":720,"timestamp":38663.645,"frameSwapWallTime":1784630699088.341} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699098.jpeg","width":1280,"height":720,"timestamp":38671.959,"frameSwapWallTime":1784630699096.629} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699107.jpeg","width":1280,"height":720,"timestamp":38680.392,"frameSwapWallTime":1784630699104.971} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699115.jpeg","width":1280,"height":720,"timestamp":38688.523,"frameSwapWallTime":1784630699113.1548} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699131.jpeg","width":1280,"height":720,"timestamp":38705.169,"frameSwapWallTime":1784630699129.927} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699140.jpeg","width":1280,"height":720,"timestamp":38713.607,"frameSwapWallTime":1784630699138.15} +{"type":"log","callId":"call@721","time":38713.776,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699148.jpeg","width":1280,"height":720,"timestamp":38721.903,"frameSwapWallTime":1784630699146.49} +{"type":"log","callId":"call@721","time":38729.066,"message":" element is not stable"} +{"type":"log","callId":"call@721","time":38729.075,"message":"retrying click action"} +{"type":"log","callId":"call@721","time":38729.076,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699156.jpeg","width":1280,"height":720,"timestamp":38730.116,"frameSwapWallTime":1784630699154.822} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699173.jpeg","width":1280,"height":720,"timestamp":38746.67,"frameSwapWallTime":1784630699171.319} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699181.jpeg","width":1280,"height":720,"timestamp":38755.08,"frameSwapWallTime":1784630699179.707} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699190.jpeg","width":1280,"height":720,"timestamp":38763.735,"frameSwapWallTime":1784630699188.3198} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699198.jpeg","width":1280,"height":720,"timestamp":38771.925,"frameSwapWallTime":1784630699196.427} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699214.jpeg","width":1280,"height":720,"timestamp":38788.231,"frameSwapWallTime":1784630699212.853} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699223.jpeg","width":1280,"height":720,"timestamp":38796.608,"frameSwapWallTime":1784630699221.2998} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699231.jpeg","width":1280,"height":720,"timestamp":38805.298,"frameSwapWallTime":1784630699229.91} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699247.jpeg","width":1280,"height":720,"timestamp":38821.048,"frameSwapWallTime":1784630699245.597} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699256.jpeg","width":1280,"height":720,"timestamp":38830.19,"frameSwapWallTime":1784630699254.782} +{"type":"log","callId":"call@721","time":38830.411,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699265.jpeg","width":1280,"height":720,"timestamp":38838.612,"frameSwapWallTime":1784630699263.119} +{"type":"log","callId":"call@721","time":38845.766,"message":" element is not stable"} +{"type":"log","callId":"call@721","time":38845.769,"message":"retrying click action"} +{"type":"log","callId":"call@721","time":38845.771,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699273.jpeg","width":1280,"height":720,"timestamp":38846.736,"frameSwapWallTime":1784630699271.2852} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699286.jpeg","width":1280,"height":720,"timestamp":38860.121,"frameSwapWallTime":1784630699284.8289} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699294.jpeg","width":1280,"height":720,"timestamp":38867.93,"frameSwapWallTime":1784630699292.489} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699302.jpeg","width":1280,"height":720,"timestamp":38875.48,"frameSwapWallTime":1784630699300.202} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699310.jpeg","width":1280,"height":720,"timestamp":38884.1,"frameSwapWallTime":1784630699308.63} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699327.jpeg","width":1280,"height":720,"timestamp":38900.728,"frameSwapWallTime":1784630699325.316} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699335.jpeg","width":1280,"height":720,"timestamp":38908.823,"frameSwapWallTime":1784630699333.545} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699343.jpeg","width":1280,"height":720,"timestamp":38917.11,"frameSwapWallTime":1784630699341.854} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699352.jpeg","width":1280,"height":720,"timestamp":38925.474,"frameSwapWallTime":1784630699350.1921} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699368.jpeg","width":1280,"height":720,"timestamp":38942.294,"frameSwapWallTime":1784630699366.931} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699377.jpeg","width":1280,"height":720,"timestamp":38950.617,"frameSwapWallTime":1784630699375.3071} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699385.jpeg","width":1280,"height":720,"timestamp":38958.882,"frameSwapWallTime":1784630699383.626} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699394.jpeg","width":1280,"height":720,"timestamp":38967.411,"frameSwapWallTime":1784630699392.032} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699410.jpeg","width":1280,"height":720,"timestamp":38984.136,"frameSwapWallTime":1784630699408.743} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699419.jpeg","width":1280,"height":720,"timestamp":38992.419,"frameSwapWallTime":1784630699417.022} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699427.jpeg","width":1280,"height":720,"timestamp":39000.613,"frameSwapWallTime":1784630699425.2678} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699443.jpeg","width":1280,"height":720,"timestamp":39017.2,"frameSwapWallTime":1784630699441.905} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699452.jpeg","width":1280,"height":720,"timestamp":39025.564,"frameSwapWallTime":1784630699450.222} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699460.jpeg","width":1280,"height":720,"timestamp":39033.801,"frameSwapWallTime":1784630699458.544} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699477.jpeg","width":1280,"height":720,"timestamp":39050.624,"frameSwapWallTime":1784630699475.302} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699687.jpeg","width":1280,"height":720,"timestamp":39260.456,"frameSwapWallTime":1784630699683.6008} +{"type":"log","callId":"call@721","time":39346.737,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@721","time":39362.363,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@721","time":39362.376,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@721","time":39362.677,"message":" done scrolling"} +{"type":"input","callId":"call@721","point":{"x":1106.65,"y":501},"inputSnapshot":"input@call@721"} +{"type":"frame-snapshot","snapshot":{"callId":"call@721","snapshotName":"input@call@721","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[1,338]],"viewport":{"width":1280,"height":720},"timestamp":39363.842,"wallTime":1784630699790,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@721","time":39364.511,"message":" performing click action"} +{"type":"log","callId":"call@721","time":39366.397,"message":" click action done"} +{"type":"log","callId":"call@721","time":39366.4,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@721","time":39366.631,"message":" navigations have finished"} +{"type":"after","callId":"call@721","endTime":39366.684,"afterSnapshot":"after@call@721"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699793.jpeg","width":1280,"height":720,"timestamp":39367.134,"frameSwapWallTime":1784630699791.819} +{"type":"frame-snapshot","snapshot":{"callId":"call@721","snapshotName":"after@call@721","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[2,338]],"viewport":{"width":1280,"height":720},"timestamp":39367.687,"wallTime":1784630699794,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699802.jpeg","width":1280,"height":720,"timestamp":39375.533,"frameSwapWallTime":1784630699800.206} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699822.jpeg","width":1280,"height":720,"timestamp":39395.571,"frameSwapWallTime":1784630699817.147} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699832.jpeg","width":1280,"height":720,"timestamp":39406.204,"frameSwapWallTime":1784630699825.753} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699838.jpeg","width":1280,"height":720,"timestamp":39412.214,"frameSwapWallTime":1784630699834.08} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699844.jpeg","width":1280,"height":720,"timestamp":39417.84,"frameSwapWallTime":1784630699842.3818} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699860.jpeg","width":1280,"height":720,"timestamp":39433.672,"frameSwapWallTime":1784630699858.225} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699868.jpeg","width":1280,"height":720,"timestamp":39441.599,"frameSwapWallTime":1784630699866.216} +{"type":"after","callId":"call@718","endTime":39446.287} +{"type":"before","callId":"call@726","startTime":39446.356,"class":"Response","method":"body","params":{},"stepId":"pw:api@110","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699876.jpeg","width":1280,"height":720,"timestamp":39450.247,"frameSwapWallTime":1784630699874.773} +{"type":"after","callId":"call@726","endTime":39450.478,"result":{"binary":""}} +{"type":"before","callId":"call@728","startTime":39451.656,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"aa7d0218adfc054b05025882338bbafd","phase":"before","event":""},"stepId":"pw:api@112","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"log","callId":"call@728","time":39451.677,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699885.jpeg","width":1280,"height":720,"timestamp":39459.222,"frameSwapWallTime":1784630699883.807} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699901.jpeg","width":1280,"height":720,"timestamp":39475.142,"frameSwapWallTime":1784630699899.802} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699910.jpeg","width":1280,"height":720,"timestamp":39483.926,"frameSwapWallTime":1784630699908.627} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699918.jpeg","width":1280,"height":720,"timestamp":39492.227,"frameSwapWallTime":1784630699916.88} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699927.jpeg","width":1280,"height":720,"timestamp":39500.642,"frameSwapWallTime":1784630699925.3499} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699943.jpeg","width":1280,"height":720,"timestamp":39516.417,"frameSwapWallTime":1784630699941.0889} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699952.jpeg","width":1280,"height":720,"timestamp":39525.512,"frameSwapWallTime":1784630699950.282} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699960.jpeg","width":1280,"height":720,"timestamp":39533.743,"frameSwapWallTime":1784630699958.4739} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699968.jpeg","width":1280,"height":720,"timestamp":39542.179,"frameSwapWallTime":1784630699966.8428} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699985.jpeg","width":1280,"height":720,"timestamp":39559.297,"frameSwapWallTime":1784630699983.907} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630699994.jpeg","width":1280,"height":720,"timestamp":39567.515,"frameSwapWallTime":1784630699992.21} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700002.jpeg","width":1280,"height":720,"timestamp":39575.962,"frameSwapWallTime":1784630700000.542} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700019.jpeg","width":1280,"height":720,"timestamp":39592.941,"frameSwapWallTime":1784630700017.417} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700027.jpeg","width":1280,"height":720,"timestamp":39600.836,"frameSwapWallTime":1784630700025.413} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700035.jpeg","width":1280,"height":720,"timestamp":39609.061,"frameSwapWallTime":1784630700033.645} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700052.jpeg","width":1280,"height":720,"timestamp":39625.932,"frameSwapWallTime":1784630700050.407} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700091.jpeg","width":1280,"height":720,"timestamp":39664.36,"frameSwapWallTime":1784630700083.704} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700092.jpeg","width":1280,"height":720,"timestamp":39666.205,"frameSwapWallTime":1784630700084.6738} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700092.jpeg","width":1280,"height":720,"timestamp":39666.26,"frameSwapWallTime":1784630700085.248} +{"type":"log","callId":"call@728","time":39666.343,"message":" navigated to \"http://localhost:5174/booking/payment\""} +{"type":"after","callId":"call@728","endTime":39666.351} +{"type":"before","callId":"call@733","startTime":39666.393,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"05529a1f6c3147d85dd077350fbc4937","phase":"before","event":"response"},"stepId":"pw:api@113","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"before","callId":"call@736","startTime":39666.437,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"pay-method-WALLET\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@114","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@736"} +{"type":"frame-snapshot","snapshot":{"callId":"call@736","snapshotName":"before@call@736","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[193,0]],[[193,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[193,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[193,36]],[[193,43]],[[193,47]],[[193,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[193,55]],["OL",{"class":"space-y-1"},[[193,61]],[[183,32]],[[6,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[193,79]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[193,82]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[193,84]]]],[[193,91]]]]],[[193,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[193,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[193,132]],[[183,47]],[[6,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[193,166]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[193,169]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[193,170]]]],[[193,173]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[193,175]]]],[[193,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Complete payment"],["DIV",{"class":"card bg-green-50 dark:bg-green-900/20 border border-green-200 dark:border-green-800 mb-4 flex items-start gap-3"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-check-big w-6 h-6 text-green-600 dark:text-green-400 flex-shrink-0 mt-0.5"},["path",{"d":"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{"d":"m9 11 3 3L22 4"}]],["DIV",{},["P",{"class":"text-sm font-semibold text-green-800 dark:text-green-300"},"Your booking is successfully reserved"],["P",{"class":"text-sm text-green-700 dark:text-green-400 mt-0.5"},"Booking Reference: ",["SPAN",{"class":"font-bold"},"CTFDAP"]],["P",{"class":"text-xs text-green-700/80 dark:text-green-400/80 mt-1"},"Please complete the payment below to confirm your booking. Your seats are held temporarily until payment is completed."]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 mb-4"},"Select payment method"],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-wallet w-5 h-5 text-primary"},["path",{"d":"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{"d":"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"Wallet"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]],["BUTTON",{"data-testid":"pay-method-TELEBIRR","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-smartphone w-5 h-5 text-primary"},["rect",{"width":"14","height":"20","x":"5","y":"2","rx":"2","ry":"2"}],["path",{"d":"M12 18h.01"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"telebirr"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"CTFDAP"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","2250.00"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 2250.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"CTFDAP"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","2250.00"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 2250.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},"ETB"," ","2250.00"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"disabled":"","class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 2250.00"]]]]]]]],[[193,296]],[[192,11]]]],"viewport":{"width":1280,"height":720},"timestamp":39669.022,"wallTime":1784630700094,"collectionTime":1.0999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@736","time":39669.322,"message":"waiting for getByTestId('pay-method-WALLET').first()"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700102.jpeg","width":1280,"height":720,"timestamp":39675.591,"frameSwapWallTime":1784630700096.7542} +{"type":"log","callId":"call@736","time":39676.645,"message":" locator resolved to "} +{"type":"log","callId":"call@736","time":39677.323,"message":"attempting click action"} +{"type":"log","callId":"call@736","time":39677.344,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700107.jpeg","width":1280,"height":720,"timestamp":39680.474,"frameSwapWallTime":1784630700105.0251} +{"type":"log","callId":"call@736","time":39687.595,"message":" element is not stable"} +{"type":"log","callId":"call@736","time":39687.609,"message":"retrying click action"} +{"type":"log","callId":"call@736","time":39687.628,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700114.jpeg","width":1280,"height":720,"timestamp":39688.125,"frameSwapWallTime":1784630700112.994} +{"type":"log","callId":"call@736","time":39704.269,"message":" element is not stable"} +{"type":"log","callId":"call@736","time":39704.282,"message":"retrying click action"} +{"type":"log","callId":"call@736","time":39704.284,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700131.jpeg","width":1280,"height":720,"timestamp":39704.626,"frameSwapWallTime":1784630700129.476} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700139.jpeg","width":1280,"height":720,"timestamp":39712.825,"frameSwapWallTime":1784630700137.6382} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700148.jpeg","width":1280,"height":720,"timestamp":39721.409,"frameSwapWallTime":1784630700146.198} +{"type":"log","callId":"call@736","time":39725.425,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@736","time":39737.553,"message":" element is not stable"} +{"type":"log","callId":"call@736","time":39737.564,"message":"retrying click action"} +{"type":"log","callId":"call@736","time":39737.565,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700164.jpeg","width":1280,"height":720,"timestamp":39738.028,"frameSwapWallTime":1784630700162.8179} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700172.jpeg","width":1280,"height":720,"timestamp":39746.253,"frameSwapWallTime":1784630700170.968} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700181.jpeg","width":1280,"height":720,"timestamp":39754.695,"frameSwapWallTime":1784630700179.452} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700198.jpeg","width":1280,"height":720,"timestamp":39771.417,"frameSwapWallTime":1784630700196.1738} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700206.jpeg","width":1280,"height":720,"timestamp":39779.833,"frameSwapWallTime":1784630700204.4722} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700214.jpeg","width":1280,"height":720,"timestamp":39788.203,"frameSwapWallTime":1784630700212.961} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700223.jpeg","width":1280,"height":720,"timestamp":39796.611,"frameSwapWallTime":1784630700221.311} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700239.jpeg","width":1280,"height":720,"timestamp":39813.258,"frameSwapWallTime":1784630700237.8198} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700248.jpeg","width":1280,"height":720,"timestamp":39821.589,"frameSwapWallTime":1784630700246.23} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700256.jpeg","width":1280,"height":720,"timestamp":39829.888,"frameSwapWallTime":1784630700254.585} +{"type":"log","callId":"call@736","time":39838.504,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700273.jpeg","width":1280,"height":720,"timestamp":39846.456,"frameSwapWallTime":1784630700271.061} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700281.jpeg","width":1280,"height":720,"timestamp":39854.42,"frameSwapWallTime":1784630700279.17} +{"type":"log","callId":"call@736","time":39854.713,"message":" element is not stable"} +{"type":"log","callId":"call@736","time":39854.717,"message":"retrying click action"} +{"type":"log","callId":"call@736","time":39854.718,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700289.jpeg","width":1280,"height":720,"timestamp":39862.399,"frameSwapWallTime":1784630700287.081} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700297.jpeg","width":1280,"height":720,"timestamp":39871.207,"frameSwapWallTime":1784630700295.896} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700314.jpeg","width":1280,"height":720,"timestamp":39887.875,"frameSwapWallTime":1784630700312.4868} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700322.jpeg","width":1280,"height":720,"timestamp":39896.187,"frameSwapWallTime":1784630700320.799} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700331.jpeg","width":1280,"height":720,"timestamp":39904.567,"frameSwapWallTime":1784630700329.165} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700347.jpeg","width":1280,"height":720,"timestamp":39920.959,"frameSwapWallTime":1784630700345.601} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700356.jpeg","width":1280,"height":720,"timestamp":39929.633,"frameSwapWallTime":1784630700354.244} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700364.jpeg","width":1280,"height":720,"timestamp":39937.856,"frameSwapWallTime":1784630700362.615} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700381.jpeg","width":1280,"height":720,"timestamp":39954.433,"frameSwapWallTime":1784630700379.04} +{"type":"log","callId":"call@736","time":39956.259,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700389.jpeg","width":1280,"height":720,"timestamp":39962.792,"frameSwapWallTime":1784630700387.408} +{"type":"log","callId":"call@736","time":39970.779,"message":" element is not stable"} +{"type":"log","callId":"call@736","time":39970.79,"message":"retrying click action"} +{"type":"log","callId":"call@736","time":39970.792,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700397.jpeg","width":1280,"height":720,"timestamp":39971.138,"frameSwapWallTime":1784630700395.846} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700415.jpeg","width":1280,"height":720,"timestamp":39988.372,"frameSwapWallTime":1784630700412.888} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700423.jpeg","width":1280,"height":720,"timestamp":39996.343,"frameSwapWallTime":1784630700420.9758} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700430.jpeg","width":1280,"height":720,"timestamp":40004.247,"frameSwapWallTime":1784630700428.8818} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700439.jpeg","width":1280,"height":720,"timestamp":40012.801,"frameSwapWallTime":1784630700437.368} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700452.jpeg","width":1280,"height":720,"timestamp":40025.472,"frameSwapWallTime":1784630700450.2039} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700460.jpeg","width":1280,"height":720,"timestamp":40033.535,"frameSwapWallTime":1784630700458.3481} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700468.jpeg","width":1280,"height":720,"timestamp":40041.899,"frameSwapWallTime":1784630700466.682} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700476.jpeg","width":1280,"height":720,"timestamp":40050.128,"frameSwapWallTime":1784630700474.961} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700493.jpeg","width":1280,"height":720,"timestamp":40066.917,"frameSwapWallTime":1784630700491.649} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700501.jpeg","width":1280,"height":720,"timestamp":40075.212,"frameSwapWallTime":1784630700500.0132} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700510.jpeg","width":1280,"height":720,"timestamp":40083.569,"frameSwapWallTime":1784630700508.377} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700518.jpeg","width":1280,"height":720,"timestamp":40091.957,"frameSwapWallTime":1784630700516.737} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700535.jpeg","width":1280,"height":720,"timestamp":40108.853,"frameSwapWallTime":1784630700533.5232} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700543.jpeg","width":1280,"height":720,"timestamp":40117.088,"frameSwapWallTime":1784630700541.791} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700551.jpeg","width":1280,"height":720,"timestamp":40124.835,"frameSwapWallTime":1784630700549.572} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700560.jpeg","width":1280,"height":720,"timestamp":40133.749,"frameSwapWallTime":1784630700558.483} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700577.jpeg","width":1280,"height":720,"timestamp":40150.449,"frameSwapWallTime":1784630700575.136} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700585.jpeg","width":1280,"height":720,"timestamp":40158.777,"frameSwapWallTime":1784630700583.498} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700593.jpeg","width":1280,"height":720,"timestamp":40166.926,"frameSwapWallTime":1784630700591.6929} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700801.jpeg","width":1280,"height":720,"timestamp":40375.213,"frameSwapWallTime":1784630700799.9539} +{"type":"log","callId":"call@736","time":40472.294,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@736","time":40487.351,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@736","time":40487.374,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@736","time":40487.727,"message":" done scrolling"} +{"type":"input","callId":"call@736","point":{"x":598.66,"y":310},"inputSnapshot":"input@call@736"} +{"type":"frame-snapshot","snapshot":{"callId":"call@736","snapshotName":"input@call@736","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":[[1,334]],"viewport":{"width":1280,"height":720},"timestamp":40489.102,"wallTime":1784630700915,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@736","time":40489.807,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700918.jpeg","width":1280,"height":720,"timestamp":40492.265,"frameSwapWallTime":1784630700916.921} +{"type":"log","callId":"call@736","time":40495.106,"message":" click action done"} +{"type":"log","callId":"call@736","time":40495.109,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@736","time":40495.324,"message":" navigations have finished"} +{"type":"after","callId":"call@736","endTime":40495.421,"afterSnapshot":"after@call@736"} +{"type":"frame-snapshot","snapshot":{"callId":"call@736","snapshotName":"after@call@736","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[195,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,58]],[[2,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[2,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-primary bg-primary/8 dark:bg-primary/15 shadow-md "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-primary"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-wallet w-5 h-5 text-white"},[[2,74]],[[2,75]]]],[[2,84]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-check-big w-5 h-5 text-primary flex-shrink-0"},["path",{"d":"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{"d":"m9 11 3 3L22 4"}]]]],[[2,99]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"CTFDAP"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin text-primary"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating amount..."]],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"CTFDAP"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin text-primary"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating amount..."]],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},[[2,314]],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-3.5 h-3.5 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]],["DIV",{"class":"flex gap-3"},[[2,323]],["BUTTON",{"disabled":"","class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating..."]]]]]]]]],[[195,296]],[[194,11]]]],"viewport":{"width":1280,"height":720},"timestamp":40497.57,"wallTime":1784630700923,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@738","startTime":40498.541,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^pay\\b/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@115","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","beforeSnapshot":"before@call@738"} +{"type":"frame-snapshot","snapshot":{"callId":"call@738","snapshotName":"before@call@738","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":[[1,241]],"viewport":{"width":1280,"height":720},"timestamp":40499.619,"wallTime":1784630700926,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@738","time":40499.742,"message":"waiting for getByRole('button', { name: /^pay\\b/i }).first()"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700927.jpeg","width":1280,"height":720,"timestamp":40500.678,"frameSwapWallTime":1784630700925.336} +{"type":"log","callId":"call@738","time":40506.015,"message":" locator resolved to "} +{"type":"log","callId":"call@738","time":40506.536,"message":"attempting click action"} +{"type":"log","callId":"call@738","time":40506.556,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700944.jpeg","width":1280,"height":720,"timestamp":40517.975,"frameSwapWallTime":1784630700942.62} +{"type":"log","callId":"call@738","time":40520.088,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@738","time":40520.091,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@738","time":40520.328,"message":" done scrolling"} +{"type":"input","callId":"call@738","point":{"x":1106.65,"y":543},"inputSnapshot":"input@call@738"} +{"type":"frame-snapshot","snapshot":{"callId":"call@738","snapshotName":"input@call@738","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"318","lang":"en","dir":"ltr","class":"light","style":""},[[4,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[4,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[197,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,58]],[[4,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[2,8]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"CTFDAP"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","2250.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","2250.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 2250.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"CTFDAP"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","2250.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","2250.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"__playwright_target__":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 2250.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},[[4,314]],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},"ETB"," ","2250.00"]],["DIV",{"class":"flex gap-3"},[[4,323]],["BUTTON",{"class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 2250.00"]]]]]]]],[[197,296]],[[196,11]]]],"viewport":{"width":1280,"height":720},"timestamp":40521.974,"wallTime":1784630700948,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@738","time":40522.707,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700951.jpeg","width":1280,"height":720,"timestamp":40525.216,"frameSwapWallTime":1784630700949.985} +{"type":"log","callId":"call@738","time":40528.116,"message":" click action done"} +{"type":"log","callId":"call@738","time":40528.119,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@738","time":40528.329,"message":" navigations have finished"} +{"type":"after","callId":"call@738","endTime":40528.392,"afterSnapshot":"after@call@738"} +{"type":"frame-snapshot","snapshot":{"callId":"call@738","snapshotName":"after@call@738","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","frameId":"frame@8eb25fea64d7f1ed27d60d03d1db822b","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"318","lang":"en","dir":"ltr","class":"light","style":""},[[5,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[5,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[198,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,58]],[[5,71]],["DIV",{"class":"fixed inset-0 bg-black/60 flex items-center justify-center z-50"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-xl p-8 max-w-sm w-full mx-4 text-center shadow-2xl"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-14 h-14 text-primary animate-spin mx-auto mb-4"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]],["H3",{"class":"text-lg font-bold mb-1 text-gray-900 dark:text-gray-100"},"Processing payment"],["P",{"class":"text-sm text-gray-500 dark:text-gray-400"},"Please wait..."]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[5,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-primary bg-primary/8 dark:bg-primary/15 shadow-md opacity-50 cursor-not-allowed","disabled":""},[[3,5]]],["BUTTON",{"data-testid":"pay-method-TELEBIRR","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 opacity-50 cursor-not-allowed","disabled":""},[[5,98]]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"CTFDAP"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","2250.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","2250.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]],["BUTTON",{"disabled":"","class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"CTFDAP"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 2"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 1",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 2",["SPAN",{"class":"text-xs font-semibold ml-1 text-green-600"},"(","CHILD - FREE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 0.00"]]],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Child 3",["SPAN",{"class":"text-xs font-semibold ml-1 text-blue-600"},"(","CHILD - FULL FARE",")"]],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","2250.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","2250.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]],["BUTTON",{"disabled":"","class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},[[1,229]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2","disabled":""},[[5,321]],[[5,322]]],["BUTTON",{"class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed","disabled":""},["SPAN",{"class":"flex items-center justify-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]]]]]]]]],[[198,296]],[[197,11]]]],"viewport":{"width":1280,"height":720},"timestamp":40529.762,"wallTime":1784630700955,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700961.jpeg","width":1280,"height":720,"timestamp":40534.514,"frameSwapWallTime":1784630700959.1318} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700979.jpeg","width":1280,"height":720,"timestamp":40552.371,"frameSwapWallTime":1784630700977.129} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700986.jpeg","width":1280,"height":720,"timestamp":40559.604,"frameSwapWallTime":1784630700984.445} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630700994.jpeg","width":1280,"height":720,"timestamp":40568.086,"frameSwapWallTime":1784630700992.9258} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701003.jpeg","width":1280,"height":720,"timestamp":40577.122,"frameSwapWallTime":1784630701001.974} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701019.jpeg","width":1280,"height":720,"timestamp":40593.07,"frameSwapWallTime":1784630701017.8389} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701028.jpeg","width":1280,"height":720,"timestamp":40601.962,"frameSwapWallTime":1784630701026.833} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701037.jpeg","width":1280,"height":720,"timestamp":40610.47,"frameSwapWallTime":1784630701035.314} +{"type":"after","callId":"call@733","endTime":40615.12} +{"type":"before","callId":"call@743","startTime":40615.183,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"1bd8d72ed3edb25c1fec7aee66f719d8","phase":"before","event":""},"stepId":"pw:api@116","pageId":"page@23129ddb9bc37fd187315b2487d86bb6"} +{"type":"log","callId":"call@743","time":40615.198,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701045.jpeg","width":1280,"height":720,"timestamp":40618.798,"frameSwapWallTime":1784630701043.625} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701061.jpeg","width":1280,"height":720,"timestamp":40635.176,"frameSwapWallTime":1784630701060.073} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701070.jpeg","width":1280,"height":720,"timestamp":40643.532,"frameSwapWallTime":1784630701068.348} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701077.jpeg","width":1280,"height":720,"timestamp":40651.083,"frameSwapWallTime":1784630701075.9731} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701086.jpeg","width":1280,"height":720,"timestamp":40660.219,"frameSwapWallTime":1784630701085.1108} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701103.jpeg","width":1280,"height":720,"timestamp":40677.16,"frameSwapWallTime":1784630701101.95} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701112.jpeg","width":1280,"height":720,"timestamp":40685.654,"frameSwapWallTime":1784630701110.307} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701120.jpeg","width":1280,"height":720,"timestamp":40693.898,"frameSwapWallTime":1784630701118.747} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701129.jpeg","width":1280,"height":720,"timestamp":40702.359,"frameSwapWallTime":1784630701127.145} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701144.jpeg","width":1280,"height":720,"timestamp":40718.101,"frameSwapWallTime":1784630701142.932} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701152.jpeg","width":1280,"height":720,"timestamp":40726.236,"frameSwapWallTime":1784630701151.1409} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701161.jpeg","width":1280,"height":720,"timestamp":40734.773,"frameSwapWallTime":1784630701159.632} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701169.jpeg","width":1280,"height":720,"timestamp":40743.172,"frameSwapWallTime":1784630701168.019} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701186.jpeg","width":1280,"height":720,"timestamp":40759.397,"frameSwapWallTime":1784630701184.304} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701194.jpeg","width":1280,"height":720,"timestamp":40767.722,"frameSwapWallTime":1784630701192.6018} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701203.jpeg","width":1280,"height":720,"timestamp":40776.387,"frameSwapWallTime":1784630701201.257} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701211.jpeg","width":1280,"height":720,"timestamp":40784.512,"frameSwapWallTime":1784630701209.332} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701227.jpeg","width":1280,"height":720,"timestamp":40801.059,"frameSwapWallTime":1784630701225.879} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701236.jpeg","width":1280,"height":720,"timestamp":40810.042,"frameSwapWallTime":1784630701234.913} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701244.jpeg","width":1280,"height":720,"timestamp":40817.958,"frameSwapWallTime":1784630701242.818} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701252.jpeg","width":1280,"height":720,"timestamp":40826.133,"frameSwapWallTime":1784630701251.051} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701269.jpeg","width":1280,"height":720,"timestamp":40842.715,"frameSwapWallTime":1784630701267.623} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701277.jpeg","width":1280,"height":720,"timestamp":40851.052,"frameSwapWallTime":1784630701275.992} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701286.jpeg","width":1280,"height":720,"timestamp":40859.405,"frameSwapWallTime":1784630701284.3499} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701302.jpeg","width":1280,"height":720,"timestamp":40876.229,"frameSwapWallTime":1784630701301.054} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701311.jpeg","width":1280,"height":720,"timestamp":40884.59,"frameSwapWallTime":1784630701309.5068} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701319.jpeg","width":1280,"height":720,"timestamp":40892.634,"frameSwapWallTime":1784630701317.589} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701327.jpeg","width":1280,"height":720,"timestamp":40900.98,"frameSwapWallTime":1784630701325.912} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701344.jpeg","width":1280,"height":720,"timestamp":40917.89,"frameSwapWallTime":1784630701342.742} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701352.jpeg","width":1280,"height":720,"timestamp":40926.058,"frameSwapWallTime":1784630701350.9878} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701361.jpeg","width":1280,"height":720,"timestamp":40934.565,"frameSwapWallTime":1784630701359.417} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701377.jpeg","width":1280,"height":720,"timestamp":40951.309,"frameSwapWallTime":1784630701376.188} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701386.jpeg","width":1280,"height":720,"timestamp":40959.429,"frameSwapWallTime":1784630701384.362} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701394.jpeg","width":1280,"height":720,"timestamp":40967.68,"frameSwapWallTime":1784630701392.6401} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701411.jpeg","width":1280,"height":720,"timestamp":40984.415,"frameSwapWallTime":1784630701409.335} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701419.jpeg","width":1280,"height":720,"timestamp":40992.697,"frameSwapWallTime":1784630701417.6719} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701427.jpeg","width":1280,"height":720,"timestamp":41001.184,"frameSwapWallTime":1784630701426.1128} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701444.jpeg","width":1280,"height":720,"timestamp":41017.927,"frameSwapWallTime":1784630701442.752} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701452.jpeg","width":1280,"height":720,"timestamp":41026.236,"frameSwapWallTime":1784630701451.147} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701461.jpeg","width":1280,"height":720,"timestamp":41034.574,"frameSwapWallTime":1784630701459.493} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701469.jpeg","width":1280,"height":720,"timestamp":41042.777,"frameSwapWallTime":1784630701467.681} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701486.jpeg","width":1280,"height":720,"timestamp":41059.416,"frameSwapWallTime":1784630701484.308} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701494.jpeg","width":1280,"height":720,"timestamp":41067.968,"frameSwapWallTime":1784630701492.83} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701502.jpeg","width":1280,"height":720,"timestamp":41076.258,"frameSwapWallTime":1784630701501.096} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701519.jpeg","width":1280,"height":720,"timestamp":41092.957,"frameSwapWallTime":1784630701517.8389} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701527.jpeg","width":1280,"height":720,"timestamp":41101.163,"frameSwapWallTime":1784630701526.07} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701536.jpeg","width":1280,"height":720,"timestamp":41109.341,"frameSwapWallTime":1784630701534.2961} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701553.jpeg","width":1280,"height":720,"timestamp":41126.352,"frameSwapWallTime":1784630701551.178} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701768.jpeg","width":1280,"height":720,"timestamp":41341.799,"frameSwapWallTime":1784630701766.759} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630701969.jpeg","width":1280,"height":720,"timestamp":41543.209,"frameSwapWallTime":1784630701968.059} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630702177.jpeg","width":1280,"height":720,"timestamp":41750.878,"frameSwapWallTime":1784630702175.8608} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630702394.jpeg","width":1280,"height":720,"timestamp":41967.773,"frameSwapWallTime":1784630702392.72} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630702611.jpeg","width":1280,"height":720,"timestamp":42184.409,"frameSwapWallTime":1784630702609.352} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630702811.jpeg","width":1280,"height":720,"timestamp":42384.935,"frameSwapWallTime":1784630702809.833} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630703019.jpeg","width":1280,"height":720,"timestamp":42593.195,"frameSwapWallTime":1784630703018.01} +{"type":"log","callId":"call@743","time":42740.856,"message":" navigated to \"http://localhost:5174/booking/confirmation\""} +{"type":"after","callId":"call@743","endTime":42740.874} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630703167.jpeg","width":1280,"height":720,"timestamp":42740.999,"frameSwapWallTime":1784630703165.2278} +{"type":"screencast-frame","pageId":"page@23129ddb9bc37fd187315b2487d86bb6","sha1":"page@23129ddb9bc37fd187315b2487d86bb6-1784630703175.jpeg","width":1280,"height":720,"timestamp":42748.732,"frameSwapWallTime":1784630703173.674} diff --git a/test-results/.playwright-artifacts-0/traces/842fc11b7ba141cc244f-3f4b4ece503751ab736e-recording5.network b/test-results/.playwright-artifacts-0/traces/842fc11b7ba141cc244f-3f4b4ece503751ab736e-recording5.network new file mode 100644 index 000000000..2f94b47c5 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/842fc11b7ba141cc244f-3f4b4ece503751ab736e-recording5.network @@ -0,0 +1,17 @@ +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.429Z","time":18.915000000000003,"request":{"method":"GET","url":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-Fetch-Dest","value":"document"},{"name":"Sec-Fetch-Mode","value":"navigate"},{"name":"Sec-Fetch-Site","value":"none"},{"name":"Sec-Fetch-User","value":"?1"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"origin","value":"00000000-0000-4000-8000-000000000020"},{"name":"destination","value":"00000000-0000-4000-8000-000000000022"},{"name":"date","value":"2026-07-23"},{"name":"tripType","value":"ONE_WAY"},{"name":"adults","value":"1"},{"name":"children","value":"0"},{"name":"nationality","value":"OTHER"}],"headersSize":673,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/html; charset=utf-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"X-Powered-By","value":"Next.js"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":51409,"mimeType":"text/html; charset=utf-8","compression":41197,"_sha1":"b457b71bb3a5e3c8e0ee6908d9539326b7cdf2a2.html"},"headersSize":765,"bodySize":10212,"redirectURL":"","_transferSize":10977},"cache":{},"timings":{"dns":0.01,"connect":0.295,"ssl":1.391,"send":0,"wait":15.814,"receive":1.405},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43002.566,"_resourceType":"document","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.447Z","time":2.6149999999999998,"request":{"method":"GET","url":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"image"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"url","value":"/edr-logo.png"},{"name":"w","value":"256"},{"name":"q","value":"75"}],"headersSize":763,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"public, max-age=0, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Disposition","value":"inline; filename=\"edr-logo.webp\""},{"name":"Content-Length","value":"5926"},{"name":"Content-Security-Policy","value":"script-src 'none'; frame-src 'none'; sandbox;"},{"name":"Content-Type","value":"image/webp"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Vary","value":"Accept"},{"name":"X-Nextjs-Cache","value":"HIT"}],"content":{"size":5926,"mimeType":"image/webp","compression":0,"_sha1":"d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp"},"headersSize":416,"bodySize":5926,"redirectURL":"","_transferSize":6342},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.041,"receive":0.574},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43022.46,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.447Z","time":5.927999999999999,"request":{"method":"GET","url":"http://localhost:5174/_next/static/css/app/layout.css?v=1784630703434","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"style"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630703434"}],"headersSize":737,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/css; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"184e1-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":99553,"mimeType":"text/css; charset=UTF-8","compression":84302,"_sha1":"37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css"},"headersSize":356,"bodySize":15251,"redirectURL":"","_transferSize":15607},"cache":{},"timings":{"dns":0.012,"connect":0.317,"ssl":1.363,"send":0,"wait":2.639,"receive":1.597},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43022.51,"_resourceType":"stylesheet","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.447Z","time":5.867,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/webpack.js?v=1784630703434","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630703434"}],"headersSize":722,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"dc1e-19f8377166c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":369,"bodySize":10547,"redirectURL":"","_transferSize":10916},"cache":{},"timings":{"dns":0.008,"connect":0.323,"ssl":1.385,"send":0,"wait":1.551,"receive":2.6},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43022.53,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.447Z","time":7.7940000000000005,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app-pages-internals.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":734,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"256bc-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":33746,"redirectURL":"","_transferSize":34116},"cache":{},"timings":{"dns":0.001,"connect":0.313,"ssl":1.336,"send":0,"wait":1.524,"receive":4.62},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43022.565,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.447Z","time":9.245,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":733,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"2c9d3-19f8376f06f\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":51283,"redirectURL":"","_transferSize":51653},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.312,"receive":6.933},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43022.594,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.447Z","time":36.664,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":725,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"1c4c9e-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":434806,"redirectURL":"","_transferSize":435177},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.292,"receive":34.372},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43022.608,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.447Z","time":40.748,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/results/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":739,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"20cb55-19f8376f071\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":479485,"redirectURL":"","_transferSize":479856},"cache":{},"timings":{"dns":0.001,"connect":0.255,"ssl":1.277,"send":0,"wait":2.095,"receive":37.12},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43022.579,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.447Z","time":106.297,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/main-app.js?v=1784630703434","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630703434"}],"headersSize":723,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"5ec9be-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":1354462,"redirectURL":"","_transferSize":1354833},"cache":{},"timings":{"dns":0.002,"connect":0.246,"ssl":1.275,"send":0,"wait":1.92,"receive":102.854},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43022.547,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.875Z","time":25.939,"request":{"method":"POST","url":"http://localhost:4000/search","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"216"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":883,"bodySize":216,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"597def754466a83ff4a0afb2047b7e83f4d13f30.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1614"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"64e-6/e08722IYl7oiegpkqeJeoIWr4\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":1614,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ebf7b4f3bdb621897ba227a0a64a9e25ea085abe.json"},"headersSize":989,"bodySize":1614,"redirectURL":"","_transferSize":2603},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":24.121,"receive":1.818},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43508.271,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.874Z","time":14.306999999999999,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"229-ujMX2/6etPsn8xk+wFl2M6VwT6A\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ba3317dbfe9eb4fb27f3193ec0597633a5704fa0.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.315,"receive":1.992},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43508.214,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.874Z","time":8.248,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-ujMX2/6etPsn8xk+wFl2M6VwT6A\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"229-6SwjSQ8nUpWXqtY4abf7dPM1Crg\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"e92c23490f27529597aad63869b7fb74f3350ab8.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.398,"receive":1.85},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43508.234,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.871Z","time":15.711,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_features_support_SupportWidget_tsx.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":772,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"f9fd6-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":233760,"redirectURL":"","_transferSize":234130},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.645,"receive":14.066},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43508.171,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.980Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":-1,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"WebSocket is closed before the connection is established."},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43553.544,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.966Z","time":4.654,"request":{"method":"GET","url":"http://localhost:4000/support/device/unread-count?deviceId=1a14961a-0804-4835-8101-9067cf49fcad","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"deviceId","value":"1a14961a-0804-4835-8101-9067cf49fcad"}],"headersSize":850,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"80"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:03 GMT"},{"name":"ETag","value":"W/\"50-SQ2WYRgdeVfNs/hEPTi3dS/Bfhk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":80,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"490d9661181d7957cdb3f8443d38b7752fc17e19.json"},"headersSize":981,"bodySize":80,"redirectURL":"","_transferSize":1061},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.181,"receive":1.473},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43553.752,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.926Z","time":0.226806640625,"request":{"method":"GET","url":"ws://localhost:5174/_next/webpack-hmr","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"68azkby8CeezuplgVnPDNw=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[],"headersSize":483,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Sec-WebSocket-Accept","value":"MYqM+1KWBeOhJ1sguQY+m4dcRfw="},{"name":"Connection","value":"Upgrade"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"c70ccf8fa13e29ee97aa204b2b37aa80.jsonl"},"headersSize":129,"bodySize":-1,"redirectURL":"","_transferSize":291},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43509.614,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@0450c339a9a703d9459d17d60a8902f9","startedDateTime":"2026-07-21T10:45:03.989Z","time":0.98486328125,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"vJ1LsD7IYc75yN75agFqkA=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Sec-WebSocket-Accept","value":"IwY/I4JcRlMupLQ4nv1Pd+gK8hw="},{"name":"Connection","value":"Upgrade"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Vary","value":"Origin"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"f5e16a9946e7cbdce9793f63525a9c03.jsonl"},"headersSize":235,"bodySize":-1,"redirectURL":"","_transferSize":410},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@c395b7cddfec1aae5674c1f12cc643e1","_monotonicTime":43562.798,"_resourceType":"websocket"}} diff --git a/test-results/.playwright-artifacts-0/traces/842fc11b7ba141cc244f-3f4b4ece503751ab736e-recording5.trace b/test-results/.playwright-artifacts-0/traces/842fc11b7ba141cc244f-3f4b4ece503751ab736e-recording5.trace new file mode 100644 index 000000000..62eda9bc4 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/842fc11b7ba141cc244f-3f4b4ece503751ab736e-recording5.trace @@ -0,0 +1,61 @@ +{"version":8,"type":"context-options","origin":"library","browserName":"chromium","playwrightVersion":"1.61.1","options":{"noDefaultViewport":false,"viewport":{"width":1280,"height":720},"ignoreHTTPSErrors":false,"javaScriptEnabled":true,"bypassCSP":false,"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36","locale":"en-US","offline":false,"deviceScaleFactor":1,"isMobile":false,"hasTouch":false,"colorScheme":"light","acceptDownloads":"accept","baseURL":"http://localhost:5174","serviceWorkers":"allow","selectorEngines":[],"testIdAttributeName":"data-testid","storageState":{"cookies":[],"origins":[{"origin":"http://localhost:5174","localStorage":[{"name":"auth_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"auth_user","value":"{\"iamUserId\":\"11111111-0000-4000-8000-000000000001\",\"passengerId\":\"11111111-0000-4000-8000-000000000001\",\"email\":\"test.passenger@edr.local\",\"phone\":null,\"fullName\":\"Test Passenger\",\"nationality\":null,\"faydaVerified\":false,\"preferredCurrency\":\"USD\",\"createdAt\":\"2026-07-21T10:44:20.904Z\",\"passenger\":{\"id\":\"11111111-0000-4000-8000-000000000001\",\"preferredLanguage\":null,\"loyalty\":{\"tier\":\"BRONZE\",\"pointsBalance\":500,\"lifetimePoints\":0},\"wallet\":{\"balanceMinor\":100000000,\"currency\":\"ETB\"}}}"}]}]}},"platform":"darwin","wallTime":1784630703393,"monotonicTime":42966.317,"sdkLanguage":"javascript","testIdAttributeName":"data-testid","contextId":"browser-context@64bcc7e3b5ad1e61fa6aa388de2d3aba","title":"portal/ua1b-usd-divergence.spec.ts:10 › UA-1b: USD card display fare diverges 100x from the internal baseFareMinor"} +{"type":"before","callId":"call@757","startTime":42967.224,"class":"BrowserContext","method":"newPage","params":{},"stepId":"pw:api@24"} +{"type":"event","time":42999.32,"class":"BrowserContext","method":"page","params":{"pageId":"page@0450c339a9a703d9459d17d60a8902f9"}} +{"type":"after","callId":"call@757","endTime":42999.392,"result":{"page":""}} +{"type":"before","callId":"call@759","startTime":43000.851,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"f9b5578db702be83bba3a5bc85f7c000","phase":"before","event":"response"},"stepId":"pw:api@25","pageId":"page@0450c339a9a703d9459d17d60a8902f9"} +{"type":"before","callId":"call@762","startTime":43000.896,"class":"Frame","method":"goto","params":{"url":"/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","timeout":0,"waitUntil":"load"},"stepId":"pw:api@26","pageId":"page@0450c339a9a703d9459d17d60a8902f9","beforeSnapshot":"before@call@762"} +{"type":"frame-snapshot","snapshot":{"callId":"call@762","snapshotName":"before@call@762","pageId":"page@0450c339a9a703d9459d17d60a8902f9","frameId":"frame@c395b7cddfec1aae5674c1f12cc643e1","frameUrl":"about:blank","html":["HTML",{},["HEAD",{},["BASE",{"href":"about:blank"}]],["BODY"]],"viewport":{"width":1280,"height":720},"timestamp":43001.903,"wallTime":1784630703428,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@762","time":43002.275,"message":"navigating to \"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER\", waiting until \"load\""} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703437.jpeg","width":1280,"height":720,"timestamp":43010.926,"frameSwapWallTime":1784630703436.135} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703463.jpeg","width":1280,"height":720,"timestamp":43037.261,"frameSwapWallTime":1784630703462.416} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703484.jpeg","width":1280,"height":720,"timestamp":43058.04,"frameSwapWallTime":1784630703483.0068} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703496.jpeg","width":1280,"height":720,"timestamp":43070.037,"frameSwapWallTime":1784630703495.07} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703505.jpeg","width":1280,"height":720,"timestamp":43079.295,"frameSwapWallTime":1784630703504.3481} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703519.jpeg","width":1280,"height":720,"timestamp":43093.176,"frameSwapWallTime":1784630703518.18} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703556.jpeg","width":1280,"height":720,"timestamp":43129.483,"frameSwapWallTime":1784630703548.998} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703556.jpeg","width":1280,"height":720,"timestamp":43129.539,"frameSwapWallTime":1784630703549.329} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703556.jpeg","width":1280,"height":720,"timestamp":43130.077,"frameSwapWallTime":1784630703549.938} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703574.jpeg","width":1280,"height":720,"timestamp":43147.42,"frameSwapWallTime":1784630703572.355} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703583.jpeg","width":1280,"height":720,"timestamp":43156.422,"frameSwapWallTime":1784630703581.438} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703592.jpeg","width":1280,"height":720,"timestamp":43165.371,"frameSwapWallTime":1784630703590.386} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703635.jpeg","width":1280,"height":720,"timestamp":43208.463,"frameSwapWallTime":1784630703627.541} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703635.jpeg","width":1280,"height":720,"timestamp":43208.511,"frameSwapWallTime":1784630703628.072} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703635.jpeg","width":1280,"height":720,"timestamp":43208.546,"frameSwapWallTime":1784630703628.389} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703643.jpeg","width":1280,"height":720,"timestamp":43216.949,"frameSwapWallTime":1784630703641.735} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703652.jpeg","width":1280,"height":720,"timestamp":43226.104,"frameSwapWallTime":1784630703650.971} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703661.jpeg","width":1280,"height":720,"timestamp":43235.226,"frameSwapWallTime":1784630703660.0908} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703671.jpeg","width":1280,"height":720,"timestamp":43244.386,"frameSwapWallTime":1784630703669.283} +{"type":"console","messageType":"info","text":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold","args":[{"preview":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools","value":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools"},{"preview":"font-weight:bold","value":"font-weight:bold"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":38559,"columnNumber":16},"time":43245.411,"pageId":"page@0450c339a9a703d9459d17d60a8902f9"} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703687.jpeg","width":1280,"height":720,"timestamp":43261.292,"frameSwapWallTime":1784630703686.2039} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703697.jpeg","width":1280,"height":720,"timestamp":43270.481,"frameSwapWallTime":1784630703695.447} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703706.jpeg","width":1280,"height":720,"timestamp":43279.594,"frameSwapWallTime":1784630703704.404} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703722.jpeg","width":1280,"height":720,"timestamp":43295.965,"frameSwapWallTime":1784630703720.7861} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703731.jpeg","width":1280,"height":720,"timestamp":43304.702,"frameSwapWallTime":1784630703729.6309} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703740.jpeg","width":1280,"height":720,"timestamp":43313.806,"frameSwapWallTime":1784630703738.772} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703749.jpeg","width":1280,"height":720,"timestamp":43322.912,"frameSwapWallTime":1784630703747.917} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703765.jpeg","width":1280,"height":720,"timestamp":43339.26,"frameSwapWallTime":1784630703764.073} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703774.jpeg","width":1280,"height":720,"timestamp":43348.19,"frameSwapWallTime":1784630703773.0989} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703784.jpeg","width":1280,"height":720,"timestamp":43357.512,"frameSwapWallTime":1784630703782.4631} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703800.jpeg","width":1280,"height":720,"timestamp":43373.929,"frameSwapWallTime":1784630703798.736} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703809.jpeg","width":1280,"height":720,"timestamp":43382.899,"frameSwapWallTime":1784630703807.881} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703818.jpeg","width":1280,"height":720,"timestamp":43391.725,"frameSwapWallTime":1784630703816.652} +{"type":"after","callId":"call@762","endTime":43507.692,"result":{"response":""},"afterSnapshot":"after@call@762"} +{"type":"console","messageType":"error","text":"Warning: Prop `%s` did not match. Server: %s Client: %s%s nonce \"\" \"ZjFlYzkzY2MtYmNhMC00NDIxLWJmNmQtY2EzNWM1ZjQzZTE5\" \n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","args":[{"preview":"Warning: Prop `%s` did not match. Server: %s Client: %s%s","value":"Warning: Prop `%s` did not match. Server: %s Client: %s%s"},{"preview":"nonce","value":"nonce"},{"preview":"\"\"","value":"\"\""},{"preview":"\"ZjFlYzkzY2MtYmNhMC00NDIxLWJmNmQtY2EzNWM1ZjQzZTE5\"","value":"\"ZjFlYzkzY2MtYmNhMC00NDIxLWJmNmQtY2EzNWM1ZjQzZTE5\""},{"preview":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","value":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js","lineNumber":32,"columnNumber":21},"time":43507.939,"pageId":"page@0450c339a9a703d9459d17d60a8902f9"} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703935.jpeg","width":1280,"height":720,"timestamp":43508.532,"frameSwapWallTime":1784630703910.75} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703935.jpeg","width":1280,"height":720,"timestamp":43509.042,"frameSwapWallTime":1784630703911.9202} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703935.jpeg","width":1280,"height":720,"timestamp":43509.113,"frameSwapWallTime":1784630703912.303} +{"type":"after","callId":"call@759","endTime":43510.129} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703941.jpeg","width":1280,"height":720,"timestamp":43515.027,"frameSwapWallTime":1784630703939.75} +{"type":"frame-snapshot","snapshot":{"callId":"call@762","snapshotName":"after@call@762","pageId":"page@0450c339a9a703d9459d17d60a8902f9","frameId":"frame@c395b7cddfec1aae5674c1f12cc643e1","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},["HEAD",{},["BASE",{"href":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"}],["META",{"charset":"utf-8"}],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["LINK",{"rel":"stylesheet","href":"/_next/static/css/app/layout.css?v=1784630703434","data-precedence":"next_static/css/app/layout.css"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},["A",{"class":"flex items-center px-5 h-20 flex-shrink-0 hover:opacity-80 transition-opacity","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-16 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-house w-5 h-5","aria-hidden":"true"},["path",{"d":"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{"d":"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],"Home"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/booking/lookup"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-ticket w-5 h-5","aria-hidden":"true"},["path",{"d":"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{"d":"M13 5v2"}],["path",{"d":"M13 17v2"}],["path",{"d":"M13 11v2"}]],"My Bookings"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/contact"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-phone w-5 h-5","aria-hidden":"true"},["path",{"d":"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],"Contact"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/help"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-question-mark w-5 h-5","aria-hidden":"true"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{"d":"M12 17h.01"}]],"Help"],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},["P",{"class":"px-3 pb-2 text-xs font-semibold uppercase tracking-wide text-gray-200/80"},"Your booking"],["OL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},"Search"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},"2"],["SPAN",{"class":"text-sm text-white font-semibold"},"Results"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"3"],["SPAN",{"class":"text-sm text-white/50"},"Passengers"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"4"],["SPAN",{"class":"text-sm text-white/50"},"Seats"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"5"],["SPAN",{"class":"text-sm text-white/50"},"Review"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"6"],["SPAN",{"class":"text-sm text-white/50"},"Payment"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"7"],["SPAN",{"class":"text-sm text-white/50"},"Done"]]]]],["DIV",{"class":"flex-shrink-0 border-t border-white/15 p-3 space-y-1"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium text-gray-100 hover:bg-white/10 hover:text-white transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-moon w-5 h-5","aria-hidden":"true"},["path",{"d":"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],"Dark mode"],["DIV",{"class":"relative"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2 rounded-lg hover:bg-white/10 transition-colors"},["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full bg-white text-[rgb(20_113_76)] font-semibold text-sm"},"T"],["SPAN",{"class":"flex-1 text-left text-sm font-medium text-white truncate"},"Test Passenger"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-200 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]]]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},["DIV",{"class":"lg:hidden relative bg-[rgb(20_113_76)] dark:bg-gray-900 border-b border-[rgb(16_89_60)] dark:border-gray-800 px-4 h-16 flex items-center flex-shrink-0"},["A",{"class":"flex items-center hover:opacity-80 transition-opacity","aria-label":"Go to home","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-14 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["DIV",{"class":"ml-auto"},["BUTTON",{"class":"p-2 rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors","title":"Current theme: Light. Click to cycle."},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-sun w-5 h-5"},["circle",{"cx":"12","cy":"12","r":"4"}],["path",{"d":"M12 2v2"}],["path",{"d":"M12 20v2"}],["path",{"d":"m4.93 4.93 1.41 1.41"}],["path",{"d":"m17.66 17.66 1.41 1.41"}],["path",{"d":"M2 12h2"}],["path",{"d":"M20 12h2"}],["path",{"d":"m6.34 17.66-1.41 1.41"}],["path",{"d":"m19.07 4.93-1.41 1.41"}]]]]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 invisible"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},"Search"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},"2"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},"Results"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"3"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Passengers"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"4"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Seats"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"5"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Review"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"6"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Payment"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"7"]],["DIV",{"class":"flex-1 h-0.5 invisible"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Done"]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"mb-8"},["BUTTON",{"class":"btn-ghost px-0 py-4 flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Modify search"],["H1",{"class":"section-title"},"Available schedules"],["DIV",{"class":"hidden sm:flex flex-wrap items-center gap-4 text-gray-600 dark:text-gray-400 mt-3"},["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar w-4 h-4"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}]],["SPAN",{},"Thursday, July 23, 2026"]],["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-users w-4 h-4"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["path",{"d":"M22 21v-2a4 4 0 0 0-3-3.87"}],["path",{"d":"M16 3.13a4 4 0 0 1 0 7.75"}]],["SPAN",{},"1"," adult(s), ","0"," ","child(ren)"]]]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg flex items-center justify-center flex-shrink-0"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-5 h-5 text-primary"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]]],["DIV",{},["DIV",{"class":"font-bold text-lg text-gray-900 dark:text-gray-100"},"UI-100"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400"},"UI Test Express"]]],["DIV",{"class":"flex items-center gap-2 md:gap-4"},["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"Jul 23 · Morning"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Alpha"]],["DIV",{"class":"flex-1 min-w-0 flex flex-col items-center"},["DIV",{"class":"flex items-center gap-1 md:gap-2 mb-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]],["SPAN",{},"4h 0m"]],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}]],["DIV",{"class":"flex items-center gap-1 mt-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{},"1"," stops"]]],["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5 flex items-center justify-center gap-1"},["SPAN",{},"Jul 23 · Afternoon"]],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Charlie"]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-1"},"Starting from"],["DIV",{"class":"text-3xl font-bold text-primary"},"USD 12.50"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 mb-4"},"per adult"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Select"]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-100 dark:border-gray-800 flex flex-wrap gap-2"},["SPAN",{"class":"inline-flex items-center gap-1.5 text-xs font-medium px-2.5 py-1 rounded-full bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 flex-shrink-0"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],"Standard Coach",["SPAN",{"class":"font-semibold"},"41 left"]]]]]]]]]]]]],["NEXT-ROUTE-ANNOUNCER",{"style":"position: absolute;"},["template",{"__playwright_shadow_root_":"open"},["DIV",{"aria-live":"assertive","id":"__next-route-announcer__","role":"alert","style":"position: absolute; border: 0px; height: 1px; margin: -1px; padding: 0px; width: 1px; clip: rect(0px, 0px, 0px, 0px); overflow: hidden; white-space: nowrap; overflow-wrap: normal;"}]]]]],"viewport":{"width":1280,"height":720},"timestamp":43516.372,"wallTime":1784630703941,"collectionTime":1.1000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@767","startTime":43517.639,"class":"Response","method":"body","params":{},"stepId":"pw:api@27","pageId":"page@0450c339a9a703d9459d17d60a8902f9"} +{"type":"after","callId":"call@767","endTime":43517.763,"result":{"binary":""}} +{"type":"before","callId":"call@769","startTime":43522.86,"title":"Expect \"toBeVisible\"","class":"Frame","method":"expect","params":{"selector":"internal:text=/USD\\s*12\\.50/ >> nth=0","expression":"to.be.visible","expectedValue":{"value":{"v":"undefined"},"handles":[]},"isNot":false,"timeout":20000},"stepId":"expect@31","pageId":"page@0450c339a9a703d9459d17d60a8902f9","beforeSnapshot":"before@call@769"} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703949.jpeg","width":1280,"height":720,"timestamp":43523.187,"frameSwapWallTime":1784630703946.848} +{"type":"console","messageType":"warning","text":"WebSocket connection to 'ws://localhost:4000/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.","args":[],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/engine.io-client@6.6.5/node_modules/engine.io-client/build/esm/transports/websocket.js","lineNumber":89,"columnNumber":0},"time":43553.656,"pageId":"page@0450c339a9a703d9459d17d60a8902f9"} +{"type":"frame-snapshot","snapshot":{"callId":"call@769","snapshotName":"before@call@769","pageId":"page@0450c339a9a703d9459d17d60a8902f9","frameId":"frame@c395b7cddfec1aae5674c1f12cc643e1","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[1,29]],["BODY",{"class":"font-sans antialiased"},[[1,108]],[[1,293]],[[1,296]],["DIV",{"class":"fixed bottom-6 right-6 z-40 flex flex-col items-end gap-3"},["BUTTON",{"aria-label":"Open support chat","class":"group relative flex items-center gap-2.5 rounded-full p-2 pr-2 text-white transition-transform duration-150 hover:-translate-y-0.5 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-[3px] focus-visible:outline-primary active:translate-y-0 motion-reduce:transition-none motion-reduce:hover:translate-y-0 sm:pr-5","style":"background: linear-gradient(135deg, rgb(20, 113, 76), rgb(30, 140, 96)); box-shadow: rgba(20, 113, 76, 0.4) 0px 10px 28px;"},["SPAN",{"class":"pointer-events-none absolute -inset-1 animate-pulse rounded-full ring-2 ring-primary/50 motion-reduce:animate-none"}],["SPAN",{"class":"relative grid h-[42px] w-[42px] shrink-0 place-items-center rounded-full bg-white/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"22","height":"22","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-headset"},["path",{"d":"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{"d":"M21 16v2a4 4 0 0 1-4 4h-5"}]]],["SPAN",{"class":"relative hidden text-left leading-tight sm:block"},["SPAN",{"class":"block whitespace-nowrap text-sm font-semibold"},"👋 Need help?"],["SPAN",{"class":"block whitespace-nowrap text-[11px] opacity-85"},"Chat with our team"]]]]]],"viewport":{"width":1280,"height":720},"timestamp":43553.783,"wallTime":1784630703969,"collectionTime":3.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@769","time":43554.137,"message":"Expect \"toBeVisible\" with timeout 20000ms"} +{"type":"log","callId":"call@769","time":43554.14,"message":"waiting for getByText(/USD\\s*12\\.50/).first()"} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703981.jpeg","width":1280,"height":720,"timestamp":43555.237,"frameSwapWallTime":1784630703976.171} +{"type":"screencast-frame","pageId":"page@0450c339a9a703d9459d17d60a8902f9","sha1":"page@0450c339a9a703d9459d17d60a8902f9-1784630703982.jpeg","width":1280,"height":720,"timestamp":43555.43,"frameSwapWallTime":1784630703979.1628} +{"type":"after","callId":"call@769","endTime":43565.188,"afterSnapshot":"after@call@769"} +{"type":"frame-snapshot","snapshot":{"callId":"call@769","snapshotName":"after@call@769","pageId":"page@0450c339a9a703d9459d17d60a8902f9","frameId":"frame@c395b7cddfec1aae5674c1f12cc643e1","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[2,29]],["BODY",{"class":"font-sans antialiased"},[[2,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[2,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[2,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[2,264]],["DIV",{"__playwright_target__":"","class":"text-3xl font-bold text-primary"},[[2,265]]],[[2,268]],[[2,270]]]]],[[2,283]]]]]]]]]]]],[[2,296]],[[1,11]]]],"viewport":{"width":1280,"height":720},"timestamp":43566.342,"wallTime":1784630703992,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} diff --git a/test-results/.playwright-artifacts-0/traces/bd9bfd17569dda4206b8-b704d72a755c048e1004-recording6.network b/test-results/.playwright-artifacts-0/traces/bd9bfd17569dda4206b8-b704d72a755c048e1004-recording6.network new file mode 100644 index 000000000..b00ea4f0c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/bd9bfd17569dda4206b8-b704d72a755c048e1004-recording6.network @@ -0,0 +1,54 @@ +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.110Z","time":20.007,"request":{"method":"GET","url":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-Fetch-Dest","value":"document"},{"name":"Sec-Fetch-Mode","value":"navigate"},{"name":"Sec-Fetch-Site","value":"none"},{"name":"Sec-Fetch-User","value":"?1"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"origin","value":"00000000-0000-4000-8000-000000000020"},{"name":"destination","value":"00000000-0000-4000-8000-000000000022"},{"name":"date","value":"2026-07-23"},{"name":"tripType","value":"ONE_WAY"},{"name":"adults","value":"1"},{"name":"children","value":"0"},{"name":"nationality","value":"OTHER"}],"headersSize":673,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/html; charset=utf-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"X-Powered-By","value":"Next.js"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":51409,"mimeType":"text/html; charset=utf-8","compression":41197,"_sha1":"697c4b5c08ebdfc374ecc527ee7e84a14e5ff808.html"},"headersSize":765,"bodySize":10212,"redirectURL":"","_transferSize":10977},"cache":{},"timings":{"dns":0.12,"connect":0.241,"ssl":1.448,"send":0,"wait":15.407,"receive":2.791},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":43684.3,"_resourceType":"document","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.128Z","time":4.319,"request":{"method":"GET","url":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"image"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"url","value":"/edr-logo.png"},{"name":"w","value":"256"},{"name":"q","value":"75"}],"headersSize":763,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"public, max-age=0, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Disposition","value":"inline; filename=\"edr-logo.webp\""},{"name":"Content-Length","value":"5926"},{"name":"Content-Security-Policy","value":"script-src 'none'; frame-src 'none'; sandbox;"},{"name":"Content-Type","value":"image/webp"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Vary","value":"Accept"},{"name":"X-Nextjs-Cache","value":"HIT"}],"content":{"size":5926,"mimeType":"image/webp","compression":0,"_sha1":"d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp"},"headersSize":416,"bodySize":5926,"redirectURL":"","_transferSize":6342},"cache":{},"timings":{"dns":0.005,"connect":0.328,"ssl":1.392,"send":0,"wait":1.297,"receive":1.297},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":43703.864,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.129Z","time":3.727,"request":{"method":"GET","url":"http://localhost:5174/_next/static/css/app/layout.css?v=1784630704116","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"style"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630704116"}],"headersSize":737,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/css; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"184e1-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":99553,"mimeType":"text/css; charset=UTF-8","compression":84302,"_sha1":"37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css"},"headersSize":356,"bodySize":15251,"redirectURL":"","_transferSize":15607},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.276,"receive":1.451},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":43703.897,"_resourceType":"stylesheet","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.129Z","time":5.292,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/webpack.js?v=1784630704116","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630704116"}],"headersSize":722,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"dc1e-19f8377166c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":369,"bodySize":10547,"redirectURL":"","_transferSize":10916},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.802,"receive":3.49},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":43703.916,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.129Z","time":10.707,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app-pages-internals.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":734,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"256bc-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":33746,"redirectURL":"","_transferSize":34116},"cache":{},"timings":{"dns":0.003,"connect":0.466,"ssl":1.5,"send":0,"wait":2.54,"receive":6.198},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":43703.978,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.129Z","time":11.898,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":733,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"2c9d3-19f8376f06f\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":51283,"redirectURL":"","_transferSize":51653},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.357,"receive":8.541},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":43704.007,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.129Z","time":67.37,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":725,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"1c4c9e-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":434806,"redirectURL":"","_transferSize":435177},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.631,"receive":62.739},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":43704.021,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.129Z","time":69.843,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/results/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":739,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"20cb55-19f8376f071\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":479485,"redirectURL":"","_transferSize":479856},"cache":{},"timings":{"dns":0.004,"connect":0.221,"ssl":1.274,"send":0,"wait":3.046,"receive":65.298},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":43703.993,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.129Z","time":140.323,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/main-app.js?v=1784630704116","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630704116"}],"headersSize":723,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"5ec9be-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":1354462,"redirectURL":"","_transferSize":1354833},"cache":{},"timings":{"dns":0.003,"connect":0.541,"ssl":1.567,"send":0,"wait":2.71,"receive":135.502},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":43703.935,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.594Z","time":24.798,"request":{"method":"POST","url":"http://localhost:4000/search","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"216"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":883,"bodySize":216,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"597def754466a83ff4a0afb2047b7e83f4d13f30.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1614"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"64e-fTUXpgBvnuyWJgqxmjKJA9VWGDw\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":1614,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7d3517a6006f9eec96260ab19a328903d556183c.json"},"headersSize":989,"bodySize":1614,"redirectURL":"","_transferSize":2603},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":22.874,"receive":1.924},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44228.392,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.594Z","time":11.57,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"229-dmRXXX3bgk4e5ERUwfMHHLQjceo\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7664575d7ddb824e1ee44454c1f3071cb42371ea.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.371,"receive":2.199},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44228.337,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.594Z","time":7.448,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-dmRXXX3bgk4e5ERUwfMHHLQjceo\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"229-TLLJvKCCTm2p/mgufAbDPVW8W2s\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"4cb2c9bca0824e6da9fe682e7c06c33d55bc5b6b.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.439,"receive":2.009},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44228.354,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.591Z","time":16.053,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_features_support_SupportWidget_tsx.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":772,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"f9fd6-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":233760,"redirectURL":"","_transferSize":234130},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.934,"receive":14.119},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44228.31,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.699Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":-1,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"WebSocket is closed before the connection is established."},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44272.488,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.685Z","time":4.7669999999999995,"request":{"method":"GET","url":"http://localhost:4000/support/device/unread-count?deviceId=120d525b-c9d3-45da-851f-017769b227a2","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"deviceId","value":"120d525b-c9d3-45da-851f-017769b227a2"}],"headersSize":850,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"80"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:04 GMT"},{"name":"ETag","value":"W/\"50-MxE98xcen2c5UvQ2iHerifEggJk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":80,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"33113df3171e9f673952f4368877ab89f1208099.json"},"headersSize":981,"bodySize":80,"redirectURL":"","_transferSize":1061},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.464,"receive":1.303},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44272.629,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.204Z","time":9.414,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=br3vi","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22results%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/results"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"br3vi"}],"headersSize":1013,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"a5a2bb1a5b49246f969011b22df0d171d298ab95.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.591,"receive":0.823},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44780.448,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.222Z","time":7.798,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=n2i48","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"n2i48"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.798,"receive":-1},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44795.708,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.231Z","time":16.666999999999998,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/auth-check/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":742,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"ETag","value":"W/\"ed732-19f8376f656\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":254272,"redirectURL":"","_transferSize":254642},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.89,"receive":14.777},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44804.912,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.278Z","time":9.696,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=3ko94","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/auth-check"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ko94"}],"headersSize":858,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"113ef7bc1ddbb9932f87ab52b1c6c6d273a48c10.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.95,"receive":0.746},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44859.159,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.279Z","time":8.728,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-TLLJvKCCTm2p/mgufAbDPVW8W2s\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"ETag","value":"W/\"229-OTOKUL6mRVxffnAX5+sW06bl1Cg\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"39338a50bea6455c5f7e7017e7eb16d3a6e5d428.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.309,"receive":0.419},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44859.19,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.279Z","time":12.029,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-OTOKUL6mRVxffnAX5+sW06bl1Cg\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"ETag","value":"W/\"229-wGQu7uxTu0aWSIPlMZNfymSjmQY\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"c0642eeeec53bb46964883e531935fca64a39906.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.645,"receive":0.384},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44860.346,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.290Z","time":15.016,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=xc7gl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"xc7gl"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":15.016,"receive":-1},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44863.926,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.306Z","time":32.192,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/passengers/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":581,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"ETag","value":"W/\"216ea9-19f8376f7db\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":478257,"redirectURL":"","_transferSize":478628},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.71,"receive":30.482},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44880.044,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.402Z","time":5.849,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":842,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"ETag","value":"W/\"90-2X6/QPGVZWQcqBgCTBfNLAJ8OjE\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"d97ebf40f19565641ca818024c17cd2c027c3a31.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.468,"receive":1.381},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":45002.6,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:05.402Z","time":6.885,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"90-2X6/QPGVZWQcqBgCTBfNLAJ8OjE\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":893,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:05 GMT"},{"name":"ETag","value":"W/\"90-c2G2u5iQoxZZRLwAqwAeErafDM0\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7361b6bb9890a3165944bc00ab001e12b69f0ccd.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.535,"receive":1.35},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":45002.629,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:06.211Z","time":4.5089999999999995,"request":{"method":"POST","url":"http://localhost:4000/passengers/save-details","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"378"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":900,"bodySize":378,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"d900fec9b1aba6cbe47020c214405316f7fa6fcd.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"363"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:06 GMT"},{"name":"ETag","value":"W/\"16b-6+3vR5NC1fNK16SDZEXzRMeDqwk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":363,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ebedef479342d5f34ad7a4836445f344c783ab09.json"},"headersSize":988,"bodySize":363,"redirectURL":"","_transferSize":1351},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.131,"receive":1.378},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":45785.768,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:06.217Z","time":9.034,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=3ufbl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/passengers"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ufbl"}],"headersSize":853,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:06 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":111,"mimeType":"text/x-component","compression":0,"_sha1":"3ba650e38c01b7f4dba7c59a8ac235a4f5802b22.htc"},"headersSize":734,"bodySize":119,"redirectURL":"","_transferSize":853},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.272,"receive":0.762},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":45792.876,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:06.228Z","time":9.275,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=1ivgy","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1ivgy"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:06 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.275,"receive":-1},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":45802.051,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:06.238Z","time":31.634999999999998,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/seats/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":576,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:06 GMT"},{"name":"ETag","value":"W/\"1f96a9-19f8376ffca\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:21 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":484983,"redirectURL":"","_transferSize":485354},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.734,"receive":29.901},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":45812.563,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:06.326Z","time":10.868,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101?coachTypeId=00000000-0000-4000-8000-000000000001&journeyDirection=ONE_WAY&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"coachTypeId","value":"00000000-0000-4000-8000-000000000001"},{"name":"journeyDirection","value":"ONE_WAY"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"}],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9422"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:06 GMT"},{"name":"ETag","value":"W/\"24ce-+l7VraSdXo7WNdb14LAwajCl0uk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9422,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"fa5ed5ada49d5e8ed635d6f5e0b0306a30a5d2e9.json"},"headersSize":985,"bodySize":9422,"redirectURL":"","_transferSize":10407},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.615,"receive":1.253},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":45926.509,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:07.192Z","time":25.201999999999998,"request":{"method":"POST","url":"http://localhost:4000/seats/hold","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"304"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":304,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"225e3a7d848baed8b1d780122053a599ece14f75.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"941"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:07 GMT"},{"name":"ETag","value":"W/\"3ad-uEsoppvWY3uBQvohM1nEMHgJwJw\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":941,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"b84b28a69bd6637b8142fa213359c4307809c09c.json"},"headersSize":988,"bodySize":941,"redirectURL":"","_transferSize":1929},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":23.689,"receive":1.513},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":46767.085,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:07.220Z","time":8.617,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=11o05","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/seats"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"11o05"}],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:07 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":113,"mimeType":"text/x-component","compression":0,"_sha1":"efc18e093e9560b1f05c3bd786098516c99407f5.htc"},"headersSize":734,"bodySize":120,"redirectURL":"","_transferSize":854},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.806,"receive":0.811},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":46797.797,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:07.231Z","time":8.632,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=dcucj","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"dcucj"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:07 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.632,"receive":-1},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":46804.922,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:07.241Z","time":28.46,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/review/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":572,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:07 GMT"},{"name":"ETag","value":"W/\"1b5bdb-19f8377031c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:22 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":413299,"redirectURL":"","_transferSize":413670},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.702,"receive":26.758},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":46814.706,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:07.318Z","time":12.224,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9417"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:07 GMT"},{"name":"ETag","value":"W/\"24c9-5zY6rQLpak3K4WCdoaBqn/xXILA\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9417,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"e7363aad02e96a4dcae1609da1a06a9ffc5720b0.json"},"headersSize":985,"bodySize":9417,"redirectURL":"","_transferSize":10402},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.455,"receive":1.769},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":46913.415,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:07.318Z","time":4.881,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:07 GMT"},{"name":"ETag","value":"W/\"2f7-Uo1WGKN/HnNidx68u8DQruDqc2Y\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"528d5618a37f1e7362771ebcbbc0d0aee0ea7366.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.935,"receive":1.946},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":46913.441,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:07.318Z","time":11.416,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"24c9-5zY6rQLpak3K4WCdoaBqn/xXILA\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":926,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9417"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:07 GMT"},{"name":"ETag","value":"W/\"24c9-BTt44sH7Mh7N3xoGxmAGkITrT0g\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9417,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"053b78e2c1fb321ecddf1a06c660069084eb4f48.json"},"headersSize":985,"bodySize":9417,"redirectURL":"","_transferSize":10402},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.41,"receive":2.006},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":46913.461,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:07.336Z","time":31.501,"request":{"method":"GET","url":"http://localhost:4000/search/fare-breakdown?scheduleId=00000000-0000-4000-8000-000000000101&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022&passengers=%5B%7B%22passengerName%22%3A%22Adult+1%22%2C%22dateOfBirth%22%3A%221990-06-15%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000011%22%2C%22nationality%22%3A%22OTHER%22%7D%5D&displayCurrency=USD","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"scheduleId","value":"00000000-0000-4000-8000-000000000101"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"},{"name":"passengers","value":"[{\"passengerName\":\"Adult 1\",\"dateOfBirth\":\"1990-06-15\",\"seatClassId\":\"00000000-0000-4000-8000-000000000011\",\"nationality\":\"OTHER\"}]"},{"name":"displayCurrency","value":"USD"}],"headersSize":844,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"721"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:07 GMT"},{"name":"ETag","value":"W/\"2d1-cCYW9FpF7dU2O9iWCEAoaH924ig\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":721,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"702616f45a45edd5363bd896084028687f76e228.json"},"headersSize":983,"bodySize":721,"redirectURL":"","_transferSize":1704},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":30.372,"receive":1.129},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":46914.376,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:08.192Z","time":5.614,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"2f7-Uo1WGKN/HnNidx68u8DQruDqc2Y\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:08 GMT"},{"name":"ETag","value":"W/\"2f7-mHhMne8rtcqsonOsZ2g+TTs91Qc\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"98784c9def2bb5caaca273ac67683e4d3b3dd507.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.999,"receive":0.615},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":47767.043,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:08.201Z","time":31.079,"request":{"method":"POST","url":"http://localhost:4000/bookings","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"666"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":885,"bodySize":666,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"dee9c1beb9b6a9e20e35210bdf00af37aa8beea0.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"3550"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:08 GMT"},{"name":"ETag","value":"W/\"dde-ZUD6cQ/dYRLRREnKIA0t0dMRCjE\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":3550,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"6540fa710fdd6112d14449ca200d2dd1d3110a31.json"},"headersSize":989,"bodySize":3550,"redirectURL":"","_transferSize":4539},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":28.536,"receive":2.543},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":47775.405,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:08.335Z","time":8.359,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=1uobt","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/review"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1uobt"}],"headersSize":843,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:08 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":115,"mimeType":"text/x-component","compression":0,"_sha1":"de07c86cc64bda73e654d27a199f6610c0e4ebad.htc"},"headersSize":734,"bodySize":116,"redirectURL":"","_transferSize":850},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.72,"receive":0.639},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":47909.11,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:08.345Z","time":7.471,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=rvb09","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22payment%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"rvb09"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:08 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.471,"receive":-1},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":47918.985,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:08.353Z","time":28.863,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/payment/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":574,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:08 GMT"},{"name":"ETag","value":"W/\"1c5af1-19f83770767\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:23 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":435498,"redirectURL":"","_transferSize":435869},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.889,"receive":26.974},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":47927.534,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:08.432Z","time":3.6239999999999997,"request":{"method":"GET","url":"http://localhost:4000/payments/methods","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"593"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:08 GMT"},{"name":"ETag","value":"W/\"251-yfGZNw/3ox9UuWpgfM0sLKzodxE\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":593,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"c9f199370ff7a31f54b96a607ccd2c2cace87711.json"},"headersSize":983,"bodySize":593,"redirectURL":"","_transferSize":1576},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.433,"receive":1.191},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":48027.91,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:09.277Z","time":5.098,"request":{"method":"GET","url":"http://localhost:4000/payments/booking-amount?bookingId=0ed21f92-0885-4933-963e-9a64f2efbfc5¤cy=ETB","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"bookingId","value":"0ed21f92-0885-4933-963e-9a64f2efbfc5"},{"name":"currency","value":"ETB"}],"headersSize":846,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"147"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:09 GMT"},{"name":"ETag","value":"W/\"93-uIygxykmCAqBbaSqB63eOnjSG5M\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":147,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"b88ca0c72926080a816da4aa07adde3a78d21b93.json"},"headersSize":982,"bodySize":147,"redirectURL":"","_transferSize":1129},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.84,"receive":1.258},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":48852.23,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:09.329Z","time":46.510999999999996,"request":{"method":"POST","url":"http://localhost:4000/payments/initiate","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":894,"bodySize":144,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"734a2a6513ae195c0ad2785171f03f98910db9a3.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"135"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:09 GMT"},{"name":"ETag","value":"W/\"87-zgAGJuJ/Jo5fvRB3tflx3h1FKIY\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":135,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ce000626e27f268e5fbd1077b5f971de1d452886.json"},"headersSize":987,"bodySize":135,"redirectURL":"","_transferSize":1122},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":45.303,"receive":1.208},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":48903.537,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:11.377Z","time":8.238,"request":{"method":"GET","url":"http://localhost:5174/booking/confirmation?_rsc=gwlg9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22payment%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/payment"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"gwlg9"}],"headersSize":851,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:11 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":125,"mimeType":"text/x-component","compression":0,"_sha1":"a072c05619b7cf3cbedc053f6c992794b91fee45.htc"},"headersSize":734,"bodySize":126,"redirectURL":"","_transferSize":860},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.39,"receive":0.848},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":50953.123,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:11.387Z","time":8.867,"request":{"method":"GET","url":"http://localhost:5174/booking/confirmation?_rsc=180sd","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22confirmation%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"180sd"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:11 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.867,"receive":-1},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":50960.796,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:11.397Z","time":26.612,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/confirmation/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":580,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:11 GMT"},{"name":"ETag","value":"W/\"1b9b35-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":425290,"redirectURL":"","_transferSize":425661},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.718,"receive":24.894},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":50970.7,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:11.464Z","time":13.298,"request":{"method":"GET","url":"http://localhost:4000/bookings/0ed21f92-0885-4933-963e-9a64f2efbfc5","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":868,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"6350"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:11 GMT"},{"name":"ETag","value":"W/\"18ce-nyroThkKCC5uLbnhcWPtcYIKAWc\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":6350,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"9f2ae84e190a082e6e2db9e17163ed71820a0167.json"},"headersSize":985,"bodySize":6350,"redirectURL":"","_transferSize":7335},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.318,"receive":0.98},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":51066.138,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.645Z","time":6272.35498046875,"request":{"method":"GET","url":"ws://localhost:5174/_next/webpack-hmr","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"3uEasG9+2MFRqD7f3Kng0w=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[],"headersSize":483,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Sec-WebSocket-Accept","value":"wvR3HUgW8wQhyoNPMjLOPaBP9fQ="},{"name":"Connection","value":"Upgrade"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"46c3ec03f8bdd79ff078056619ab7fd2.jsonl"},"headersSize":129,"bodySize":-1,"redirectURL":"","_transferSize":291},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44229.416,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:04.709Z","time":0.760986328125,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"F5i5wuyY9gcmPCokMvJFwA=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Sec-WebSocket-Accept","value":"pjWIXPWCCVjztI80JpVjqBXTZwY="},{"name":"Connection","value":"Upgrade"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Vary","value":"Origin"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"0cc241583d136fefac81958581bed6db.jsonl"},"headersSize":235,"bodySize":-1,"redirectURL":"","_transferSize":410},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":44282.761,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:11.463Z","time":47.141000000000005,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_lib_generate-voucher_ts.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":602,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:11 GMT"},{"name":"ETag","value":"W/\"23425a-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8"},"headersSize":371,"bodySize":653430,"redirectURL":"","_transferSize":653801},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.682,"receive":45.459},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":51066.103,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@442ebe9c25a81aa564f023f3b02d20f5","startedDateTime":"2026-07-21T10:45:11.463Z","time":47.141000000000005,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_lib_generate-voucher_ts.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":602,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:45:11 GMT"},{"name":"ETag","value":"W/\"23425a-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":653430,"redirectURL":"","_transferSize":653801},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.682,"receive":45.459},"_frameref":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","_monotonicTime":51066.103,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} diff --git a/test-results/.playwright-artifacts-0/traces/bd9bfd17569dda4206b8-b704d72a755c048e1004-recording6.trace b/test-results/.playwright-artifacts-0/traces/bd9bfd17569dda4206b8-b704d72a755c048e1004-recording6.trace new file mode 100644 index 000000000..b1a6133f6 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/bd9bfd17569dda4206b8-b704d72a755c048e1004-recording6.trace @@ -0,0 +1,911 @@ +{"version":8,"type":"context-options","origin":"library","browserName":"chromium","playwrightVersion":"1.61.1","options":{"noDefaultViewport":false,"viewport":{"width":1280,"height":720},"ignoreHTTPSErrors":false,"javaScriptEnabled":true,"bypassCSP":false,"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36","locale":"en-US","offline":false,"deviceScaleFactor":1,"isMobile":false,"hasTouch":false,"colorScheme":"light","acceptDownloads":"accept","baseURL":"http://localhost:5174","serviceWorkers":"allow","selectorEngines":[],"testIdAttributeName":"data-testid","storageState":{"cookies":[],"origins":[{"origin":"http://localhost:5174","localStorage":[{"name":"auth_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"auth_user","value":"{\"iamUserId\":\"11111111-0000-4000-8000-000000000001\",\"passengerId\":\"11111111-0000-4000-8000-000000000001\",\"email\":\"test.passenger@edr.local\",\"phone\":null,\"fullName\":\"Test Passenger\",\"nationality\":null,\"faydaVerified\":false,\"preferredCurrency\":\"USD\",\"createdAt\":\"2026-07-21T10:44:20.904Z\",\"passenger\":{\"id\":\"11111111-0000-4000-8000-000000000001\",\"preferredLanguage\":null,\"loyalty\":{\"tier\":\"BRONZE\",\"pointsBalance\":500,\"lifetimePoints\":0},\"wallet\":{\"balanceMinor\":100000000,\"currency\":\"ETB\"}}}"}]}]}},"platform":"darwin","wallTime":1784630704074,"monotonicTime":43647.433,"sdkLanguage":"javascript","testIdAttributeName":"data-testid","contextId":"browser-context@578a0a8c9c7135b9117720239f4eb443","title":"portal/ua2-usd-booking.spec.ts:17 › UA-2: USD booking — reviewed total (ETB) and stored total (USD) diverge 100x"} +{"type":"before","callId":"call@780","startTime":43648.294,"class":"BrowserContext","method":"newPage","params":{},"stepId":"pw:api@24"} +{"type":"event","time":43681.053,"class":"BrowserContext","method":"page","params":{"pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"}} +{"type":"after","callId":"call@780","endTime":43681.101,"result":{"page":""}} +{"type":"before","callId":"call@782","startTime":43682.416,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"836e9c0d512b3961f3fe17cbcb0614f4","phase":"before","event":"response"},"stepId":"pw:api@25","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"before","callId":"call@785","startTime":43682.455,"class":"Frame","method":"goto","params":{"url":"/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","timeout":0,"waitUntil":"load"},"stepId":"pw:api@26","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@785"} +{"type":"frame-snapshot","snapshot":{"callId":"call@785","snapshotName":"before@call@785","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"about:blank","html":["HTML",{},["HEAD",{},["BASE",{"href":"about:blank"}]],["BODY"]],"viewport":{"width":1280,"height":720},"timestamp":43683.641,"wallTime":1784630704110,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@785","time":43684.015,"message":"navigating to \"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER\", waiting until \"load\""} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704112.jpeg","width":1280,"height":720,"timestamp":43686.252,"frameSwapWallTime":1784630704111.475} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704167.jpeg","width":1280,"height":720,"timestamp":43741.189,"frameSwapWallTime":1784630704162.575} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704176.jpeg","width":1280,"height":720,"timestamp":43749.854,"frameSwapWallTime":1784630704173.636} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704186.jpeg","width":1280,"height":720,"timestamp":43759.941,"frameSwapWallTime":1784630704184.53} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704197.jpeg","width":1280,"height":720,"timestamp":43771.276,"frameSwapWallTime":1784630704195.322} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704207.jpeg","width":1280,"height":720,"timestamp":43780.409,"frameSwapWallTime":1784630704205.4639} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704216.jpeg","width":1280,"height":720,"timestamp":43789.949,"frameSwapWallTime":1784630704215.0159} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704226.jpeg","width":1280,"height":720,"timestamp":43799.612,"frameSwapWallTime":1784630704224.498} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704270.jpeg","width":1280,"height":720,"timestamp":43843.706,"frameSwapWallTime":1784630704263.339} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704270.jpeg","width":1280,"height":720,"timestamp":43843.761,"frameSwapWallTime":1784630704263.898} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704270.jpeg","width":1280,"height":720,"timestamp":43843.797,"frameSwapWallTime":1784630704264.322} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704272.jpeg","width":1280,"height":720,"timestamp":43845.581,"frameSwapWallTime":1784630704270.578} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704289.jpeg","width":1280,"height":720,"timestamp":43862.491,"frameSwapWallTime":1784630704287.323} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704298.jpeg","width":1280,"height":720,"timestamp":43871.751,"frameSwapWallTime":1784630704296.805} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704307.jpeg","width":1280,"height":720,"timestamp":43881.177,"frameSwapWallTime":1784630704306.186} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704352.jpeg","width":1280,"height":720,"timestamp":43925.475,"frameSwapWallTime":1784630704344.562} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704352.jpeg","width":1280,"height":720,"timestamp":43925.535,"frameSwapWallTime":1784630704344.949} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704352.jpeg","width":1280,"height":720,"timestamp":43925.575,"frameSwapWallTime":1784630704345.273} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704362.jpeg","width":1280,"height":720,"timestamp":43935.448,"frameSwapWallTime":1784630704360.2341} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704378.jpeg","width":1280,"height":720,"timestamp":43952.111,"frameSwapWallTime":1784630704376.965} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704388.jpeg","width":1280,"height":720,"timestamp":43961.739,"frameSwapWallTime":1784630704386.8079} +{"type":"console","messageType":"info","text":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold","args":[{"preview":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools","value":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools"},{"preview":"font-weight:bold","value":"font-weight:bold"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":38559,"columnNumber":16},"time":43966.435,"pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704397.jpeg","width":1280,"height":720,"timestamp":43971.093,"frameSwapWallTime":1784630704396.03} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704407.jpeg","width":1280,"height":720,"timestamp":43980.436,"frameSwapWallTime":1784630704405.295} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704416.jpeg","width":1280,"height":720,"timestamp":43989.851,"frameSwapWallTime":1784630704414.6309} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704433.jpeg","width":1280,"height":720,"timestamp":44006.921,"frameSwapWallTime":1784630704431.79} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704442.jpeg","width":1280,"height":720,"timestamp":44016.297,"frameSwapWallTime":1784630704441.105} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704452.jpeg","width":1280,"height":720,"timestamp":44025.609,"frameSwapWallTime":1784630704450.41} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704461.jpeg","width":1280,"height":720,"timestamp":44034.784,"frameSwapWallTime":1784630704459.77} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704478.jpeg","width":1280,"height":720,"timestamp":44051.345,"frameSwapWallTime":1784630704476.1602} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704491.jpeg","width":1280,"height":720,"timestamp":44064.573,"frameSwapWallTime":1784630704489.447} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704500.jpeg","width":1280,"height":720,"timestamp":44074.05,"frameSwapWallTime":1784630704498.865} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704515.jpeg","width":1280,"height":720,"timestamp":44088.825,"frameSwapWallTime":1784630704513.651} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704520.jpeg","width":1280,"height":720,"timestamp":44094.274,"frameSwapWallTime":1784630704519.187} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704528.jpeg","width":1280,"height":720,"timestamp":44101.6,"frameSwapWallTime":1784630704526.628} +{"type":"after","callId":"call@785","endTime":44227.938,"result":{"response":""},"afterSnapshot":"after@call@785"} +{"type":"console","messageType":"error","text":"Warning: Prop `%s` did not match. Server: %s Client: %s%s nonce \"\" \"YzJmZjQwZjctZTM3Zi00NWUwLTgzOWMtNjlmOGJkY2Y5NTUz\" \n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","args":[{"preview":"Warning: Prop `%s` did not match. Server: %s Client: %s%s","value":"Warning: Prop `%s` did not match. Server: %s Client: %s%s"},{"preview":"nonce","value":"nonce"},{"preview":"\"\"","value":"\"\""},{"preview":"\"YzJmZjQwZjctZTM3Zi00NWUwLTgzOWMtNjlmOGJkY2Y5NTUz\"","value":"\"YzJmZjQwZjctZTM3Zi00NWUwLTgzOWMtNjlmOGJkY2Y5NTUz\""},{"preview":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","value":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js","lineNumber":32,"columnNumber":21},"time":44228.163,"pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704655.jpeg","width":1280,"height":720,"timestamp":44228.615,"frameSwapWallTime":1784630704630.348} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704655.jpeg","width":1280,"height":720,"timestamp":44228.827,"frameSwapWallTime":1784630704631.564} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704655.jpeg","width":1280,"height":720,"timestamp":44229.144,"frameSwapWallTime":1784630704631.9631} +{"type":"after","callId":"call@782","endTime":44229.857} +{"type":"frame-snapshot","snapshot":{"callId":"call@785","snapshotName":"after@call@785","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},["HEAD",{},["BASE",{"href":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER"}],["META",{"charset":"utf-8"}],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["LINK",{"rel":"stylesheet","href":"/_next/static/css/app/layout.css?v=1784630704116","data-precedence":"next_static/css/app/layout.css"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},["A",{"class":"flex items-center px-5 h-20 flex-shrink-0 hover:opacity-80 transition-opacity","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-16 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-house w-5 h-5","aria-hidden":"true"},["path",{"d":"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{"d":"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],"Home"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/booking/lookup"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-ticket w-5 h-5","aria-hidden":"true"},["path",{"d":"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{"d":"M13 5v2"}],["path",{"d":"M13 17v2"}],["path",{"d":"M13 11v2"}]],"My Bookings"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/contact"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-phone w-5 h-5","aria-hidden":"true"},["path",{"d":"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],"Contact"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/help"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-question-mark w-5 h-5","aria-hidden":"true"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{"d":"M12 17h.01"}]],"Help"],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},["P",{"class":"px-3 pb-2 text-xs font-semibold uppercase tracking-wide text-gray-200/80"},"Your booking"],["OL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},"Search"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},"2"],["SPAN",{"class":"text-sm text-white font-semibold"},"Results"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"3"],["SPAN",{"class":"text-sm text-white/50"},"Passengers"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"4"],["SPAN",{"class":"text-sm text-white/50"},"Seats"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"5"],["SPAN",{"class":"text-sm text-white/50"},"Review"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"6"],["SPAN",{"class":"text-sm text-white/50"},"Payment"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"7"],["SPAN",{"class":"text-sm text-white/50"},"Done"]]]]],["DIV",{"class":"flex-shrink-0 border-t border-white/15 p-3 space-y-1"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium text-gray-100 hover:bg-white/10 hover:text-white transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-moon w-5 h-5","aria-hidden":"true"},["path",{"d":"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],"Dark mode"],["DIV",{"class":"relative"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2 rounded-lg hover:bg-white/10 transition-colors"},["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full bg-white text-[rgb(20_113_76)] font-semibold text-sm"},"T"],["SPAN",{"class":"flex-1 text-left text-sm font-medium text-white truncate"},"Test Passenger"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-200 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]]]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},["DIV",{"class":"lg:hidden relative bg-[rgb(20_113_76)] dark:bg-gray-900 border-b border-[rgb(16_89_60)] dark:border-gray-800 px-4 h-16 flex items-center flex-shrink-0"},["A",{"class":"flex items-center hover:opacity-80 transition-opacity","aria-label":"Go to home","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-14 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["DIV",{"class":"ml-auto"},["BUTTON",{"class":"p-2 rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors","title":"Current theme: Light. Click to cycle."},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-sun w-5 h-5"},["circle",{"cx":"12","cy":"12","r":"4"}],["path",{"d":"M12 2v2"}],["path",{"d":"M12 20v2"}],["path",{"d":"m4.93 4.93 1.41 1.41"}],["path",{"d":"m17.66 17.66 1.41 1.41"}],["path",{"d":"M2 12h2"}],["path",{"d":"M20 12h2"}],["path",{"d":"m6.34 17.66-1.41 1.41"}],["path",{"d":"m19.07 4.93-1.41 1.41"}]]]]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 invisible"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},"Search"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},"2"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},"Results"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"3"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Passengers"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"4"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Seats"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"5"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Review"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"6"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Payment"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"7"]],["DIV",{"class":"flex-1 h-0.5 invisible"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Done"]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"mb-8"},["BUTTON",{"class":"btn-ghost px-0 py-4 flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Modify search"],["H1",{"class":"section-title"},"Available schedules"],["DIV",{"class":"hidden sm:flex flex-wrap items-center gap-4 text-gray-600 dark:text-gray-400 mt-3"},["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar w-4 h-4"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}]],["SPAN",{},"Thursday, July 23, 2026"]],["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-users w-4 h-4"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["path",{"d":"M22 21v-2a4 4 0 0 0-3-3.87"}],["path",{"d":"M16 3.13a4 4 0 0 1 0 7.75"}]],["SPAN",{},"1"," adult(s), ","0"," ","child(ren)"]]]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg flex items-center justify-center flex-shrink-0"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-5 h-5 text-primary"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]]],["DIV",{},["DIV",{"class":"font-bold text-lg text-gray-900 dark:text-gray-100"},"UI-100"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400"},"UI Test Express"]]],["DIV",{"class":"flex items-center gap-2 md:gap-4"},["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"Jul 23 · Morning"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Alpha"]],["DIV",{"class":"flex-1 min-w-0 flex flex-col items-center"},["DIV",{"class":"flex items-center gap-1 md:gap-2 mb-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]],["SPAN",{},"4h 0m"]],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}]],["DIV",{"class":"flex items-center gap-1 mt-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{},"1"," stops"]]],["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5 flex items-center justify-center gap-1"},["SPAN",{},"Jul 23 · Afternoon"]],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Charlie"]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-1"},"Starting from"],["DIV",{"class":"text-3xl font-bold text-primary"},"USD 12.50"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 mb-4"},"per adult"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Select"]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-100 dark:border-gray-800 flex flex-wrap gap-2"},["SPAN",{"class":"inline-flex items-center gap-1.5 text-xs font-medium px-2.5 py-1 rounded-full bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 flex-shrink-0"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],"Standard Coach",["SPAN",{"class":"font-semibold"},"41 left"]]]]]]]]]]]]],["NEXT-ROUTE-ANNOUNCER",{"style":"position: absolute;"},["template",{"__playwright_shadow_root_":"open"},["DIV",{"aria-live":"assertive","id":"__next-route-announcer__","role":"alert","style":"position: absolute; border: 0px; height: 1px; margin: -1px; padding: 0px; width: 1px; clip: rect(0px, 0px, 0px, 0px); overflow: hidden; white-space: nowrap; overflow-wrap: normal;"}]]]]],"viewport":{"width":1280,"height":720},"timestamp":44235.349,"wallTime":1784630704660,"collectionTime":1.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704663.jpeg","width":1280,"height":720,"timestamp":44236.457,"frameSwapWallTime":1784630704660.54} +{"type":"before","callId":"call@790","startTime":44236.558,"class":"Response","method":"body","params":{},"stepId":"pw:api@27","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"after","callId":"call@790","endTime":44236.674,"result":{"binary":""}} +{"type":"before","callId":"call@792","startTime":44237.792,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"result-select-btn\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@29","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@792"} +{"type":"console","messageType":"warning","text":"WebSocket connection to 'ws://localhost:4000/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.","args":[],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/engine.io-client@6.6.5/node_modules/engine.io-client/build/esm/transports/websocket.js","lineNumber":89,"columnNumber":0},"time":44272.535,"pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"frame-snapshot","snapshot":{"callId":"call@792","snapshotName":"before@call@792","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[1,29]],["BODY",{"class":"font-sans antialiased"},[[1,108]],[[1,293]],[[1,296]],["DIV",{"class":"fixed bottom-6 right-6 z-40 flex flex-col items-end gap-3"},["BUTTON",{"aria-label":"Open support chat","class":"group relative flex items-center gap-2.5 rounded-full p-2 pr-2 text-white transition-transform duration-150 hover:-translate-y-0.5 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-[3px] focus-visible:outline-primary active:translate-y-0 motion-reduce:transition-none motion-reduce:hover:translate-y-0 sm:pr-5","style":"background: linear-gradient(135deg, rgb(20, 113, 76), rgb(30, 140, 96)); box-shadow: rgba(20, 113, 76, 0.4) 0px 10px 28px;"},["SPAN",{"class":"pointer-events-none absolute -inset-1 animate-pulse rounded-full ring-2 ring-primary/50 motion-reduce:animate-none"}],["SPAN",{"class":"relative grid h-[42px] w-[42px] shrink-0 place-items-center rounded-full bg-white/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"22","height":"22","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-headset"},["path",{"d":"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{"d":"M21 16v2a4 4 0 0 1-4 4h-5"}]]],["SPAN",{"class":"relative hidden text-left leading-tight sm:block"},["SPAN",{"class":"block whitespace-nowrap text-sm font-semibold"},"👋 Need help?"],["SPAN",{"class":"block whitespace-nowrap text-[11px] opacity-85"},"Chat with our team"]]]]]],"viewport":{"width":1280,"height":720},"timestamp":44272.66,"wallTime":1784630704688,"collectionTime":3.100000001490116,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@792","time":44272.795,"message":"waiting for getByTestId('result-select-btn').first()"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704700.jpeg","width":1280,"height":720,"timestamp":44273.794,"frameSwapWallTime":1784630704695.3499} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704702.jpeg","width":1280,"height":720,"timestamp":44276.024,"frameSwapWallTime":1784630704700.0598} +{"type":"log","callId":"call@792","time":44282.948,"message":" locator resolved to "} +{"type":"log","callId":"call@792","time":44283.723,"message":"attempting click action"} +{"type":"log","callId":"call@792","time":44283.74,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704712.jpeg","width":1280,"height":720,"timestamp":44286.024,"frameSwapWallTime":1784630704710.849} +{"type":"log","callId":"call@792","time":44296.029,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@792","time":44296.032,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@792","time":44296.25,"message":" done scrolling"} +{"type":"input","callId":"call@792","point":{"x":1141.5,"y":340},"inputSnapshot":"input@call@792"} +{"type":"frame-snapshot","snapshot":{"callId":"call@792","snapshotName":"input@call@792","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[2,29]],["BODY",{"class":"font-sans antialiased"},[[2,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[2,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[2,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[2,264]],[[2,266]],[[2,268]],["BUTTON",{"__playwright_target__":"","data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[2,269]]]]]],[[2,283]]]]]]]]]]]],[[2,296]],[[1,11]]]],"viewport":{"width":1280,"height":720},"timestamp":44297.32,"wallTime":1784630704723,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@792","time":44298.049,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704727.jpeg","width":1280,"height":720,"timestamp":44300.916,"frameSwapWallTime":1784630704725.6301} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704742.jpeg","width":1280,"height":720,"timestamp":44316.308,"frameSwapWallTime":1784630704741.08} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704751.jpeg","width":1280,"height":720,"timestamp":44324.355,"frameSwapWallTime":1784630704749.218} +{"type":"log","callId":"call@792","time":44336.487,"message":" click action done"} +{"type":"log","callId":"call@792","time":44336.494,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@792","time":44339.015,"message":" navigations have finished"} +{"type":"after","callId":"call@792","endTime":44339.079,"afterSnapshot":"after@call@792"} +{"type":"frame-snapshot","snapshot":{"callId":"call@792","snapshotName":"after@call@792","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[3,29]],["BODY",{"class":"font-sans antialiased"},[[3,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[3,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[3,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"fixed inset-0 z-[99] bg-black/50 backdrop-blur-sm"}],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},["DIV",{"class":"flex items-center justify-between px-6 py-5 border-b border-gray-100 dark:border-gray-800 flex-shrink-0"},["DIV",{},["H2",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"Choose Your Coach"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-3.5 h-3.5"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],["SPAN",{"class":"font-medium"},"UI-100"],["SPAN",{"class":"text-gray-400"},"·"],["SPAN",{},"Alpha"," → ","Charlie"]]],["BUTTON",{"type":"button","class":"w-10 h-10 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800 transition-all","aria-label":"Close"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-gray-300 dark:border-gray-600 group-hover:border-primary/50"}],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-gray-100 dark:bg-gray-700 group-hover:bg-primary/10"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-gray-600 dark:text-gray-400 group-hover:text-primary"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]],["DIV",{"class":"flex-1 min-w-0"},["DIV",{"class":"flex items-start justify-between gap-2 mb-2"},["DIV",{},["H3",{"class":"font-bold text-base text-gray-900 dark:text-white leading-tight"},"Standard Coach"]]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"From"],["SPAN",{"class":"text-2xl font-bold tracking-tight text-gray-900 dark:text-white"},"USD 12.50"]]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-200/60 dark:border-gray-700/60"},["DIV",{"class":"flex items-center justify-between mb-3"},["P",{"class":"text-xs font-bold text-gray-700 dark:text-gray-300 uppercase tracking-wider"},"Class Options"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"41"," seats left"]],["DIV",{"class":"space-y-2.5"},["DIV",{"class":"flex items-center justify-between py-2 px-3 rounded-lg bg-gray-50/80 dark:bg-gray-800/40"},["DIV",{"class":"flex items-center gap-2.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 text-gray-500 dark:text-gray-400"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],["DIV",{"class":"flex flex-col"},["SPAN",{"class":"text-sm font-medium text-gray-700 dark:text-gray-300"},"Economy Regular Intl"],["SPAN",{"class":"text-[11px] font-medium text-gray-400 dark:text-gray-500"},"41 seats left"]]],["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-base font-bold tabular-nums text-gray-900 dark:text-white"},"12.50"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium ml-1"},"USD"]]]]],["P",{"class":"mt-4 pt-3 border-t border-gray-200/60 dark:border-gray-700/60 text-xs text-gray-400 dark:text-gray-500 italic text-center"},"Click to select this coach"]]]]]],["STYLE",{},"\n @keyframes drawer-slide-in{from{transform:translateX(100%)}to{transform:translateX(0)}}\n @keyframes fade-in-up{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}\n @keyframes scale-in{from{transform:scale(0)}to{transform:scale(1)}}\n "],[[3,218]],[[1,6]]]]]]]]],[[3,296]],[[2,11]]]],"viewport":{"width":1280,"height":720},"timestamp":44340.398,"wallTime":1784630704766,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@794","startTime":44341.246,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"coach-option\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@30","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@794"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704768.jpeg","width":1280,"height":720,"timestamp":44341.488,"frameSwapWallTime":1784630704766.0288} +{"type":"frame-snapshot","snapshot":{"callId":"call@794","snapshotName":"before@call@794","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[4,29]],["BODY",{"class":"font-sans antialiased"},[[4,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[4,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,0]],[[1,76]],[[1,78]],[[4,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[4,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[4,264]],[[4,266]],[[4,268]],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[4,269]]]]]],[[4,283]]]]]]]]]]]],[[4,296]],[[3,11]]]],"viewport":{"width":1280,"height":720},"timestamp":44342.008,"wallTime":1784630704768,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@794","time":44342.116,"message":"waiting for getByTestId('coach-option').first()"} +{"type":"log","callId":"call@794","time":44342.996,"message":" locator resolved to
"} +{"type":"log","callId":"call@794","time":44343.253,"message":"attempting click action"} +{"type":"log","callId":"call@794","time":44343.273,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@794","time":44364.389,"message":" element is not stable"} +{"type":"log","callId":"call@794","time":44364.399,"message":"retrying click action"} +{"type":"log","callId":"call@794","time":44364.416,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704792.jpeg","width":1280,"height":720,"timestamp":44365.33,"frameSwapWallTime":1784630704790.442} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704812.jpeg","width":1280,"height":720,"timestamp":44385.326,"frameSwapWallTime":1784630704810.149} +{"type":"log","callId":"call@794","time":44404.23,"message":" element is not stable"} +{"type":"log","callId":"call@794","time":44404.243,"message":"retrying click action"} +{"type":"log","callId":"call@794","time":44404.245,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704831.jpeg","width":1280,"height":720,"timestamp":44405.25,"frameSwapWallTime":1784630704830.24} +{"type":"log","callId":"call@794","time":44425.321,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704852.jpeg","width":1280,"height":720,"timestamp":44425.788,"frameSwapWallTime":1784630704850.46} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704872.jpeg","width":1280,"height":720,"timestamp":44446.246,"frameSwapWallTime":1784630704871.137} +{"type":"log","callId":"call@794","time":44465.382,"message":" element is not stable"} +{"type":"log","callId":"call@794","time":44465.388,"message":"retrying click action"} +{"type":"log","callId":"call@794","time":44465.389,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704893.jpeg","width":1280,"height":720,"timestamp":44466.525,"frameSwapWallTime":1784630704891.439} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704914.jpeg","width":1280,"height":720,"timestamp":44487.837,"frameSwapWallTime":1784630704912.855} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704935.jpeg","width":1280,"height":720,"timestamp":44509.284,"frameSwapWallTime":1784630704934.326} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704957.jpeg","width":1280,"height":720,"timestamp":44530.71,"frameSwapWallTime":1784630704955.824} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630704979.jpeg","width":1280,"height":720,"timestamp":44552.46,"frameSwapWallTime":1784630704977.4028} +{"type":"log","callId":"call@794","time":44567.096,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705000.jpeg","width":1280,"height":720,"timestamp":44573.527,"frameSwapWallTime":1784630704998.6018} +{"type":"log","callId":"call@794","time":44593.992,"message":" element is not stable"} +{"type":"log","callId":"call@794","time":44594.005,"message":"retrying click action"} +{"type":"log","callId":"call@794","time":44594.007,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705021.jpeg","width":1280,"height":720,"timestamp":44595.105,"frameSwapWallTime":1784630705020.081} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705044.jpeg","width":1280,"height":720,"timestamp":44617.621,"frameSwapWallTime":1784630705042.5562} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705065.jpeg","width":1280,"height":720,"timestamp":44638.831,"frameSwapWallTime":1784630705063.8171} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705087.jpeg","width":1280,"height":720,"timestamp":44660.76,"frameSwapWallTime":1784630705085.697} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705105.jpeg","width":1280,"height":720,"timestamp":44679.212,"frameSwapWallTime":1784630705104.2} +{"type":"log","callId":"call@794","time":44695.328,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705124.jpeg","width":1280,"height":720,"timestamp":44697.817,"frameSwapWallTime":1784630705122.8098} +{"type":"log","callId":"call@794","time":44715.251,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@794","time":44715.262,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@794","time":44715.526,"message":" done scrolling"} +{"type":"input","callId":"call@794","point":{"x":330.66,"y":246.25},"inputSnapshot":"input@call@794"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705143.jpeg","width":1280,"height":720,"timestamp":44716.333,"frameSwapWallTime":1784630705141.335} +{"type":"frame-snapshot","snapshot":{"callId":"call@794","snapshotName":"input@call@794","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[5,29]],["BODY",{"class":"font-sans antialiased"},[[5,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[5,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[2,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,26]],[[2,72]]]]]],[[2,78]],[[5,218]],[[1,6]]]]]]]]],[[5,296]],[[4,11]]]],"viewport":{"width":1280,"height":720},"timestamp":44716.83,"wallTime":1784630705143,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@794","time":44717.482,"message":" performing click action"} +{"type":"log","callId":"call@794","time":44722.495,"message":" click action done"} +{"type":"log","callId":"call@794","time":44722.5,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@794","time":44722.653,"message":" navigations have finished"} +{"type":"after","callId":"call@794","endTime":44722.691,"afterSnapshot":"after@call@794"} +{"type":"frame-snapshot","snapshot":{"callId":"call@794","snapshotName":"after@call@794","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[6,29]],["BODY",{"class":"font-sans antialiased"},[[6,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[6,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[6,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[3,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[3,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-primary"},["SPAN",{"class":"w-2.5 h-2.5 rounded-full bg-primary animate-scale-in"}]],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-primary/15 dark:bg-primary/25 shadow-inner"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-primary"},[[3,27]],[[3,28]],[[3,29]],[[3,30]]]],["DIV",{"class":"flex-1 min-w-0"},[[3,36]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},[[3,38]],["SPAN",{"class":"text-2xl font-bold tracking-tight text-primary"},[[3,39]]]]]]],[[3,69]],["BUTTON",{"type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},["SPAN",{},"Continue to Passenger Details"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-right w-4 h-4"},["path",{"d":"M5 12h14"}],["path",{"d":"m12 5 7 7-7 7"}]]]]]]]],[[3,78]],[[6,218]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[6,262]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[6,264]],[[6,266]],[[6,268]],["P",{"class":"text-xs text-primary font-semibold mb-2"},"Standard Coach"," selected"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Change"]]]],[[6,283]]]]]]]]]]]],[[6,296]],[[5,11]]]],"viewport":{"width":1280,"height":720},"timestamp":44723.453,"wallTime":1784630705149,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@796","startTime":44724.05,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"continue-passenger-details\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@31","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@796"} +{"type":"frame-snapshot","snapshot":{"callId":"call@796","snapshotName":"before@call@796","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[7,29]],["BODY",{"class":"font-sans antialiased"},[[7,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[7,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[7,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[4,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[1,1]],[[1,15]]]]]],[[4,78]],[[7,218]],[[1,30]]]]]]]]],[[7,296]],[[6,11]]]],"viewport":{"width":1280,"height":720},"timestamp":44724.599,"wallTime":1784630705151,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@796","time":44724.705,"message":"waiting for getByTestId('continue-passenger-details').first()"} +{"type":"log","callId":"call@796","time":44725.551,"message":" locator resolved to "} +{"type":"log","callId":"call@796","time":44725.889,"message":"attempting click action"} +{"type":"log","callId":"call@796","time":44725.903,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705162.jpeg","width":1280,"height":720,"timestamp":44735.43,"frameSwapWallTime":1784630705160.307} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705180.jpeg","width":1280,"height":720,"timestamp":44754.089,"frameSwapWallTime":1784630705178.941} +{"type":"log","callId":"call@796","time":44772.144,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@796","time":44772.154,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@796","time":44772.714,"message":" done scrolling"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705199.jpeg","width":1280,"height":720,"timestamp":44773.273,"frameSwapWallTime":1784630705198.142} +{"type":"input","callId":"call@796","point":{"x":330.66,"y":346.5},"inputSnapshot":"input@call@796"} +{"type":"frame-snapshot","snapshot":{"callId":"call@796","snapshotName":"input@call@796","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[8,29]],["BODY",{"class":"font-sans antialiased"},[[8,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[8,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[8,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[5,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,1]],["DIV",{"class":"flex flex-col"},[[2,8]],[[5,69]],["BUTTON",{"__playwright_target__":"","type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},[[2,10]],[[2,13]]]]]]]],[[5,78]],[[8,218]],[[2,30]]]]]]]]],[[8,296]],[[7,11]]]],"viewport":{"width":1280,"height":720},"timestamp":44774.223,"wallTime":1784630705200,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@796","time":44774.864,"message":" performing click action"} +{"type":"log","callId":"call@796","time":44780.503,"message":" click action done"} +{"type":"log","callId":"call@796","time":44780.509,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@796","time":44780.721,"message":" navigations have finished"} +{"type":"after","callId":"call@796","endTime":44780.792,"afterSnapshot":"after@call@796"} +{"type":"frame-snapshot","snapshot":{"callId":"call@796","snapshotName":"after@call@796","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=OTHER","doctype":"html","html":[[1,14]],"viewport":{"width":1280,"height":720},"timestamp":44781.415,"wallTime":1784630705208,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@798","startTime":44782.117,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"5e121f5e9a98794b6afd95ef9788f9df","phase":"before","event":""},"stepId":"pw:api@32","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"log","callId":"call@798","time":44782.14,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705219.jpeg","width":1280,"height":720,"timestamp":44792.854,"frameSwapWallTime":1784630705217.8408} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705239.jpeg","width":1280,"height":720,"timestamp":44812.591,"frameSwapWallTime":1784630705237.388} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705258.jpeg","width":1280,"height":720,"timestamp":44832.005,"frameSwapWallTime":1784630705257.0022} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705287.jpeg","width":1280,"height":720,"timestamp":44860.394,"frameSwapWallTime":1784630705281.934} +{"type":"log","callId":"call@798","time":44860.461,"message":" navigated to \"http://localhost:5174/booking/auth-check\""} +{"type":"after","callId":"call@798","endTime":44860.468} +{"type":"before","callId":"call@803","startTime":44860.504,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"7583145a1a78a5224cdc5b7a7d9dc63d","phase":"before","event":""},"stepId":"pw:api@33","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"log","callId":"call@803","time":44860.513,"message":"waiting for navigation until \"load\""} +{"type":"before","callId":"call@806","startTime":44860.526,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue as guest/i]","strict":true,"timeout":15000},"stepId":"pw:api@34","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@806"} +{"type":"frame-snapshot","snapshot":{"callId":"call@806","snapshotName":"before@call@806","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/auth-check","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[10,0]],[[10,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[10,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[10,36]],[[10,43]],[[10,47]],[[10,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[10,55]],["OL",{"class":"space-y-1"},[[10,61]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[10,64]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[10,67]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[10,69]]]],[[10,76]],[[10,81]],[[10,86]],[[10,91]]]]],[[10,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[10,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[10,132]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[10,139]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[10,142]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[10,143]]]],[[10,146]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[10,148]]]],[[10,159]],[[10,168]],[[10,177]],[[10,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center px-4"},["DIV",{"class":"w-full max-w-sm"},["H1",{"class":"text-2xl font-bold text-center text-gray-900 dark:text-gray-100 mb-1"},"Continue your booking"],["P",{"class":"text-sm text-center text-gray-500 dark:text-gray-400 mb-8"},"Choose how you'd like to proceed"],["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"relative"},["BUTTON",{"class":"w-full flex items-center justify-center gap-2.5 px-5 py-3.5 bg-primary hover:bg-primary/90 active:scale-[0.98] text-white font-semibold rounded-xl transition-all shadow-md shadow-primary/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-user-plus w-5 h-5 flex-shrink-0"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["line",{"x1":"19","x2":"19","y1":"8","y2":"14"}],["line",{"x1":"22","x2":"16","y1":"11","y2":"11"}]],"Continue as guest"],["DIV",{"role":"tooltip","class":"absolute bottom-[calc(100%+8px)] left-1/2 -translate-x-1/2 w-52 bg-gray-900 dark:bg-gray-700 text-white text-xs rounded-lg px-3 py-2.5 shadow-xl pointer-events-none transition-all duration-150 z-50 opacity-0 translate-y-1"},["UL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"No account required"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Quick checkout"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Create account later (optional)"]],["DIV",{"class":"absolute top-full left-1/2 -translate-x-1/2 border-4 border-transparent border-t-gray-900 dark:border-t-gray-700"}]]]],["DIV",{"class":"mt-8 text-center"},["BUTTON",{"class":"inline-flex items-center gap-1.5 text-sm text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back to results"]]]]]]]],[[10,296]],[[9,11]]]],"viewport":{"width":1280,"height":720},"timestamp":44861.859,"wallTime":1784630705287,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@806","time":44862.167,"message":"waiting for getByRole('button', { name: /continue as guest/i })"} +{"type":"log","callId":"call@806","time":44869.288,"message":" locator resolved to "} +{"type":"log","callId":"call@806","time":44869.935,"message":"attempting click action"} +{"type":"log","callId":"call@806","time":44870.104,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705298.jpeg","width":1280,"height":720,"timestamp":44872.241,"frameSwapWallTime":1784630705296.692} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705318.jpeg","width":1280,"height":720,"timestamp":44891.684,"frameSwapWallTime":1784630705316.667} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705321.jpeg","width":1280,"height":720,"timestamp":44894.999,"frameSwapWallTime":1784630705320.2158} +{"type":"log","callId":"call@806","time":44895.507,"message":" element is not stable"} +{"type":"log","callId":"call@806","time":44895.517,"message":"retrying click action"} +{"type":"log","callId":"call@806","time":44895.538,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705327.jpeg","width":1280,"height":720,"timestamp":44900.408,"frameSwapWallTime":1784630705325.561} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705335.jpeg","width":1280,"height":720,"timestamp":44909.143,"frameSwapWallTime":1784630705334.127} +{"type":"log","callId":"call@806","time":44912.624,"message":" element is not stable"} +{"type":"log","callId":"call@806","time":44912.632,"message":"retrying click action"} +{"type":"log","callId":"call@806","time":44912.633,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705344.jpeg","width":1280,"height":720,"timestamp":44917.85,"frameSwapWallTime":1784630705342.9019} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705361.jpeg","width":1280,"height":720,"timestamp":44934.392,"frameSwapWallTime":1784630705359.406} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705369.jpeg","width":1280,"height":720,"timestamp":44942.661,"frameSwapWallTime":1784630705367.678} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705377.jpeg","width":1280,"height":720,"timestamp":44951.254,"frameSwapWallTime":1784630705376.262} +{"type":"log","callId":"call@806","time":45002.205,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705429.jpeg","width":1280,"height":720,"timestamp":45002.918,"frameSwapWallTime":1784630705420.809} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705429.jpeg","width":1280,"height":720,"timestamp":45002.974,"frameSwapWallTime":1784630705421.56} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705429.jpeg","width":1280,"height":720,"timestamp":45003.007,"frameSwapWallTime":1784630705421.887} +{"type":"log","callId":"call@803","time":45005.896,"message":" navigated to \"http://localhost:5174/booking/passengers\""} +{"type":"after","callId":"call@803","endTime":45005.905} +{"type":"before","callId":"call@810","startTime":45005.97,"title":"Wait for load state \"load\"","class":"Page","method":"__waitInfo__","params":{"waitId":"81018d20a400e51da385892c5184b887","phase":"before","event":""},"stepId":"pw:api@35","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"log","callId":"call@810","time":45005.992,"message":" not waiting, \"load\" event already fired"} +{"type":"after","callId":"call@810","endTime":45005.996} +{"type":"before","callId":"call@814","startTime":45006.025,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@36","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@814"} +{"type":"before","callId":"call@816","startTime":45006.236,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@37","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@816"} +{"type":"frame-snapshot","snapshot":{"callId":"call@814","snapshotName":"before@call@814","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[11,0]],[[11,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[11,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Passenger details"],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","1"," ","(Primary)"," - Adult",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Other",")"]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per passport","name":"passengers.0.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"OTHER","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.0.nationality"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Phone Number *"],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},["DIV",{"class":"flex items-center gap-1.5 px-3 py-2.5 bg-gray-50 dark:bg-gray-800 border-r border-gray-300 dark:border-gray-600 select-none flex-shrink-0"},["SPAN",{"class":"text-sm leading-none"},"🌐"],["SPAN",{"class":"text-xs font-semibold text-gray-600 dark:text-gray-300"},"+"]],["INPUT",{"__playwright_value_":"","placeholder":"14155552671","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],["P",{"class":"text-xs text-gray-400 dark:text-gray-500 mt-1"},"Format: ","International: +[country code][number]"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Email (optional)"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"email@example.com","type":"email","name":"passengers.0.email"}]]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},["H4",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300 mb-3"},"Passport Details"],["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Passport Number *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"P1234567","name":"passengers.0.passportNumber"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Issuing Country *"],["SELECT",{"name":"passengers.0.passportCountry","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select country"],["OPTION",{"__playwright_selected_":"false","value":"Djibouti"},"Djibouti"],["OPTION",{"__playwright_selected_":"false","value":"Afghanistan"},"Afghanistan"],["OPTION",{"__playwright_selected_":"false","value":"Albania"},"Albania"],["OPTION",{"__playwright_selected_":"false","value":"Algeria"},"Algeria"],["OPTION",{"__playwright_selected_":"false","value":"Andorra"},"Andorra"],["OPTION",{"__playwright_selected_":"false","value":"Angola"},"Angola"],["OPTION",{"__playwright_selected_":"false","value":"Antigua and Barbuda"},"Antigua and Barbuda"],["OPTION",{"__playwright_selected_":"false","value":"Argentina"},"Argentina"],["OPTION",{"__playwright_selected_":"false","value":"Armenia"},"Armenia"],["OPTION",{"__playwright_selected_":"false","value":"Australia"},"Australia"],["OPTION",{"__playwright_selected_":"false","value":"Austria"},"Austria"],["OPTION",{"__playwright_selected_":"false","value":"Azerbaijan"},"Azerbaijan"],["OPTION",{"__playwright_selected_":"false","value":"Bahamas"},"Bahamas"],["OPTION",{"__playwright_selected_":"false","value":"Bahrain"},"Bahrain"],["OPTION",{"__playwright_selected_":"false","value":"Bangladesh"},"Bangladesh"],["OPTION",{"__playwright_selected_":"false","value":"Barbados"},"Barbados"],["OPTION",{"__playwright_selected_":"false","value":"Belarus"},"Belarus"],["OPTION",{"__playwright_selected_":"false","value":"Belgium"},"Belgium"],["OPTION",{"__playwright_selected_":"false","value":"Belize"},"Belize"],["OPTION",{"__playwright_selected_":"false","value":"Benin"},"Benin"],["OPTION",{"__playwright_selected_":"false","value":"Bhutan"},"Bhutan"],["OPTION",{"__playwright_selected_":"false","value":"Bolivia"},"Bolivia"],["OPTION",{"__playwright_selected_":"false","value":"Bosnia and Herzegovina"},"Bosnia and Herzegovina"],["OPTION",{"__playwright_selected_":"false","value":"Botswana"},"Botswana"],["OPTION",{"__playwright_selected_":"false","value":"Brazil"},"Brazil"],["OPTION",{"__playwright_selected_":"false","value":"Brunei"},"Brunei"],["OPTION",{"__playwright_selected_":"false","value":"Bulgaria"},"Bulgaria"],["OPTION",{"__playwright_selected_":"false","value":"Burkina Faso"},"Burkina Faso"],["OPTION",{"__playwright_selected_":"false","value":"Burundi"},"Burundi"],["OPTION",{"__playwright_selected_":"false","value":"Cabo Verde"},"Cabo Verde"],["OPTION",{"__playwright_selected_":"false","value":"Cambodia"},"Cambodia"],["OPTION",{"__playwright_selected_":"false","value":"Cameroon"},"Cameroon"],["OPTION",{"__playwright_selected_":"false","value":"Canada"},"Canada"],["OPTION",{"__playwright_selected_":"false","value":"Central African Republic"},"Central African Republic"],["OPTION",{"__playwright_selected_":"false","value":"Chad"},"Chad"],["OPTION",{"__playwright_selected_":"false","value":"Chile"},"Chile"],["OPTION",{"__playwright_selected_":"false","value":"China"},"China"],["OPTION",{"__playwright_selected_":"false","value":"Colombia"},"Colombia"],["OPTION",{"__playwright_selected_":"false","value":"Comoros"},"Comoros"],["OPTION",{"__playwright_selected_":"false","value":"Congo"},"Congo"],["OPTION",{"__playwright_selected_":"false","value":"Costa Rica"},"Costa Rica"],["OPTION",{"__playwright_selected_":"false","value":"Croatia"},"Croatia"],["OPTION",{"__playwright_selected_":"false","value":"Cuba"},"Cuba"],["OPTION",{"__playwright_selected_":"false","value":"Cyprus"},"Cyprus"],["OPTION",{"__playwright_selected_":"false","value":"Czech Republic"},"Czech Republic"],["OPTION",{"__playwright_selected_":"false","value":"Denmark"},"Denmark"],["OPTION",{"__playwright_selected_":"false","value":"Dominica"},"Dominica"],["OPTION",{"__playwright_selected_":"false","value":"Dominican Republic"},"Dominican Republic"],["OPTION",{"__playwright_selected_":"false","value":"Ecuador"},"Ecuador"],["OPTION",{"__playwright_selected_":"false","value":"Egypt"},"Egypt"],["OPTION",{"__playwright_selected_":"false","value":"El Salvador"},"El Salvador"],["OPTION",{"__playwright_selected_":"false","value":"Equatorial Guinea"},"Equatorial Guinea"],["OPTION",{"__playwright_selected_":"false","value":"Eritrea"},"Eritrea"],["OPTION",{"__playwright_selected_":"false","value":"Estonia"},"Estonia"],["OPTION",{"__playwright_selected_":"false","value":"Eswatini"},"Eswatini"],["OPTION",{"__playwright_selected_":"false","value":"Fiji"},"Fiji"],["OPTION",{"__playwright_selected_":"false","value":"Finland"},"Finland"],["OPTION",{"__playwright_selected_":"false","value":"France"},"France"],["OPTION",{"__playwright_selected_":"false","value":"Gabon"},"Gabon"],["OPTION",{"__playwright_selected_":"false","value":"Gambia"},"Gambia"],["OPTION",{"__playwright_selected_":"false","value":"Georgia"},"Georgia"],["OPTION",{"__playwright_selected_":"false","value":"Germany"},"Germany"],["OPTION",{"__playwright_selected_":"false","value":"Ghana"},"Ghana"],["OPTION",{"__playwright_selected_":"false","value":"Greece"},"Greece"],["OPTION",{"__playwright_selected_":"false","value":"Grenada"},"Grenada"],["OPTION",{"__playwright_selected_":"false","value":"Guatemala"},"Guatemala"],["OPTION",{"__playwright_selected_":"false","value":"Guinea"},"Guinea"],["OPTION",{"__playwright_selected_":"false","value":"Guinea-Bissau"},"Guinea-Bissau"],["OPTION",{"__playwright_selected_":"false","value":"Guyana"},"Guyana"],["OPTION",{"__playwright_selected_":"false","value":"Haiti"},"Haiti"],["OPTION",{"__playwright_selected_":"false","value":"Honduras"},"Honduras"],["OPTION",{"__playwright_selected_":"false","value":"Hungary"},"Hungary"],["OPTION",{"__playwright_selected_":"false","value":"Iceland"},"Iceland"],["OPTION",{"__playwright_selected_":"false","value":"India"},"India"],["OPTION",{"__playwright_selected_":"false","value":"Indonesia"},"Indonesia"],["OPTION",{"__playwright_selected_":"false","value":"Iran"},"Iran"],["OPTION",{"__playwright_selected_":"false","value":"Iraq"},"Iraq"],["OPTION",{"__playwright_selected_":"false","value":"Ireland"},"Ireland"],["OPTION",{"__playwright_selected_":"false","value":"Israel"},"Israel"],["OPTION",{"__playwright_selected_":"false","value":"Italy"},"Italy"],["OPTION",{"__playwright_selected_":"false","value":"Jamaica"},"Jamaica"],["OPTION",{"__playwright_selected_":"false","value":"Japan"},"Japan"],["OPTION",{"__playwright_selected_":"false","value":"Jordan"},"Jordan"],["OPTION",{"__playwright_selected_":"false","value":"Kazakhstan"},"Kazakhstan"],["OPTION",{"__playwright_selected_":"false","value":"Kenya"},"Kenya"],["OPTION",{"__playwright_selected_":"false","value":"Kiribati"},"Kiribati"],["OPTION",{"__playwright_selected_":"false","value":"Kuwait"},"Kuwait"],["OPTION",{"__playwright_selected_":"false","value":"Kyrgyzstan"},"Kyrgyzstan"],["OPTION",{"__playwright_selected_":"false","value":"Laos"},"Laos"],["OPTION",{"__playwright_selected_":"false","value":"Latvia"},"Latvia"],["OPTION",{"__playwright_selected_":"false","value":"Lebanon"},"Lebanon"],["OPTION",{"__playwright_selected_":"false","value":"Lesotho"},"Lesotho"],["OPTION",{"__playwright_selected_":"false","value":"Liberia"},"Liberia"],["OPTION",{"__playwright_selected_":"false","value":"Libya"},"Libya"],["OPTION",{"__playwright_selected_":"false","value":"Liechtenstein"},"Liechtenstein"],["OPTION",{"__playwright_selected_":"false","value":"Lithuania"},"Lithuania"],["OPTION",{"__playwright_selected_":"false","value":"Luxembourg"},"Luxembourg"],["OPTION",{"__playwright_selected_":"false","value":"Madagascar"},"Madagascar"],["OPTION",{"__playwright_selected_":"false","value":"Malawi"},"Malawi"],["OPTION",{"__playwright_selected_":"false","value":"Malaysia"},"Malaysia"],["OPTION",{"__playwright_selected_":"false","value":"Maldives"},"Maldives"],["OPTION",{"__playwright_selected_":"false","value":"Mali"},"Mali"],["OPTION",{"__playwright_selected_":"false","value":"Malta"},"Malta"],["OPTION",{"__playwright_selected_":"false","value":"Marshall Islands"},"Marshall Islands"],["OPTION",{"__playwright_selected_":"false","value":"Mauritania"},"Mauritania"],["OPTION",{"__playwright_selected_":"false","value":"Mauritius"},"Mauritius"],["OPTION",{"__playwright_selected_":"false","value":"Mexico"},"Mexico"],["OPTION",{"__playwright_selected_":"false","value":"Micronesia"},"Micronesia"],["OPTION",{"__playwright_selected_":"false","value":"Moldova"},"Moldova"],["OPTION",{"__playwright_selected_":"false","value":"Monaco"},"Monaco"],["OPTION",{"__playwright_selected_":"false","value":"Mongolia"},"Mongolia"],["OPTION",{"__playwright_selected_":"false","value":"Montenegro"},"Montenegro"],["OPTION",{"__playwright_selected_":"false","value":"Morocco"},"Morocco"],["OPTION",{"__playwright_selected_":"false","value":"Mozambique"},"Mozambique"],["OPTION",{"__playwright_selected_":"false","value":"Myanmar"},"Myanmar"],["OPTION",{"__playwright_selected_":"false","value":"Namibia"},"Namibia"],["OPTION",{"__playwright_selected_":"false","value":"Nauru"},"Nauru"],["OPTION",{"__playwright_selected_":"false","value":"Nepal"},"Nepal"],["OPTION",{"__playwright_selected_":"false","value":"Netherlands"},"Netherlands"],["OPTION",{"__playwright_selected_":"false","value":"New Zealand"},"New Zealand"],["OPTION",{"__playwright_selected_":"false","value":"Nicaragua"},"Nicaragua"],["OPTION",{"__playwright_selected_":"false","value":"Niger"},"Niger"],["OPTION",{"__playwright_selected_":"false","value":"Nigeria"},"Nigeria"],["OPTION",{"__playwright_selected_":"false","value":"North Korea"},"North Korea"],["OPTION",{"__playwright_selected_":"false","value":"North Macedonia"},"North Macedonia"],["OPTION",{"__playwright_selected_":"false","value":"Norway"},"Norway"],["OPTION",{"__playwright_selected_":"false","value":"Oman"},"Oman"],["OPTION",{"__playwright_selected_":"false","value":"Pakistan"},"Pakistan"],["OPTION",{"__playwright_selected_":"false","value":"Palau"},"Palau"],["OPTION",{"__playwright_selected_":"false","value":"Palestine"},"Palestine"],["OPTION",{"__playwright_selected_":"false","value":"Panama"},"Panama"],["OPTION",{"__playwright_selected_":"false","value":"Papua New Guinea"},"Papua New Guinea"],["OPTION",{"__playwright_selected_":"false","value":"Paraguay"},"Paraguay"],["OPTION",{"__playwright_selected_":"false","value":"Peru"},"Peru"],["OPTION",{"__playwright_selected_":"false","value":"Philippines"},"Philippines"],["OPTION",{"__playwright_selected_":"false","value":"Poland"},"Poland"],["OPTION",{"__playwright_selected_":"false","value":"Portugal"},"Portugal"],["OPTION",{"__playwright_selected_":"false","value":"Qatar"},"Qatar"],["OPTION",{"__playwright_selected_":"false","value":"Romania"},"Romania"],["OPTION",{"__playwright_selected_":"false","value":"Russia"},"Russia"],["OPTION",{"__playwright_selected_":"false","value":"Rwanda"},"Rwanda"],["OPTION",{"__playwright_selected_":"false","value":"Saint Kitts and Nevis"},"Saint Kitts and Nevis"],["OPTION",{"__playwright_selected_":"false","value":"Saint Lucia"},"Saint Lucia"],["OPTION",{"__playwright_selected_":"false","value":"Saint Vincent and the Grenadines"},"Saint Vincent and the Grenadines"],["OPTION",{"__playwright_selected_":"false","value":"Samoa"},"Samoa"],["OPTION",{"__playwright_selected_":"false","value":"San Marino"},"San Marino"],["OPTION",{"__playwright_selected_":"false","value":"Sao Tome and Principe"},"Sao Tome and Principe"],["OPTION",{"__playwright_selected_":"false","value":"Saudi Arabia"},"Saudi Arabia"],["OPTION",{"__playwright_selected_":"false","value":"Senegal"},"Senegal"],["OPTION",{"__playwright_selected_":"false","value":"Serbia"},"Serbia"],["OPTION",{"__playwright_selected_":"false","value":"Seychelles"},"Seychelles"],["OPTION",{"__playwright_selected_":"false","value":"Sierra Leone"},"Sierra Leone"],["OPTION",{"__playwright_selected_":"false","value":"Singapore"},"Singapore"],["OPTION",{"__playwright_selected_":"false","value":"Slovakia"},"Slovakia"],["OPTION",{"__playwright_selected_":"false","value":"Slovenia"},"Slovenia"],["OPTION",{"__playwright_selected_":"false","value":"Solomon Islands"},"Solomon Islands"],["OPTION",{"__playwright_selected_":"false","value":"Somalia"},"Somalia"],["OPTION",{"__playwright_selected_":"false","value":"South Africa"},"South Africa"],["OPTION",{"__playwright_selected_":"false","value":"South Korea"},"South Korea"],["OPTION",{"__playwright_selected_":"false","value":"South Sudan"},"South Sudan"],["OPTION",{"__playwright_selected_":"false","value":"Spain"},"Spain"],["OPTION",{"__playwright_selected_":"false","value":"Sri Lanka"},"Sri Lanka"],["OPTION",{"__playwright_selected_":"false","value":"Sudan"},"Sudan"],["OPTION",{"__playwright_selected_":"false","value":"Suriname"},"Suriname"],["OPTION",{"__playwright_selected_":"false","value":"Sweden"},"Sweden"],["OPTION",{"__playwright_selected_":"false","value":"Switzerland"},"Switzerland"],["OPTION",{"__playwright_selected_":"false","value":"Syria"},"Syria"],["OPTION",{"__playwright_selected_":"false","value":"Taiwan"},"Taiwan"],["OPTION",{"__playwright_selected_":"false","value":"Tajikistan"},"Tajikistan"],["OPTION",{"__playwright_selected_":"false","value":"Tanzania"},"Tanzania"],["OPTION",{"__playwright_selected_":"false","value":"Thailand"},"Thailand"],["OPTION",{"__playwright_selected_":"false","value":"Timor-Leste"},"Timor-Leste"],["OPTION",{"__playwright_selected_":"false","value":"Togo"},"Togo"],["OPTION",{"__playwright_selected_":"false","value":"Tonga"},"Tonga"],["OPTION",{"__playwright_selected_":"false","value":"Trinidad and Tobago"},"Trinidad and Tobago"],["OPTION",{"__playwright_selected_":"false","value":"Tunisia"},"Tunisia"],["OPTION",{"__playwright_selected_":"false","value":"Turkey"},"Turkey"],["OPTION",{"__playwright_selected_":"false","value":"Turkmenistan"},"Turkmenistan"],["OPTION",{"__playwright_selected_":"false","value":"Tuvalu"},"Tuvalu"],["OPTION",{"__playwright_selected_":"false","value":"Uganda"},"Uganda"],["OPTION",{"__playwright_selected_":"false","value":"Ukraine"},"Ukraine"],["OPTION",{"__playwright_selected_":"false","value":"United Arab Emirates"},"United Arab Emirates"],["OPTION",{"__playwright_selected_":"false","value":"United Kingdom"},"United Kingdom"],["OPTION",{"__playwright_selected_":"false","value":"United States"},"United States"],["OPTION",{"__playwright_selected_":"false","value":"Uruguay"},"Uruguay"],["OPTION",{"__playwright_selected_":"false","value":"Uzbekistan"},"Uzbekistan"],["OPTION",{"__playwright_selected_":"false","value":"Vanuatu"},"Vanuatu"],["OPTION",{"__playwright_selected_":"false","value":"Vatican City"},"Vatican City"],["OPTION",{"__playwright_selected_":"false","value":"Venezuela"},"Venezuela"],["OPTION",{"__playwright_selected_":"false","value":"Vietnam"},"Vietnam"],["OPTION",{"__playwright_selected_":"false","value":"Yemen"},"Yemen"],["OPTION",{"__playwright_selected_":"false","value":"Zambia"},"Zambia"],["OPTION",{"__playwright_selected_":"false","value":"Zimbabwe"},"Zimbabwe"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Issue Date"],["INPUT",{"__playwright_value_":"","class":"input-field ","max":"2026-07-21","type":"date","name":"passengers.0.passportIssueDate"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Expiry Date"],["INPUT",{"__playwright_value_":"","class":"input-field ","min":"2026-07-21","type":"date","name":"passengers.0.passportExpiryDate"}]]]]]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},"Continue to seat selection"]]]]]]]]]],[[11,296]],[[10,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45008.553,"wallTime":1784630705434,"collectionTime":1.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@814","time":45008.961,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@816","snapshotName":"before@call@816","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,521]],"viewport":{"width":1280,"height":720},"timestamp":45009.422,"wallTime":1784630705435,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@816","time":45009.552,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"log","callId":"call@814","time":45013.56,"message":" locator resolved to visible "} +{"type":"after","callId":"call@814","endTime":45013.634,"result":{},"afterSnapshot":"after@call@814"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705440.jpeg","width":1280,"height":720,"timestamp":45013.806,"frameSwapWallTime":1784630705436.915} +{"type":"log","callId":"call@806","time":45013.876,"message":"element was detached from the DOM, retrying"} +{"type":"frame-snapshot","snapshot":{"callId":"call@814","snapshotName":"after@call@814","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,521]],"viewport":{"width":1280,"height":720},"timestamp":45014.56,"wallTime":1784630705441,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@818","startTime":45015.303,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true},"stepId":"pw:api@38","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@818"} +{"type":"frame-snapshot","snapshot":{"callId":"call@818","snapshotName":"before@call@818","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,521]],"viewport":{"width":1280,"height":720},"timestamp":45016.054,"wallTime":1784630705442,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@818","time":45016.201,"message":" checking visibility of locator('input[name=\"passengers.0.name\"]')"} +{"type":"after","callId":"call@818","endTime":45016.866,"result":{"value":true},"afterSnapshot":"after@call@818"} +{"type":"frame-snapshot","snapshot":{"callId":"call@818","snapshotName":"after@call@818","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,521]],"viewport":{"width":1280,"height":720},"timestamp":45017.767,"wallTime":1784630705444,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@820","startTime":45018.339,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@39","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@820"} +{"type":"frame-snapshot","snapshot":{"callId":"call@820","snapshotName":"before@call@820","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,521]],"viewport":{"width":1280,"height":720},"timestamp":45019.452,"wallTime":1784630705446,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@820","time":45019.574,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705446.jpeg","width":1280,"height":720,"timestamp":45020.209,"frameSwapWallTime":1784630705445.061} +{"type":"log","callId":"call@820","time":45021.628,"message":" locator resolved to visible "} +{"type":"after","callId":"call@820","endTime":45021.649,"result":{},"afterSnapshot":"after@call@820"} +{"type":"frame-snapshot","snapshot":{"callId":"call@820","snapshotName":"after@call@820","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,521]],"viewport":{"width":1280,"height":720},"timestamp":45022.272,"wallTime":1784630705448,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@822","startTime":45022.939,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"value":"Adult 1","timeout":15000},"stepId":"pw:api@40","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@822"} +{"type":"frame-snapshot","snapshot":{"callId":"call@822","snapshotName":"before@call@822","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,521]],"viewport":{"width":1280,"height":720},"timestamp":45023.542,"wallTime":1784630705450,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@822","time":45023.636,"message":"waiting for locator('input[name=\"passengers.0.name\"]')"} +{"type":"log","callId":"call@822","time":45024.409,"message":" locator resolved to "} +{"type":"log","callId":"call@822","time":45024.635,"message":" fill(\"Adult 1\")"} +{"type":"log","callId":"call@822","time":45024.637,"message":"attempting fill action"} +{"type":"input","callId":"call@822","inputSnapshot":"input@call@822"} +{"type":"frame-snapshot","snapshot":{"callId":"call@822","snapshotName":"input@call@822","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[8,27]],["BODY",{"class":"font-sans antialiased"},[[9,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[19,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[9,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[8,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[8,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[8,41]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per passport","name":"passengers.0.name"}]],[[8,61]],[[8,71]],[[8,75]],[[8,89]],[[8,93]]],[[8,502]]]],[[8,511]]]]]]]]]],[[19,296]],[[18,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45025.596,"wallTime":1784630705452,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@822","time":45025.641,"message":" waiting for element to be visible, enabled and editable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705455.jpeg","width":1280,"height":720,"timestamp":45028.707,"frameSwapWallTime":1784630705453.4932} +{"type":"after","callId":"call@822","endTime":45031.067,"afterSnapshot":"after@call@822"} +{"type":"frame-snapshot","snapshot":{"callId":"call@822","snapshotName":"after@call@822","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[9,27]],["BODY",{"class":"font-sans antialiased"},[[10,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[20,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[10,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[9,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[9,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[9,41]],["INPUT",{"__playwright_value_":"Adult 1","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per passport","name":"passengers.0.name"}]],[[9,61]],[[9,71]],[[9,75]],[[9,89]],[[9,93]]],[[9,502]]]],[[9,511]]]]]]]]]],[[20,296]],[[19,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45032.46,"wallTime":1784630705458,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@824","startTime":45033.529,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.0.gender\"]","strict":true,"options":[{"valueOrLabel":"Male"}],"timeout":15000},"stepId":"pw:api@41","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@824"} +{"type":"frame-snapshot","snapshot":{"callId":"call@824","snapshotName":"before@call@824","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[10,27]],["BODY",{"class":"font-sans antialiased"},[[11,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[21,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[11,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[10,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[10,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[10,41]],["INPUT",{"__playwright_value_":"Adult 1","class":"input-field ","placeholder":"Full name as per passport","name":"passengers.0.name"}]],[[10,61]],[[10,71]],[[10,75]],[[10,89]],[[10,93]]],[[10,502]]]],[[10,511]]]]]]]]]],[[21,296]],[[20,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45035.272,"wallTime":1784630705461,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@824","time":45035.416,"message":"waiting for locator('select[name=\"passengers.0.gender\"]')"} +{"type":"log","callId":"call@824","time":45036.621,"message":" locator resolved to "} +{"type":"log","callId":"call@824","time":45036.957,"message":"attempting select option action"} +{"type":"input","callId":"call@824","inputSnapshot":"input@call@824"} +{"type":"frame-snapshot","snapshot":{"callId":"call@824","snapshotName":"input@call@824","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[11,27]],["BODY",{"class":"font-sans antialiased"},[[12,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[22,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[12,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[11,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[11,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[11,61]],["DIV",{},[[11,63]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},[[11,65]],[[11,67]],[[11,69]]]],[[11,75]],[[11,89]],[[11,93]]],[[11,502]]]],[[11,511]]]]]]]]]],[[22,296]],[[21,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45038.522,"wallTime":1784630705464,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@824","time":45038.622,"message":" waiting for element to be visible and enabled"} +{"type":"log","callId":"call@824","time":45041.427,"message":" selected specified option(s)"} +{"type":"after","callId":"call@824","endTime":45041.467,"result":{"values":["Male"]},"afterSnapshot":"after@call@824"} +{"type":"frame-snapshot","snapshot":{"callId":"call@824","snapshotName":"after@call@824","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[12,27]],["BODY",{"class":"font-sans antialiased"},[[13,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[23,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[13,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[12,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[12,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[12,61]],["DIV",{},[[12,63]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[12,64]]],["OPTION",{"__playwright_selected_":"true","value":"Male"},[[12,66]]],[[12,69]]]],[[12,75]],[[12,89]],[[12,93]]],[[12,502]]]],[[12,511]]]]]]]]]],[[23,296]],[[22,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45042.588,"wallTime":1784630705469,"collectionTime":0.7999999970197678,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@826","startTime":45043.363,"class":"Frame","method":"fill","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> input[type=\"tel\"] >> nth=0","strict":true,"value":"14155552671","timeout":15000},"stepId":"pw:api@42","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@826"} +{"type":"frame-snapshot","snapshot":{"callId":"call@826","snapshotName":"before@call@826","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[13,27]],["BODY",{"class":"font-sans antialiased"},[[14,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[24,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[14,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[13,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[13,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[13,61]],["DIV",{},[[13,63]],["SELECT",{"name":"passengers.0.gender","class":"input-field "},[[1,0]],[[1,1]],[[13,69]]]],[[13,75]],[[13,89]],[[13,93]]],[[13,502]]]],[[13,511]]]]]]]]]],[[24,296]],[[23,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45044.382,"wallTime":1784630705470,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@826","time":45044.563,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).locator('input[type=\"tel\"]').first()"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705471.jpeg","width":1280,"height":720,"timestamp":45045.12,"frameSwapWallTime":1784630705470.002} +{"type":"log","callId":"call@826","time":45046.394,"message":" locator resolved to "} +{"type":"log","callId":"call@826","time":45046.784,"message":" fill(\"14155552671\")"} +{"type":"log","callId":"call@826","time":45046.791,"message":"attempting fill action"} +{"type":"input","callId":"call@826","inputSnapshot":"input@call@826"} +{"type":"frame-snapshot","snapshot":{"callId":"call@826","snapshotName":"input@call@826","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[14,27]],["BODY",{"class":"font-sans antialiased"},[[15,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[25,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[15,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[14,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[14,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],[[14,61]],[[1,1]],[[14,75]],["DIV",{},[[14,77]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[14,82]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","placeholder":"14155552671","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],[[14,87]]]],[[14,93]]],[[14,502]]]],[[14,511]]]]]]]]]],[[25,296]],[[24,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45047.602,"wallTime":1784630705474,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@826","time":45047.791,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@826","endTime":45051.072,"afterSnapshot":"after@call@826"} +{"type":"frame-snapshot","snapshot":{"callId":"call@826","snapshotName":"after@call@826","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[15,27]],["BODY",{"class":"font-sans antialiased"},[[16,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[26,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[16,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[15,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[15,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],[[15,61]],[[2,1]],[[15,75]],["DIV",{},[[15,77]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[15,82]],["INPUT",{"__playwright_value_":"14155552671","__playwright_target__":"","placeholder":"14155552671","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"14155552671"}]],[[15,87]]]],[[15,93]]],[[15,502]]]],[[15,511]]]]]]]]]],[[26,296]],[[25,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45051.836,"wallTime":1784630705478,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@828","startTime":45052.442,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.0.passportNumber\"]","strict":true,"value":"P1234567","timeout":15000},"stepId":"pw:api@43","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@828"} +{"type":"frame-snapshot","snapshot":{"callId":"call@828","snapshotName":"before@call@828","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[16,27]],["BODY",{"class":"font-sans antialiased"},[[17,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[27,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[17,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[16,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[16,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],[[16,61]],[[3,1]],[[16,75]],["DIV",{},[[16,77]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[16,82]],["INPUT",{"__playwright_value_":"14155552671","placeholder":"14155552671","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"14155552671"}]],[[16,87]]]],[[16,93]]],[[16,502]]]],[[16,511]]]]]]]]]],[[27,296]],[[26,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45053.096,"wallTime":1784630705479,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@828","time":45053.202,"message":"waiting for locator('input[name=\"passengers.0.passportNumber\"]')"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705481.jpeg","width":1280,"height":720,"timestamp":45055.177,"frameSwapWallTime":1784630705479.879} +{"type":"log","callId":"call@828","time":45055.334,"message":" locator resolved to "} +{"type":"log","callId":"call@828","time":45055.6,"message":" fill(\"P1234567\")"} +{"type":"log","callId":"call@828","time":45055.602,"message":"attempting fill action"} +{"type":"input","callId":"call@828","inputSnapshot":"input@call@828"} +{"type":"frame-snapshot","snapshot":{"callId":"call@828","snapshotName":"input@call@828","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[17,27]],["BODY",{"class":"font-sans antialiased"},[[18,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[28,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[18,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[17,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[17,39]],["DIV",{"class":"space-y-4"},[[1,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[17,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[17,98]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"P1234567","name":"passengers.0.passportNumber"}]],[[17,492]],[[17,496]],[[17,500]]]]]],[[17,511]]]]]]]]]],[[28,296]],[[27,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45056.348,"wallTime":1784630705482,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@828","time":45056.416,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@828","endTime":45061.529,"afterSnapshot":"after@call@828"} +{"type":"frame-snapshot","snapshot":{"callId":"call@828","snapshotName":"after@call@828","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[18,27]],["BODY",{"class":"font-sans antialiased"},[[19,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[29,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[19,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[18,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[18,39]],["DIV",{"class":"space-y-4"},[[2,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[18,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[18,98]],["INPUT",{"__playwright_value_":"P1234567","__playwright_target__":"","class":"input-field ","placeholder":"P1234567","name":"passengers.0.passportNumber"}]],[[18,492]],[[18,496]],[[18,500]]]]]],[[18,511]]]]]]]]]],[[29,296]],[[28,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45062.481,"wallTime":1784630705488,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@830","startTime":45063.243,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.0.passportCountry\"]","strict":true,"options":[{"valueOrLabel":"Canada"}],"timeout":15000},"stepId":"pw:api@44","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@830"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705490.jpeg","width":1280,"height":720,"timestamp":45063.735,"frameSwapWallTime":1784630705488.479} +{"type":"frame-snapshot","snapshot":{"callId":"call@830","snapshotName":"before@call@830","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[19,27]],["BODY",{"class":"font-sans antialiased"},[[20,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[30,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[20,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[19,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[19,39]],["DIV",{"class":"space-y-4"},[[3,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[19,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[19,98]],["INPUT",{"__playwright_value_":"P1234567","class":"input-field ","placeholder":"P1234567","name":"passengers.0.passportNumber"}]],[[19,492]],[[19,496]],[[19,500]]]]]],[[19,511]]]]]]]]]],[[30,296]],[[29,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45063.992,"wallTime":1784630705490,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@830","time":45064.101,"message":"waiting for locator('select[name=\"passengers.0.passportCountry\"]')"} +{"type":"log","callId":"call@830","time":45064.842,"message":" locator resolved to "} +{"type":"log","callId":"call@830","time":45065.176,"message":"attempting select option action"} +{"type":"input","callId":"call@830","inputSnapshot":"input@call@830"} +{"type":"frame-snapshot","snapshot":{"callId":"call@830","snapshotName":"input@call@830","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[20,27]],["BODY",{"class":"font-sans antialiased"},[[21,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[31,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[21,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[20,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[20,39]],["DIV",{"class":"space-y-4"},[[4,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[20,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],["DIV",{},[[20,102]],["SELECT",{"__playwright_target__":"","name":"passengers.0.passportCountry","class":"input-field "},[[20,104]],[[20,106]],[[20,108]],[[20,110]],[[20,112]],[[20,114]],[[20,116]],[[20,118]],[[20,120]],[[20,122]],[[20,124]],[[20,126]],[[20,128]],[[20,130]],[[20,132]],[[20,134]],[[20,136]],[[20,138]],[[20,140]],[[20,142]],[[20,144]],[[20,146]],[[20,148]],[[20,150]],[[20,152]],[[20,154]],[[20,156]],[[20,158]],[[20,160]],[[20,162]],[[20,164]],[[20,166]],[[20,168]],[[20,170]],[[20,172]],[[20,174]],[[20,176]],[[20,178]],[[20,180]],[[20,182]],[[20,184]],[[20,186]],[[20,188]],[[20,190]],[[20,192]],[[20,194]],[[20,196]],[[20,198]],[[20,200]],[[20,202]],[[20,204]],[[20,206]],[[20,208]],[[20,210]],[[20,212]],[[20,214]],[[20,216]],[[20,218]],[[20,220]],[[20,222]],[[20,224]],[[20,226]],[[20,228]],[[20,230]],[[20,232]],[[20,234]],[[20,236]],[[20,238]],[[20,240]],[[20,242]],[[20,244]],[[20,246]],[[20,248]],[[20,250]],[[20,252]],[[20,254]],[[20,256]],[[20,258]],[[20,260]],[[20,262]],[[20,264]],[[20,266]],[[20,268]],[[20,270]],[[20,272]],[[20,274]],[[20,276]],[[20,278]],[[20,280]],[[20,282]],[[20,284]],[[20,286]],[[20,288]],[[20,290]],[[20,292]],[[20,294]],[[20,296]],[[20,298]],[[20,300]],[[20,302]],[[20,304]],[[20,306]],[[20,308]],[[20,310]],[[20,312]],[[20,314]],[[20,316]],[[20,318]],[[20,320]],[[20,322]],[[20,324]],[[20,326]],[[20,328]],[[20,330]],[[20,332]],[[20,334]],[[20,336]],[[20,338]],[[20,340]],[[20,342]],[[20,344]],[[20,346]],[[20,348]],[[20,350]],[[20,352]],[[20,354]],[[20,356]],[[20,358]],[[20,360]],[[20,362]],[[20,364]],[[20,366]],[[20,368]],[[20,370]],[[20,372]],[[20,374]],[[20,376]],[[20,378]],[[20,380]],[[20,382]],[[20,384]],[[20,386]],[[20,388]],[[20,390]],[[20,392]],[[20,394]],[[20,396]],[[20,398]],[[20,400]],[[20,402]],[[20,404]],[[20,406]],[[20,408]],[[20,410]],[[20,412]],[[20,414]],[[20,416]],[[20,418]],[[20,420]],[[20,422]],[[20,424]],[[20,426]],[[20,428]],[[20,430]],[[20,432]],[[20,434]],[[20,436]],[[20,438]],[[20,440]],[[20,442]],[[20,444]],[[20,446]],[[20,448]],[[20,450]],[[20,452]],[[20,454]],[[20,456]],[[20,458]],[[20,460]],[[20,462]],[[20,464]],[[20,466]],[[20,468]],[[20,470]],[[20,472]],[[20,474]],[[20,476]],[[20,478]],[[20,480]],[[20,482]],[[20,484]],[[20,486]],[[20,488]],[[20,490]]]],[[20,496]],[[20,500]]]]]],[[20,511]]]]]]]]]],[[31,296]],[[30,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45066.016,"wallTime":1784630705492,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@830","time":45066.11,"message":" waiting for element to be visible and enabled"} +{"type":"log","callId":"call@830","time":45068.623,"message":" selected specified option(s)"} +{"type":"after","callId":"call@830","endTime":45068.686,"result":{"values":["Canada"]},"afterSnapshot":"after@call@830"} +{"type":"frame-snapshot","snapshot":{"callId":"call@830","snapshotName":"after@call@830","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[21,27]],["BODY",{"class":"font-sans antialiased"},[[22,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[32,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[22,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[21,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[21,39]],["DIV",{"class":"space-y-4"},[[5,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[21,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],["DIV",{},[[21,102]],["SELECT",{"__playwright_target__":"","name":"passengers.0.passportCountry","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[21,103]]],[[21,106]],[[21,108]],[[21,110]],[[21,112]],[[21,114]],[[21,116]],[[21,118]],[[21,120]],[[21,122]],[[21,124]],[[21,126]],[[21,128]],[[21,130]],[[21,132]],[[21,134]],[[21,136]],[[21,138]],[[21,140]],[[21,142]],[[21,144]],[[21,146]],[[21,148]],[[21,150]],[[21,152]],[[21,154]],[[21,156]],[[21,158]],[[21,160]],[[21,162]],[[21,164]],[[21,166]],[[21,168]],["OPTION",{"__playwright_selected_":"true","value":"Canada"},[[21,169]]],[[21,172]],[[21,174]],[[21,176]],[[21,178]],[[21,180]],[[21,182]],[[21,184]],[[21,186]],[[21,188]],[[21,190]],[[21,192]],[[21,194]],[[21,196]],[[21,198]],[[21,200]],[[21,202]],[[21,204]],[[21,206]],[[21,208]],[[21,210]],[[21,212]],[[21,214]],[[21,216]],[[21,218]],[[21,220]],[[21,222]],[[21,224]],[[21,226]],[[21,228]],[[21,230]],[[21,232]],[[21,234]],[[21,236]],[[21,238]],[[21,240]],[[21,242]],[[21,244]],[[21,246]],[[21,248]],[[21,250]],[[21,252]],[[21,254]],[[21,256]],[[21,258]],[[21,260]],[[21,262]],[[21,264]],[[21,266]],[[21,268]],[[21,270]],[[21,272]],[[21,274]],[[21,276]],[[21,278]],[[21,280]],[[21,282]],[[21,284]],[[21,286]],[[21,288]],[[21,290]],[[21,292]],[[21,294]],[[21,296]],[[21,298]],[[21,300]],[[21,302]],[[21,304]],[[21,306]],[[21,308]],[[21,310]],[[21,312]],[[21,314]],[[21,316]],[[21,318]],[[21,320]],[[21,322]],[[21,324]],[[21,326]],[[21,328]],[[21,330]],[[21,332]],[[21,334]],[[21,336]],[[21,338]],[[21,340]],[[21,342]],[[21,344]],[[21,346]],[[21,348]],[[21,350]],[[21,352]],[[21,354]],[[21,356]],[[21,358]],[[21,360]],[[21,362]],[[21,364]],[[21,366]],[[21,368]],[[21,370]],[[21,372]],[[21,374]],[[21,376]],[[21,378]],[[21,380]],[[21,382]],[[21,384]],[[21,386]],[[21,388]],[[21,390]],[[21,392]],[[21,394]],[[21,396]],[[21,398]],[[21,400]],[[21,402]],[[21,404]],[[21,406]],[[21,408]],[[21,410]],[[21,412]],[[21,414]],[[21,416]],[[21,418]],[[21,420]],[[21,422]],[[21,424]],[[21,426]],[[21,428]],[[21,430]],[[21,432]],[[21,434]],[[21,436]],[[21,438]],[[21,440]],[[21,442]],[[21,444]],[[21,446]],[[21,448]],[[21,450]],[[21,452]],[[21,454]],[[21,456]],[[21,458]],[[21,460]],[[21,462]],[[21,464]],[[21,466]],[[21,468]],[[21,470]],[[21,472]],[[21,474]],[[21,476]],[[21,478]],[[21,480]],[[21,482]],[[21,484]],[[21,486]],[[21,488]],[[21,490]]]],[[21,496]],[[21,500]]]]]],[[21,511]]]]]]]]]],[[32,296]],[[31,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45069.837,"wallTime":1784630705496,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@832","startTime":45070.571,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.0.passportIssueDate\"]","strict":true,"value":"2020-01-01","timeout":15000},"stepId":"pw:api@45","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@832"} +{"type":"frame-snapshot","snapshot":{"callId":"call@832","snapshotName":"before@call@832","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[22,27]],["BODY",{"class":"font-sans antialiased"},[[23,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[33,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[23,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[22,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[22,39]],["DIV",{"class":"space-y-4"},[[6,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[22,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],["DIV",{},[[22,102]],["SELECT",{"name":"passengers.0.passportCountry","class":"input-field "},[[1,0]],[[22,106]],[[22,108]],[[22,110]],[[22,112]],[[22,114]],[[22,116]],[[22,118]],[[22,120]],[[22,122]],[[22,124]],[[22,126]],[[22,128]],[[22,130]],[[22,132]],[[22,134]],[[22,136]],[[22,138]],[[22,140]],[[22,142]],[[22,144]],[[22,146]],[[22,148]],[[22,150]],[[22,152]],[[22,154]],[[22,156]],[[22,158]],[[22,160]],[[22,162]],[[22,164]],[[22,166]],[[22,168]],[[1,1]],[[22,172]],[[22,174]],[[22,176]],[[22,178]],[[22,180]],[[22,182]],[[22,184]],[[22,186]],[[22,188]],[[22,190]],[[22,192]],[[22,194]],[[22,196]],[[22,198]],[[22,200]],[[22,202]],[[22,204]],[[22,206]],[[22,208]],[[22,210]],[[22,212]],[[22,214]],[[22,216]],[[22,218]],[[22,220]],[[22,222]],[[22,224]],[[22,226]],[[22,228]],[[22,230]],[[22,232]],[[22,234]],[[22,236]],[[22,238]],[[22,240]],[[22,242]],[[22,244]],[[22,246]],[[22,248]],[[22,250]],[[22,252]],[[22,254]],[[22,256]],[[22,258]],[[22,260]],[[22,262]],[[22,264]],[[22,266]],[[22,268]],[[22,270]],[[22,272]],[[22,274]],[[22,276]],[[22,278]],[[22,280]],[[22,282]],[[22,284]],[[22,286]],[[22,288]],[[22,290]],[[22,292]],[[22,294]],[[22,296]],[[22,298]],[[22,300]],[[22,302]],[[22,304]],[[22,306]],[[22,308]],[[22,310]],[[22,312]],[[22,314]],[[22,316]],[[22,318]],[[22,320]],[[22,322]],[[22,324]],[[22,326]],[[22,328]],[[22,330]],[[22,332]],[[22,334]],[[22,336]],[[22,338]],[[22,340]],[[22,342]],[[22,344]],[[22,346]],[[22,348]],[[22,350]],[[22,352]],[[22,354]],[[22,356]],[[22,358]],[[22,360]],[[22,362]],[[22,364]],[[22,366]],[[22,368]],[[22,370]],[[22,372]],[[22,374]],[[22,376]],[[22,378]],[[22,380]],[[22,382]],[[22,384]],[[22,386]],[[22,388]],[[22,390]],[[22,392]],[[22,394]],[[22,396]],[[22,398]],[[22,400]],[[22,402]],[[22,404]],[[22,406]],[[22,408]],[[22,410]],[[22,412]],[[22,414]],[[22,416]],[[22,418]],[[22,420]],[[22,422]],[[22,424]],[[22,426]],[[22,428]],[[22,430]],[[22,432]],[[22,434]],[[22,436]],[[22,438]],[[22,440]],[[22,442]],[[22,444]],[[22,446]],[[22,448]],[[22,450]],[[22,452]],[[22,454]],[[22,456]],[[22,458]],[[22,460]],[[22,462]],[[22,464]],[[22,466]],[[22,468]],[[22,470]],[[22,472]],[[22,474]],[[22,476]],[[22,478]],[[22,480]],[[22,482]],[[22,484]],[[22,486]],[[22,488]],[[22,490]]]],[[22,496]],[[22,500]]]]]],[[22,511]]]]]]]]]],[[33,296]],[[32,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45071.967,"wallTime":1784630705498,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@832","time":45072.166,"message":"waiting for locator('input[name=\"passengers.0.passportIssueDate\"]')"} +{"type":"log","callId":"call@832","time":45072.938,"message":" locator resolved to "} +{"type":"log","callId":"call@832","time":45073.197,"message":" fill(\"2020-01-01\")"} +{"type":"log","callId":"call@832","time":45073.201,"message":"attempting fill action"} +{"type":"input","callId":"call@832","inputSnapshot":"input@call@832"} +{"type":"frame-snapshot","snapshot":{"callId":"call@832","snapshotName":"input@call@832","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[23,27]],["BODY",{"class":"font-sans antialiased"},[[24,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[34,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[24,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[23,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[23,39]],["DIV",{"class":"space-y-4"},[[7,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[23,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],[[1,1]],["DIV",{},[[23,494]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","max":"2026-07-21","type":"date","name":"passengers.0.passportIssueDate"}]],[[23,500]]]]]],[[23,511]]]]]]]]]],[[34,296]],[[33,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45073.924,"wallTime":1784630705500,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@832","time":45074.003,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@832","endTime":45077.308,"afterSnapshot":"after@call@832"} +{"type":"frame-snapshot","snapshot":{"callId":"call@832","snapshotName":"after@call@832","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[24,27]],["BODY",{"class":"font-sans antialiased"},[[25,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[35,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[25,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[24,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[24,39]],["DIV",{"class":"space-y-4"},[[8,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[24,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],[[2,1]],["DIV",{},[[24,494]],["INPUT",{"__playwright_value_":"2020-01-01","__playwright_target__":"","class":"input-field ","max":"2026-07-21","type":"date","name":"passengers.0.passportIssueDate"}]],[[24,500]]]]]],[[24,511]]]]]]]]]],[[35,296]],[[34,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45078.29,"wallTime":1784630705504,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@834","startTime":45079.154,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.0.passportExpiryDate\"]","strict":true,"value":"2032-01-01","timeout":15000},"stepId":"pw:api@46","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@834"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705506.jpeg","width":1280,"height":720,"timestamp":45080.239,"frameSwapWallTime":1784630705504.983} +{"type":"frame-snapshot","snapshot":{"callId":"call@834","snapshotName":"before@call@834","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[25,27]],["BODY",{"class":"font-sans antialiased"},[[26,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[36,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[26,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[25,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[25,39]],["DIV",{"class":"space-y-4"},[[9,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[25,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],[[3,1]],["DIV",{},[[25,494]],["INPUT",{"__playwright_value_":"2020-01-01","class":"input-field ","max":"2026-07-21","type":"date","name":"passengers.0.passportIssueDate"}]],[[25,500]]]]]],[[25,511]]]]]]]]]],[[36,296]],[[35,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45080.384,"wallTime":1784630705506,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@834","time":45080.515,"message":"waiting for locator('input[name=\"passengers.0.passportExpiryDate\"]')"} +{"type":"log","callId":"call@834","time":45081.342,"message":" locator resolved to "} +{"type":"log","callId":"call@834","time":45081.653,"message":" fill(\"2032-01-01\")"} +{"type":"log","callId":"call@834","time":45081.656,"message":"attempting fill action"} +{"type":"input","callId":"call@834","inputSnapshot":"input@call@834"} +{"type":"frame-snapshot","snapshot":{"callId":"call@834","snapshotName":"input@call@834","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[26,27]],["BODY",{"class":"font-sans antialiased"},[[27,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[37,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[27,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[26,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[26,39]],["DIV",{"class":"space-y-4"},[[10,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[26,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[7,1]],[[4,1]],[[1,1]],["DIV",{},[[26,498]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","min":"2026-07-21","type":"date","name":"passengers.0.passportExpiryDate"}]]]]]],[[26,511]]]]]]]]]],[[37,296]],[[36,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45082.727,"wallTime":1784630705508,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@834","time":45082.785,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@834","endTime":45086.109,"afterSnapshot":"after@call@834"} +{"type":"frame-snapshot","snapshot":{"callId":"call@834","snapshotName":"after@call@834","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[27,27]],["BODY",{"class":"font-sans antialiased"},[[28,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[38,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[28,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[27,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[27,39]],["DIV",{"class":"space-y-4"},[[11,4]],["DIV",{"class":"border-t dark:border-gray-700 pt-4 mt-4"},[[27,96]],["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],[[5,1]],[[2,1]],["DIV",{},[[27,498]],["INPUT",{"__playwright_value_":"2032-01-01","class":"input-field ","min":"2026-07-21","type":"date","name":"passengers.0.passportExpiryDate"}]]]]]],[[27,511]]]]]]]]]],[[38,296]],[[37,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45087.57,"wallTime":1784630705514,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@836","startTime":45088.213,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@47","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@836"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705515.jpeg","width":1280,"height":720,"timestamp":45088.614,"frameSwapWallTime":1784630705513.368} +{"type":"frame-snapshot","snapshot":{"callId":"call@836","snapshotName":"before@call@836","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,15]],"viewport":{"width":1280,"height":720},"timestamp":45089.765,"wallTime":1784630705516,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@836","time":45089.874,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"log","callId":"call@836","time":45091.255,"message":" locator resolved to "} +{"type":"log","callId":"call@836","time":45091.613,"message":"attempting click action"} +{"type":"log","callId":"call@836","time":45091.627,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705523.jpeg","width":1280,"height":720,"timestamp":45096.63,"frameSwapWallTime":1784630705521.232} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705530.jpeg","width":1280,"height":720,"timestamp":45103.401,"frameSwapWallTime":1784630705528.095} +{"type":"log","callId":"call@836","time":45104.26,"message":" element is not stable"} +{"type":"log","callId":"call@836","time":45104.267,"message":"retrying click action"} +{"type":"log","callId":"call@836","time":45104.282,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705547.jpeg","width":1280,"height":720,"timestamp":45120.407,"frameSwapWallTime":1784630705544.958} +{"type":"log","callId":"call@836","time":45120.604,"message":" element is not stable"} +{"type":"log","callId":"call@836","time":45120.61,"message":"retrying click action"} +{"type":"log","callId":"call@836","time":45120.611,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705554.jpeg","width":1280,"height":720,"timestamp":45127.882,"frameSwapWallTime":1784630705552.613} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705562.jpeg","width":1280,"height":720,"timestamp":45135.975,"frameSwapWallTime":1784630705560.7268} +{"type":"log","callId":"call@836","time":45142.421,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705571.jpeg","width":1280,"height":720,"timestamp":45144.877,"frameSwapWallTime":1784630705569.672} +{"type":"log","callId":"call@836","time":45154.277,"message":" element is not stable"} +{"type":"log","callId":"call@836","time":45154.289,"message":"retrying click action"} +{"type":"log","callId":"call@836","time":45154.29,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705588.jpeg","width":1280,"height":720,"timestamp":45161.53,"frameSwapWallTime":1784630705586.2751} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705596.jpeg","width":1280,"height":720,"timestamp":45170.024,"frameSwapWallTime":1784630705594.6838} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705604.jpeg","width":1280,"height":720,"timestamp":45177.779,"frameSwapWallTime":1784630705602.5679} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705621.jpeg","width":1280,"height":720,"timestamp":45195.04,"frameSwapWallTime":1784630705619.7778} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705629.jpeg","width":1280,"height":720,"timestamp":45203.046,"frameSwapWallTime":1784630705627.812} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705638.jpeg","width":1280,"height":720,"timestamp":45211.448,"frameSwapWallTime":1784630705636.23} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705654.jpeg","width":1280,"height":720,"timestamp":45227.675,"frameSwapWallTime":1784630705652.3171} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705662.jpeg","width":1280,"height":720,"timestamp":45236.198,"frameSwapWallTime":1784630705660.8428} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705672.jpeg","width":1280,"height":720,"timestamp":45245.46,"frameSwapWallTime":1784630705669.929} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705680.jpeg","width":1280,"height":720,"timestamp":45253.578,"frameSwapWallTime":1784630705677.971} +{"type":"log","callId":"call@836","time":45255.922,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705695.jpeg","width":1280,"height":720,"timestamp":45268.705,"frameSwapWallTime":1784630705693.421} +{"type":"log","callId":"call@836","time":45270.877,"message":" element is not stable"} +{"type":"log","callId":"call@836","time":45270.883,"message":"retrying click action"} +{"type":"log","callId":"call@836","time":45270.884,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705705.jpeg","width":1280,"height":720,"timestamp":45278.355,"frameSwapWallTime":1784630705703.099} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705713.jpeg","width":1280,"height":720,"timestamp":45286.327,"frameSwapWallTime":1784630705711.087} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705720.jpeg","width":1280,"height":720,"timestamp":45293.969,"frameSwapWallTime":1784630705718.7158} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705738.jpeg","width":1280,"height":720,"timestamp":45311.715,"frameSwapWallTime":1784630705736.332} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705746.jpeg","width":1280,"height":720,"timestamp":45319.863,"frameSwapWallTime":1784630705744.5} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705754.jpeg","width":1280,"height":720,"timestamp":45328.168,"frameSwapWallTime":1784630705752.877} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705770.jpeg","width":1280,"height":720,"timestamp":45343.77,"frameSwapWallTime":1784630705768.401} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705777.jpeg","width":1280,"height":720,"timestamp":45351.141,"frameSwapWallTime":1784630705775.852} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705785.jpeg","width":1280,"height":720,"timestamp":45358.766,"frameSwapWallTime":1784630705783.478} +{"type":"log","callId":"call@836","time":45371.807,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705802.jpeg","width":1280,"height":720,"timestamp":45375.522,"frameSwapWallTime":1784630705800.25} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705810.jpeg","width":1280,"height":720,"timestamp":45383.836,"frameSwapWallTime":1784630705808.4768} +{"type":"log","callId":"call@836","time":45387.536,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@836","time":45387.546,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@836","time":45387.658,"message":" done scrolling"} +{"type":"input","callId":"call@836","point":{"x":1007.5,"y":210},"inputSnapshot":"input@call@836"} +{"type":"frame-snapshot","snapshot":{"callId":"call@836","snapshotName":"input@call@836","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,15]],"viewport":{"width":1280,"height":720},"timestamp":45388.72,"wallTime":1784630705815,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@836","time":45389.281,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705819.jpeg","width":1280,"height":720,"timestamp":45392.32,"frameSwapWallTime":1784630705816.994} +{"type":"log","callId":"call@836","time":45397.366,"message":" click action done"} +{"type":"log","callId":"call@836","time":45397.372,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@836","time":45397.616,"message":" navigations have finished"} +{"type":"after","callId":"call@836","endTime":45397.648,"afterSnapshot":"after@call@836"} +{"type":"frame-snapshot","snapshot":{"callId":"call@836","snapshotName":"after@call@836","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[30,27]],["BODY",{"class":"font-sans antialiased"},[[31,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[41,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[31,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[30,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[30,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[30,45]],["DIV",{},[[30,59]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2020"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2019"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2018"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2017"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2016"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2015"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2014"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2013"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2012"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2011"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2010"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2009"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2008"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2007"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2006"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2005"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2004"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2003"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2002"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2001"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2000"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1999"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1998"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1997"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1996"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1995"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1994"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1993"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1992"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1991"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1990"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1989"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1988"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1987"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1986"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1985"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1984"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1983"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1982"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1981"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1980"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1979"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1978"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1977"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1976"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1975"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1974"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1973"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1972"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1971"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1970"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1969"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1968"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1967"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1966"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1965"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1964"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1963"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1962"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1961"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1960"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1959"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1958"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1957"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1956"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1955"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1954"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1953"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1952"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1951"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1950"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1949"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1948"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1947"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1946"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1945"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1944"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1943"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1942"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1941"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1940"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1939"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1938"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1937"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1936"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1935"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1934"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1933"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1932"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1931"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1930"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1929"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1928"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1927"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1926"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1925"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1924"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1923"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1922"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1921"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1920"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1919"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1918"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1917"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1916"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2000"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[17,1]],[[30,75]],[[14,3]],[[30,93]]],[[3,3]]]],[[30,511]]]]]]]]]],[[41,296]],[[40,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45400.103,"wallTime":1784630705825,"collectionTime":1.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@838","startTime":45401.117,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@48","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@838"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705827.jpeg","width":1280,"height":720,"timestamp":45401.301,"frameSwapWallTime":1784630705825.284} +{"type":"frame-snapshot","snapshot":{"callId":"call@838","snapshotName":"before@call@838","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,358]],"viewport":{"width":1280,"height":720},"timestamp":45402.274,"wallTime":1784630705828,"collectionTime":0.8999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@838","time":45402.364,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@838","time":45404.617,"message":" locator resolved to "} +{"type":"log","callId":"call@838","time":45404.966,"message":"attempting click action"} +{"type":"log","callId":"call@838","time":45404.99,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705845.jpeg","width":1280,"height":720,"timestamp":45419.142,"frameSwapWallTime":1784630705843.838} +{"type":"log","callId":"call@838","time":45419.943,"message":" element is not stable"} +{"type":"log","callId":"call@838","time":45419.949,"message":"retrying click action"} +{"type":"log","callId":"call@838","time":45419.964,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705853.jpeg","width":1280,"height":720,"timestamp":45426.665,"frameSwapWallTime":1784630705851.377} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705863.jpeg","width":1280,"height":720,"timestamp":45436.337,"frameSwapWallTime":1784630705861.205} +{"type":"log","callId":"call@838","time":45436.902,"message":" element is not stable"} +{"type":"log","callId":"call@838","time":45436.908,"message":"retrying click action"} +{"type":"log","callId":"call@838","time":45436.909,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705880.jpeg","width":1280,"height":720,"timestamp":45453.983,"frameSwapWallTime":1784630705878.777} +{"type":"log","callId":"call@838","time":45458.156,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705889.jpeg","width":1280,"height":720,"timestamp":45462.938,"frameSwapWallTime":1784630705887.646} +{"type":"log","callId":"call@838","time":45470.992,"message":" element is not stable"} +{"type":"log","callId":"call@838","time":45471.004,"message":"retrying click action"} +{"type":"log","callId":"call@838","time":45471.005,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705898.jpeg","width":1280,"height":720,"timestamp":45471.526,"frameSwapWallTime":1784630705896.365} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705915.jpeg","width":1280,"height":720,"timestamp":45488.673,"frameSwapWallTime":1784630705913.359} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705924.jpeg","width":1280,"height":720,"timestamp":45497.331,"frameSwapWallTime":1784630705921.9639} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705932.jpeg","width":1280,"height":720,"timestamp":45505.605,"frameSwapWallTime":1784630705930.4978} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705949.jpeg","width":1280,"height":720,"timestamp":45522.91,"frameSwapWallTime":1784630705947.68} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705958.jpeg","width":1280,"height":720,"timestamp":45531.454,"frameSwapWallTime":1784630705956.317} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705966.jpeg","width":1280,"height":720,"timestamp":45540.047,"frameSwapWallTime":1784630705964.962} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705982.jpeg","width":1280,"height":720,"timestamp":45555.72,"frameSwapWallTime":1784630705980.572} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705990.jpeg","width":1280,"height":720,"timestamp":45564.138,"frameSwapWallTime":1784630705988.988} +{"type":"log","callId":"call@838","time":45571.503,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630705999.jpeg","width":1280,"height":720,"timestamp":45572.512,"frameSwapWallTime":1784630705997.318} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706007.jpeg","width":1280,"height":720,"timestamp":45581.008,"frameSwapWallTime":1784630706005.923} +{"type":"log","callId":"call@838","time":45587.633,"message":" element is not stable"} +{"type":"log","callId":"call@838","time":45587.641,"message":"retrying click action"} +{"type":"log","callId":"call@838","time":45587.642,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706023.jpeg","width":1280,"height":720,"timestamp":45597.041,"frameSwapWallTime":1784630706021.882} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706032.jpeg","width":1280,"height":720,"timestamp":45605.766,"frameSwapWallTime":1784630706030.683} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706041.jpeg","width":1280,"height":720,"timestamp":45614.403,"frameSwapWallTime":1784630706039.32} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706049.jpeg","width":1280,"height":720,"timestamp":45622.665,"frameSwapWallTime":1784630706047.762} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706065.jpeg","width":1280,"height":720,"timestamp":45638.946,"frameSwapWallTime":1784630706063.843} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706073.jpeg","width":1280,"height":720,"timestamp":45647.3,"frameSwapWallTime":1784630706072.286} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706082.jpeg","width":1280,"height":720,"timestamp":45655.89,"frameSwapWallTime":1784630706080.933} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706087.jpeg","width":1280,"height":720,"timestamp":45661.268,"frameSwapWallTime":1784630706086.2588} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706103.jpeg","width":1280,"height":720,"timestamp":45677.037,"frameSwapWallTime":1784630706101.9631} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706111.jpeg","width":1280,"height":720,"timestamp":45685.307,"frameSwapWallTime":1784630706110.258} +{"type":"log","callId":"call@838","time":45688.937,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706120.jpeg","width":1280,"height":720,"timestamp":45693.76,"frameSwapWallTime":1784630706118.763} +{"type":"log","callId":"call@838","time":45703.345,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@838","time":45703.358,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@838","time":45703.47,"message":" done scrolling"} +{"type":"input","callId":"call@838","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@838"} +{"type":"frame-snapshot","snapshot":{"callId":"call@838","snapshotName":"input@call@838","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[32,27]],["BODY",{"class":"font-sans antialiased"},[[33,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[43,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[33,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[32,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[32,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[22,1]],["DIV",{},[[32,45]],["DIV",{},[[32,59]],[[2,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[2,2]],[[2,8]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[2,9]]]],[[2,15]]],[[2,19]],[[2,26]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},[[2,27]],["DIV",{"class":"flex gap-2 h-full"},[[2,93]],[[2,121]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"804","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},[[2,122]],[[2,124]],[[2,126]],[[2,128]],[[2,130]],[[2,132]],[[2,134]],[[2,136]],[[2,138]],[[2,140]],[[2,142]],[[2,144]],[[2,146]],[[2,148]],[[2,150]],[[2,152]],[[2,154]],[[2,156]],[[2,158]],[[2,160]],[[2,162]],[[2,164]],[[2,166]],[[2,168]],[[2,170]],[[2,172]],[[2,174]],[[2,176]],[[2,178]],[[2,180]],[[2,182]],[[2,184]],[[2,186]],[[2,188]],[[2,190]],[[2,192]],[[2,194]],[[2,196]],[[2,198]],[[2,200]],[[2,202]],[[2,204]],[[2,206]],[[2,208]],[[2,210]],[[2,212]],[[2,214]],[[2,216]],[[2,218]],[[2,220]],[[2,222]],[[2,224]],[[2,226]],[[2,228]],[[2,230]],[[2,232]],[[2,234]],[[2,236]],[[2,238]],[[2,240]],[[2,242]],[[2,244]],[[2,246]],[[2,248]],[[2,250]],[[2,252]],[[2,254]],[[2,256]],[[2,258]],[[2,260]],[[2,262]],[[2,264]],[[2,266]],[[2,268]],[[2,270]],[[2,272]],[[2,274]],[[2,276]],[[2,278]],[[2,280]],[[2,282]],[[2,284]],[[2,286]],[[2,288]],[[2,290]],[[2,292]],[[2,294]],[[2,296]],[[2,298]],[[2,300]],[[2,302]],[[2,304]],[[2,306]],[[2,308]],[[2,310]],[[2,312]],[[2,314]],[[2,316]],[[2,318]],[[2,320]],[[2,322]],[[2,324]],[[2,326]],[[2,328]],[[2,330]],[[2,332]],[[2,333]]]]]],[[2,340]]],[[2,343]]]],[[19,1]],[[32,75]],[[16,3]],[[32,93]]],[[5,3]]]],[[32,511]]]]]]]]]],[[43,296]],[[42,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45705.547,"wallTime":1784630706131,"collectionTime":1.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@838","time":45706.265,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706136.jpeg","width":1280,"height":720,"timestamp":45709.339,"frameSwapWallTime":1784630706134.307} +{"type":"log","callId":"call@838","time":45709.768,"message":" click action done"} +{"type":"log","callId":"call@838","time":45709.773,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@838","time":45709.958,"message":" navigations have finished"} +{"type":"after","callId":"call@838","endTime":45710.002,"afterSnapshot":"after@call@838"} +{"type":"frame-snapshot","snapshot":{"callId":"call@838","snapshotName":"after@call@838","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[33,27]],["BODY",{"class":"font-sans antialiased"},[[34,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[44,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[34,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[33,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[33,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[23,1]],["DIV",{},[[33,45]],["DIV",{},[[33,59]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[3,2]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[3,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","1916"," – ","2020"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[3,343]]]],[[20,1]],[[33,75]],[[17,3]],[[33,93]]],[[6,3]]]],[[33,511]]]]]]]]]],[[44,296]],[[43,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45710.922,"wallTime":1784630706137,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@840","startTime":45711.578,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"15","timeout":15000},"stepId":"pw:api@49","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@840"} +{"type":"frame-snapshot","snapshot":{"callId":"call@840","snapshotName":"before@call@840","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[34,27]],["BODY",{"class":"font-sans antialiased"},[[35,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[45,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[35,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[34,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[34,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[24,1]],["DIV",{},[[34,45]],["DIV",{},[[34,59]],[[4,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[4,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[1,0]]]],[[4,15]]],[[1,22]],[[1,25]]],[[4,343]]]],[[21,1]],[[34,75]],[[18,3]],[[34,93]]],[[7,3]]]],[[34,511]]]]]]]]]],[[45,296]],[[44,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45712.447,"wallTime":1784630706138,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@840","time":45712.544,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@840","time":45714.409,"message":" locator resolved to "} +{"type":"log","callId":"call@840","time":45715.072,"message":" fill(\"15\")"} +{"type":"log","callId":"call@840","time":45715.075,"message":"attempting fill action"} +{"type":"input","callId":"call@840","inputSnapshot":"input@call@840"} +{"type":"frame-snapshot","snapshot":{"callId":"call@840","snapshotName":"input@call@840","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[35,27]],["BODY",{"class":"font-sans antialiased"},[[36,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[46,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[36,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[35,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[35,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[25,1]],["DIV",{},[[35,45]],["DIV",{},[[35,59]],[[5,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[1,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[5,343]]]],[[22,1]],[[35,75]],[[19,3]],[[35,93]]],[[8,3]]]],[[35,511]]]]]]]]]],[[46,296]],[[45,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45716.138,"wallTime":1784630706142,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@840","time":45716.204,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@840","endTime":45718.327,"afterSnapshot":"after@call@840"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706145.jpeg","width":1280,"height":720,"timestamp":45719.122,"frameSwapWallTime":1784630706144.144} +{"type":"frame-snapshot","snapshot":{"callId":"call@840","snapshotName":"after@call@840","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[36,27]],["BODY",{"class":"font-sans antialiased"},[[37,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[47,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[37,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[36,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[36,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[26,1]],["DIV",{},[[36,45]],["DIV",{},[[36,59]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"15","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[6,343]]]],[[23,1]],[[36,75]],[[20,3]],[[36,93]]],[[9,3]]]],[[36,511]]]]]]]]]],[[47,296]],[[46,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45719.22,"wallTime":1784630706145,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@842","startTime":45719.855,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"6","timeout":15000},"stepId":"pw:api@50","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@842"} +{"type":"frame-snapshot","snapshot":{"callId":"call@842","snapshotName":"before@call@842","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[37,27]],["BODY",{"class":"font-sans antialiased"},[[38,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[48,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[38,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[37,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[37,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[27,1]],["DIV",{},[[37,45]],["DIV",{},[[37,59]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[7,343]]]],[[24,1]],[[37,75]],[[21,3]],[[37,93]]],[[10,3]]]],[[37,511]]]]]]]]]],[[48,296]],[[47,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45720.71,"wallTime":1784630706147,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@842","time":45720.851,"message":"waiting for getByPlaceholder('MM')"} +{"type":"log","callId":"call@842","time":45722.176,"message":" locator resolved to "} +{"type":"log","callId":"call@842","time":45722.536,"message":" fill(\"6\")"} +{"type":"log","callId":"call@842","time":45722.543,"message":"attempting fill action"} +{"type":"input","callId":"call@842","inputSnapshot":"input@call@842"} +{"type":"frame-snapshot","snapshot":{"callId":"call@842","snapshotName":"input@call@842","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[38,27]],["BODY",{"class":"font-sans antialiased"},[[39,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[49,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[39,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[38,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[38,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[28,1]],["DIV",{},[[38,45]],["DIV",{},[[38,59]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[8,343]]]],[[25,1]],[[38,75]],[[22,3]],[[38,93]]],[[11,3]]]],[[38,511]]]]]]]]]],[[49,296]],[[48,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45723.403,"wallTime":1784630706149,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@842","time":45723.478,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@842","endTime":45725.369,"afterSnapshot":"after@call@842"} +{"type":"frame-snapshot","snapshot":{"callId":"call@842","snapshotName":"after@call@842","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[39,27]],["BODY",{"class":"font-sans antialiased"},[[40,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[50,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[40,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[39,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[39,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[29,1]],["DIV",{},[[39,45]],["DIV",{},[[39,59]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"15"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"6","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[9,343]]]],[[26,1]],[[39,75]],[[23,3]],[[39,93]]],[[12,3]]]],[[39,511]]]]]]]]]],[[50,296]],[[49,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45726.576,"wallTime":1784630706153,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@844","startTime":45727.329,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"1990","timeout":15000},"stepId":"pw:api@51","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@844"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706154.jpeg","width":1280,"height":720,"timestamp":45727.491,"frameSwapWallTime":1784630706152.031} +{"type":"frame-snapshot","snapshot":{"callId":"call@844","snapshotName":"before@call@844","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[40,27]],["BODY",{"class":"font-sans antialiased"},[[41,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[51,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[41,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[40,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[40,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[30,1]],["DIV",{},[[40,45]],["DIV",{},[[40,59]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[10,343]]]],[[27,1]],[[40,75]],[[24,3]],[[40,93]]],[[13,3]]]],[[40,511]]]]]]]]]],[[51,296]],[[50,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45728.19,"wallTime":1784630706154,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@844","time":45728.321,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"log","callId":"call@844","time":45729.714,"message":" locator resolved to "} +{"type":"log","callId":"call@844","time":45730.052,"message":" fill(\"1990\")"} +{"type":"log","callId":"call@844","time":45730.058,"message":"attempting fill action"} +{"type":"input","callId":"call@844","inputSnapshot":"input@call@844"} +{"type":"frame-snapshot","snapshot":{"callId":"call@844","snapshotName":"input@call@844","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[41,27]],["BODY",{"class":"font-sans antialiased"},[[42,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[52,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[42,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[41,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[41,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[31,1]],["DIV",{},[[41,45]],["DIV",{},[[41,59]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[11,343]]]],[[28,1]],[[41,75]],[[25,3]],[[41,93]]],[[14,3]]]],[[41,511]]]]]]]]]],[[52,296]],[[51,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45730.936,"wallTime":1784630706157,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@844","time":45731.02,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@844","endTime":45733.576,"afterSnapshot":"after@call@844"} +{"type":"frame-snapshot","snapshot":{"callId":"call@844","snapshotName":"after@call@844","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[42,27]],["BODY",{"class":"font-sans antialiased"},[[43,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[53,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[43,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[42,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[42,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[32,1]],["DIV",{},[[42,45]],["DIV",{},[[42,59]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"6"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"1990","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 15/6/1990"]]],[[12,343]]]],[[29,1]],[[42,75]],[[26,3]],[[42,93]]],[[15,3]]]],[[42,511]]]]]]]]]],[[53,296]],[[52,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45734.769,"wallTime":1784630706161,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@846","startTime":45735.499,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@52","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@846"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706162.jpeg","width":1280,"height":720,"timestamp":45735.692,"frameSwapWallTime":1784630706160.314} +{"type":"frame-snapshot","snapshot":{"callId":"call@846","snapshotName":"before@call@846","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[43,27]],["BODY",{"class":"font-sans antialiased"},[[44,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[54,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[44,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[43,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[43,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[33,1]],["DIV",{},[[43,45]],["DIV",{},[[43,59]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"1990","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[13,343]]]],[[30,1]],[[43,75]],[[27,3]],[[43,93]]],[[16,3]]]],[[43,511]]]]]]]]]],[[54,296]],[[53,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45736.315,"wallTime":1784630706162,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@846","time":45736.414,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"log","callId":"call@846","time":45738.723,"message":" locator resolved to "} +{"type":"log","callId":"call@846","time":45739.144,"message":"attempting click action"} +{"type":"log","callId":"call@846","time":45739.158,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706179.jpeg","width":1280,"height":720,"timestamp":45752.553,"frameSwapWallTime":1784630706177.24} +{"type":"log","callId":"call@846","time":45753.376,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@846","time":45753.38,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@846","time":45753.69,"message":" done scrolling"} +{"type":"input","callId":"call@846","point":{"x":1163.4,"y":668},"inputSnapshot":"input@call@846"} +{"type":"frame-snapshot","snapshot":{"callId":"call@846","snapshotName":"input@call@846","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[44,27]],["BODY",{"class":"font-sans antialiased"},[[45,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[55,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[45,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[44,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[44,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[34,1]],["DIV",{},[[44,45]],["DIV",{},[[44,59]],[[14,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[10,2]],[[1,3]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"__playwright_target__":"","type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},[[2,6]]]]],[[14,343]]]],[[31,1]],[[44,75]],[[28,3]],[[44,93]]],[[17,3]]]],[[44,511]]]]]]]]]],[[55,296]],[[54,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45755.092,"wallTime":1784630706181,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@846","time":45755.717,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706186.jpeg","width":1280,"height":720,"timestamp":45759.778,"frameSwapWallTime":1784630706184.602} +{"type":"log","callId":"call@846","time":45761.411,"message":" click action done"} +{"type":"log","callId":"call@846","time":45761.416,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@846","time":45761.562,"message":" navigations have finished"} +{"type":"after","callId":"call@846","endTime":45761.595,"afterSnapshot":"after@call@846"} +{"type":"frame-snapshot","snapshot":{"callId":"call@846","snapshotName":"after@call@846","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[45,27]],["BODY",{"class":"font-sans antialiased"},[[46,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[56,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[46,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[45,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[45,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[35,1]],["DIV",{},[[45,45]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"June 15, 1990"],[[45,58]]]]],[[32,1]],[[45,75]],[[29,3]],[[45,93]]],[[18,3]]]],[[45,511]]]]]]]]]],[[56,296]],[[55,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45762.41,"wallTime":1784630706188,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@848","startTime":45763.098,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue to seat selection/i]","strict":true,"timeout":15000},"stepId":"pw:api@53","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@848"} +{"type":"frame-snapshot","snapshot":{"callId":"call@848","snapshotName":"before@call@848","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":45763.937,"wallTime":1784630706190,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@848","time":45764.059,"message":"waiting for getByRole('button', { name: /continue to seat selection/i })"} +{"type":"log","callId":"call@848","time":45766,"message":" locator resolved to "} +{"type":"log","callId":"call@848","time":45766.369,"message":"attempting click action"} +{"type":"log","callId":"call@848","time":45766.393,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706195.jpeg","width":1280,"height":720,"timestamp":45768.835,"frameSwapWallTime":1784630706193.7139} +{"type":"log","callId":"call@848","time":45779.084,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@848","time":45779.089,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@848","time":45779.448,"message":" done scrolling"} +{"type":"input","callId":"call@848","point":{"x":1021,"y":694},"inputSnapshot":"input@call@848"} +{"type":"frame-snapshot","snapshot":{"callId":"call@848","snapshotName":"input@call@848","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"48","lang":"en","dir":"ltr","class":"light","style":""},[[47,27]],["BODY",{"class":"font-sans antialiased"},[[48,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[58,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[48,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[47,29]],["FORM",{"class":"space-y-6"},[[2,7]],["DIV",{"class":"flex gap-4"},[[47,508]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},[[47,509]]]]]]]]]]]],[[58,296]],[[57,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45780.676,"wallTime":1784630706207,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@848","time":45781.323,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706211.jpeg","width":1280,"height":720,"timestamp":45784.493,"frameSwapWallTime":1784630706209.11} +{"type":"log","callId":"call@848","time":45785.886,"message":" click action done"} +{"type":"log","callId":"call@848","time":45785.89,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@848","time":45786.253,"message":" navigations have finished"} +{"type":"after","callId":"call@848","endTime":45786.288,"afterSnapshot":"after@call@848"} +{"type":"frame-snapshot","snapshot":{"callId":"call@848","snapshotName":"after@call@848","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"48","lang":"en","dir":"ltr","class":"light","style":""},[[48,27]],["BODY",{"class":"font-sans antialiased"},[[49,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[59,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[49,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[48,29]],["FORM",{"class":"space-y-6"},[[3,7]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2","disabled":""},[[48,506]],[[48,507]]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2","disabled":""},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]]]]]]]]],[[59,296]],[[58,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45787.306,"wallTime":1784630706213,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@850","startTime":45788.089,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"3e68530e22988041582d91ef8c2d5575","phase":"before","event":""},"stepId":"pw:api@54","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"log","callId":"call@850","time":45788.114,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706219.jpeg","width":1280,"height":720,"timestamp":45793.113,"frameSwapWallTime":1784630706217.614} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706227.jpeg","width":1280,"height":720,"timestamp":45800.97,"frameSwapWallTime":1784630706225.472} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706244.jpeg","width":1280,"height":720,"timestamp":45818.033,"frameSwapWallTime":1784630706242.6091} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706252.jpeg","width":1280,"height":720,"timestamp":45826.083,"frameSwapWallTime":1784630706250.7542} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706260.jpeg","width":1280,"height":720,"timestamp":45834.1,"frameSwapWallTime":1784630706258.762} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706277.jpeg","width":1280,"height":720,"timestamp":45851.201,"frameSwapWallTime":1784630706275.706} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706285.jpeg","width":1280,"height":720,"timestamp":45858.709,"frameSwapWallTime":1784630706283.4202} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706294.jpeg","width":1280,"height":720,"timestamp":45867.43,"frameSwapWallTime":1784630706291.986} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706302.jpeg","width":1280,"height":720,"timestamp":45875.648,"frameSwapWallTime":1784630706300.216} +{"type":"console","messageType":"warning","text":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element: JSHandle@node","args":[{"preview":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:","value":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:"},{"preview":"JSHandle@node"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js","lineNumber":109,"columnNumber":20},"time":45926.419,"pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706354.jpeg","width":1280,"height":720,"timestamp":45927.763,"frameSwapWallTime":1784630706344.401} +{"type":"log","callId":"call@850","time":45927.874,"message":" navigated to \"http://localhost:5174/booking/seats\""} +{"type":"after","callId":"call@850","endTime":45927.88} +{"type":"before","callId":"call@855","startTime":45927.913,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"f78cad6a7c2014036e9b972f4c59c3c1","phase":"before","event":"response"},"stepId":"pw:api@55","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"before","callId":"call@858","startTime":45927.95,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/auto assign seats/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@56","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@858"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706354.jpeg","width":1280,"height":720,"timestamp":45928.085,"frameSwapWallTime":1784630706345.533} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706354.jpeg","width":1280,"height":720,"timestamp":45928.174,"frameSwapWallTime":1784630706345.854} +{"type":"frame-snapshot","snapshot":{"callId":"call@858","snapshotName":"before@call@858","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[60,0]],[[60,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[60,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[60,36]],[[60,43]],[[60,47]],[[60,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[60,55]],["OL",{"class":"space-y-1"},[[60,61]],[[50,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[60,69]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[60,72]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[60,74]]]],[[60,81]],[[60,86]],[[60,91]]]]],[[60,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[60,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[60,132]],[[50,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[60,148]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[60,151]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[60,152]]]],[[60,155]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[60,157]]]],[[60,168]],[[60,177]],[[60,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"0","/","1"," seats selected"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-400 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"]]],["STYLE",{},"@keyframes seats-slide-up{from{transform:translateY(100%)}to{transform:translateY(0)}}"],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},["BUTTON",{"class":"flex items-center gap-1.5 text-sm text-gray-600 dark:text-gray-400 hover:text-primary transition-colors font-medium"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["DIV",{"class":"text-center"},["H1",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Select Seats"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Now selecting: ","Adult 1"]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"0","/","1"]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"flex justify-end"},["BUTTON",{"type":"button","class":"flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 text-sm font-semibold text-gray-700 dark:text-gray-300 hover:border-primary hover:text-primary transition-colors shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-4 h-4"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],"Preview Train Coach"]],["DIV",{"class":"flex flex-col items-stretch"},["DIV",{"class":"px-4"},["DIV",{"class":"relative bg-[rgb(20,113,76)] rounded-t-2xl px-5 pt-4 pb-3 text-white overflow-hidden"},["DIV",{"class":"absolute top-0 left-0 right-0 h-1 bg-white/20"}],["DIV",{"class":"flex items-center justify-between"},["DIV",{},["P",{"class":"text-[10px] font-bold uppercase tracking-widest text-white/60"},"EDR Express"],["P",{"class":"text-sm font-bold mt-0.5"},"1"," Coach"]],["DIV",{"class":"flex gap-2"},["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}]]],["DIV",{"class":"mt-3 flex items-center gap-2"},["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}],["DIV",{"class":"flex-1 h-1 bg-white/20 rounded-full"}],["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}]]],["DIV",{"class":"h-3 bg-[rgb(15,85,57)] mx-3 rounded-b-lg"}]],["DIV",{},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}],["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}]]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-900/30"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-gray-100 dark:bg-gray-700 text-gray-600 dark:text-gray-300"},"1"],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-gray-900 dark:text-white"},"UI-C1"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"41"," of ","48"," seats available"]]],["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"hidden sm:flex items-end gap-0.5 h-5"},["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-3 bg-gray-200 dark:bg-gray-600"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-3 bg-gray-200 dark:bg-gray-600"}]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 text-gray-400"},["path",{"d":"m6 9 6 6 6-6"}]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}]]],["DIV",{"class":"px-4"},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}]]],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded-b-2xl"}]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-amber-100 text-amber-700 dark:bg-amber-900/30 dark:text-amber-400"},"0","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"Selecting seat for Adult 1 (1 of 1)"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 0%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)]/20 text-[rgb(20,113,76)] ring-2 ring-[rgb(20,113,76)]"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"],["SPAN",{"class":"text-[10px] font-semibold text-[rgb(20,113,76)] uppercase tracking-wide"},"Now selecting"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-gray-400"},"Not Assigned"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"],["BUTTON",{"class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],["DIV",{"class":"lg:hidden h-24"}]]]]]]]],[[60,296]],[[59,11]]]],"viewport":{"width":1280,"height":720},"timestamp":45935.701,"wallTime":1784630706361,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@858","time":45935.974,"message":"waiting for getByRole('button', { name: /auto assign seats/i }).first()"} +{"type":"log","callId":"call@858","time":45938.195,"message":" locator resolved to "} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706365.jpeg","width":1280,"height":720,"timestamp":45938.424,"frameSwapWallTime":1784630706363.2668} +{"type":"log","callId":"call@858","time":45938.583,"message":"attempting click action"} +{"type":"log","callId":"call@858","time":45938.596,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706372.jpeg","width":1280,"height":720,"timestamp":45945.964,"frameSwapWallTime":1784630706370.897} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706380.jpeg","width":1280,"height":720,"timestamp":45953.821,"frameSwapWallTime":1784630706378.738} +{"type":"log","callId":"call@858","time":45954.218,"message":" element is not stable"} +{"type":"log","callId":"call@858","time":45954.221,"message":"retrying click action"} +{"type":"log","callId":"call@858","time":45954.229,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706389.jpeg","width":1280,"height":720,"timestamp":45962.871,"frameSwapWallTime":1784630706387.702} +{"type":"log","callId":"call@858","time":45970.85,"message":" element is not stable"} +{"type":"log","callId":"call@858","time":45970.86,"message":"retrying click action"} +{"type":"log","callId":"call@858","time":45970.861,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706406.jpeg","width":1280,"height":720,"timestamp":45979.384,"frameSwapWallTime":1784630706404.1392} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706414.jpeg","width":1280,"height":720,"timestamp":45987.775,"frameSwapWallTime":1784630706412.655} +{"type":"log","callId":"call@858","time":45992.733,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706422.jpeg","width":1280,"height":720,"timestamp":45995.415,"frameSwapWallTime":1784630706420.369} +{"type":"log","callId":"call@858","time":46004.193,"message":" element is not stable"} +{"type":"log","callId":"call@858","time":46004.222,"message":"retrying click action"} +{"type":"log","callId":"call@858","time":46004.225,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706431.jpeg","width":1280,"height":720,"timestamp":46004.471,"frameSwapWallTime":1784630706429.296} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706447.jpeg","width":1280,"height":720,"timestamp":46021.103,"frameSwapWallTime":1784630706445.992} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706456.jpeg","width":1280,"height":720,"timestamp":46029.773,"frameSwapWallTime":1784630706454.51} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706464.jpeg","width":1280,"height":720,"timestamp":46037.823,"frameSwapWallTime":1784630706462.597} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706472.jpeg","width":1280,"height":720,"timestamp":46046.147,"frameSwapWallTime":1784630706470.967} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706489.jpeg","width":1280,"height":720,"timestamp":46063.037,"frameSwapWallTime":1784630706487.676} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706497.jpeg","width":1280,"height":720,"timestamp":46071.171,"frameSwapWallTime":1784630706495.9258} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706506.jpeg","width":1280,"height":720,"timestamp":46079.551,"frameSwapWallTime":1784630706504.354} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706514.jpeg","width":1280,"height":720,"timestamp":46087.715,"frameSwapWallTime":1784630706512.4978} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706530.jpeg","width":1280,"height":720,"timestamp":46104.301,"frameSwapWallTime":1784630706529.083} +{"type":"log","callId":"call@858","time":46105.01,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706539.jpeg","width":1280,"height":720,"timestamp":46112.727,"frameSwapWallTime":1784630706537.4082} +{"type":"log","callId":"call@858","time":46120.835,"message":" element is not stable"} +{"type":"log","callId":"call@858","time":46120.847,"message":"retrying click action"} +{"type":"log","callId":"call@858","time":46120.848,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706547.jpeg","width":1280,"height":720,"timestamp":46121.162,"frameSwapWallTime":1784630706545.825} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706564.jpeg","width":1280,"height":720,"timestamp":46137.876,"frameSwapWallTime":1784630706562.5442} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706572.jpeg","width":1280,"height":720,"timestamp":46146.145,"frameSwapWallTime":1784630706570.941} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706581.jpeg","width":1280,"height":720,"timestamp":46154.553,"frameSwapWallTime":1784630706579.112} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706598.jpeg","width":1280,"height":720,"timestamp":46171.454,"frameSwapWallTime":1784630706596.158} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706606.jpeg","width":1280,"height":720,"timestamp":46179.462,"frameSwapWallTime":1784630706604.1118} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706614.jpeg","width":1280,"height":720,"timestamp":46187.792,"frameSwapWallTime":1784630706612.52} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706630.jpeg","width":1280,"height":720,"timestamp":46204.002,"frameSwapWallTime":1784630706628.775} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706639.jpeg","width":1280,"height":720,"timestamp":46212.325,"frameSwapWallTime":1784630706637.138} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706647.jpeg","width":1280,"height":720,"timestamp":46220.743,"frameSwapWallTime":1784630706645.53} +{"type":"log","callId":"call@858","time":46222.44,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706656.jpeg","width":1280,"height":720,"timestamp":46229.441,"frameSwapWallTime":1784630706654.241} +{"type":"log","callId":"call@858","time":46237.444,"message":" element is not stable"} +{"type":"log","callId":"call@858","time":46237.454,"message":"retrying click action"} +{"type":"log","callId":"call@858","time":46237.455,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706672.jpeg","width":1280,"height":720,"timestamp":46245.886,"frameSwapWallTime":1784630706670.6729} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706680.jpeg","width":1280,"height":720,"timestamp":46253.961,"frameSwapWallTime":1784630706678.803} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706689.jpeg","width":1280,"height":720,"timestamp":46262.901,"frameSwapWallTime":1784630706687.6199} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706694.jpeg","width":1280,"height":720,"timestamp":46267.783,"frameSwapWallTime":1784630706692.563} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706710.jpeg","width":1280,"height":720,"timestamp":46283.477,"frameSwapWallTime":1784630706708.3398} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706718.jpeg","width":1280,"height":720,"timestamp":46291.943,"frameSwapWallTime":1784630706716.741} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706726.jpeg","width":1280,"height":720,"timestamp":46300.165,"frameSwapWallTime":1784630706725.076} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706735.jpeg","width":1280,"height":720,"timestamp":46308.653,"frameSwapWallTime":1784630706733.407} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706751.jpeg","width":1280,"height":720,"timestamp":46325.263,"frameSwapWallTime":1784630706750.078} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706760.jpeg","width":1280,"height":720,"timestamp":46333.505,"frameSwapWallTime":1784630706758.371} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706768.jpeg","width":1280,"height":720,"timestamp":46341.937,"frameSwapWallTime":1784630706766.801} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706776.jpeg","width":1280,"height":720,"timestamp":46350.277,"frameSwapWallTime":1784630706775.131} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706793.jpeg","width":1280,"height":720,"timestamp":46367.073,"frameSwapWallTime":1784630706791.838} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706802.jpeg","width":1280,"height":720,"timestamp":46375.391,"frameSwapWallTime":1784630706800.145} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706810.jpeg","width":1280,"height":720,"timestamp":46383.465,"frameSwapWallTime":1784630706808.321} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706818.jpeg","width":1280,"height":720,"timestamp":46391.814,"frameSwapWallTime":1784630706816.661} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706834.jpeg","width":1280,"height":720,"timestamp":46408.069,"frameSwapWallTime":1784630706832.704} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706843.jpeg","width":1280,"height":720,"timestamp":46417.259,"frameSwapWallTime":1784630706842.0151} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706851.jpeg","width":1280,"height":720,"timestamp":46425.069,"frameSwapWallTime":1784630706849.791} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630706860.jpeg","width":1280,"height":720,"timestamp":46433.59,"frameSwapWallTime":1784630706858.4248} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707077.jpeg","width":1280,"height":720,"timestamp":46650.479,"frameSwapWallTime":1784630707075.247} +{"type":"log","callId":"call@858","time":46738.507,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@858","time":46754.058,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@858","time":46754.069,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@858","time":46754.633,"message":" done scrolling"} +{"type":"input","callId":"call@858","point":{"x":1105.32,"y":333},"inputSnapshot":"input@call@858"} +{"type":"frame-snapshot","snapshot":{"callId":"call@858","snapshotName":"input@call@858","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":[[1,204]],"viewport":{"width":1280,"height":720},"timestamp":46755.44,"wallTime":1784630707182,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@858","time":46755.955,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707193.jpeg","width":1280,"height":720,"timestamp":46767.254,"frameSwapWallTime":1784630707191.8499} +{"type":"log","callId":"call@858","time":46769.979,"message":" click action done"} +{"type":"log","callId":"call@858","time":46769.996,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@858","time":46771.402,"message":" navigations have finished"} +{"type":"after","callId":"call@858","endTime":46771.463,"afterSnapshot":"after@call@858"} +{"type":"frame-snapshot","snapshot":{"callId":"call@858","snapshotName":"after@call@858","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[62,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"1",[[2,58]],[[2,59]],[[2,60]]],[[2,63]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."]]],[[2,70]],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},[[2,74]],["DIV",{"class":"text-center"},[[2,76]]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"1",[[2,82]],[[2,83]]]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[2,98]],["DIV",{"class":"flex flex-col items-stretch"},[[2,117]],["DIV",{},[[2,122]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-[rgb(20,113,76)] shadow-lg shadow-[rgb(20,113,76)]/10"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-[rgb(20,113,76)] text-white"},[[2,124]]],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-[rgb(20,113,76)]"},[[2,126]]],[[2,132]]]],["DIV",{"class":"flex items-center gap-3"},[[2,147]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 rotate-180 text-[rgb(20,113,76)]"},[[2,148]]]]],["DIV",{"class":"border-t border-gray-100 dark:border-gray-800 bg-white dark:bg-gray-800 p-4"},["DIV",{"class":"flex flex-wrap gap-3 mb-4"},["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-green-50 border border-green-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Available"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-blue-50 border-2 border-blue-500 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Selected"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-red-50 border border-red-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Booked"]]],["DIV",{"class":"overflow-x-auto"},["DIV",{"class":"inline-block bg-gray-50 dark:bg-gray-700/30 rounded-xl p-4 border border-gray-200 dark:border-gray-700"},["DIV",{"class":"space-y-0"},["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 1A - BOOKED - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 1B - BOOKED - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-yellow-500 text-white cursor-not-allowed opacity-75","title":"Seat 1C - HELD - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-yellow-500 text-white cursor-not-allowed opacity-75","title":"Seat 1D - HELD - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 2A - BOOKED - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 2B - BOOKED - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 2C - BOOKED - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-[rgb(20_113_76)] text-white shadow-md scale-105","title":"Seat 2D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]]]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}]]],[[2,160]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400"},"1","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"All seats selected — ready to continue"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 100%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)] text-white"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"Seat 2D"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."],["BUTTON",{"disabled":"","class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],[[2,195]]]]]]]]],[[62,296]],[[61,11]]]],"viewport":{"width":1280,"height":720},"timestamp":46774.299,"wallTime":1784630707199,"collectionTime":1.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@860","startTime":46775.586,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"b7fc5f26f9008cd3580a0c53a5c062ec","phase":"before","event":""},"stepId":"pw:api@57","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"log","callId":"call@860","time":46775.619,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707202.jpeg","width":1280,"height":720,"timestamp":46775.662,"frameSwapWallTime":1784630707199.656} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707211.jpeg","width":1280,"height":720,"timestamp":46784.897,"frameSwapWallTime":1784630707209.406} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707228.jpeg","width":1280,"height":720,"timestamp":46801.744,"frameSwapWallTime":1784630707226.1428} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707236.jpeg","width":1280,"height":720,"timestamp":46809.635,"frameSwapWallTime":1784630707234.161} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707245.jpeg","width":1280,"height":720,"timestamp":46818.32,"frameSwapWallTime":1784630707242.879} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707261.jpeg","width":1280,"height":720,"timestamp":46834.886,"frameSwapWallTime":1784630707259.2969} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707269.jpeg","width":1280,"height":720,"timestamp":46843.103,"frameSwapWallTime":1784630707267.634} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707277.jpeg","width":1280,"height":720,"timestamp":46850.865,"frameSwapWallTime":1784630707275.315} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707286.jpeg","width":1280,"height":720,"timestamp":46859.913,"frameSwapWallTime":1784630707284.359} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707302.jpeg","width":1280,"height":720,"timestamp":46875.974,"frameSwapWallTime":1784630707300.487} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707340.jpeg","width":1280,"height":720,"timestamp":46914.003,"frameSwapWallTime":1784630707332.676} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707340.jpeg","width":1280,"height":720,"timestamp":46914.126,"frameSwapWallTime":1784630707333.534} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707340.jpeg","width":1280,"height":720,"timestamp":46914.186,"frameSwapWallTime":1784630707334.777} +{"type":"log","callId":"call@860","time":46915.666,"message":" navigated to \"http://localhost:5174/booking/review\""} +{"type":"after","callId":"call@860","endTime":46915.675} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707351.jpeg","width":1280,"height":720,"timestamp":46924.602,"frameSwapWallTime":1784630707346.9119} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707357.jpeg","width":1280,"height":720,"timestamp":46930.71,"frameSwapWallTime":1784630707355.532} +{"type":"after","callId":"call@855","endTime":46942.526} +{"type":"before","callId":"call@868","startTime":46942.601,"class":"Response","method":"body","params":{},"stepId":"pw:api@58","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"after","callId":"call@868","endTime":46943.246,"result":{"binary":""}} +{"type":"before","callId":"call@870","startTime":46944.277,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"09a58b34f917a51530624fbfc451f8f3","phase":"before","event":"response"},"stepId":"pw:api@59","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"before","callId":"call@873","startTime":46944.32,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@60","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@873"} +{"type":"frame-snapshot","snapshot":{"callId":"call@873","snapshotName":"before@call@873","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[63,0]],[[63,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[63,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[63,36]],[[63,43]],[[63,47]],[[63,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[63,55]],["OL",{"class":"space-y-1"},[[63,61]],[[53,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[63,74]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[63,77]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[63,79]]]],[[63,86]],[[63,91]]]]],[[63,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[63,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[63,132]],[[53,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[63,157]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[63,160]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[63,161]]]],[[63,164]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[63,166]]]],[[63,177]],[[63,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-28 lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Review your booking"],["DIV",{"class":"bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-3 mb-4 flex items-center gap-2"},["SPAN",{"class":"text-yellow-800 dark:text-yellow-200 text-sm"},"⏱️ Seats held for: ",["SPAN",{"class":"font-bold"}]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card overflow-hidden"},["DIV",{"class":"flex items-center gap-2 mb-6 pb-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"w-2 h-2 bg-primary rounded-full"}],["H2",{"class":"text-lg font-bold text-gray-900 dark:text-gray-100"},"Trip Details"],["SPAN",{"class":"ml-auto text-xs px-2.5 py-1 bg-primary/10 text-primary rounded-full font-semibold"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-8 flex-shrink-0"},["DIV",{"class":"w-4 h-4 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 dark:to-gray-700 my-2"}],["DIV",{"class":"w-4 h-4 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col"},["DIV",{"class":"pb-8"},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Alpha"]],["DIV",{"class":"pb-8"},["DIV",{"class":"flex items-center gap-6 text-sm text-gray-600 dark:text-gray-400"},["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"}]],["SPAN",{"class":"font-medium"},"4h 0m"]],["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M13 10V3L4 14h7v7l9-11h-7z"}]],["SPAN",{"class":"font-medium"},"Train ","UI-100"]]]],["DIV",{},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Charlie"]]]]],["DIV",{"class":"card"},["H2",{"class":"text-xl font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passengers"],["DIV",{"class":"space-y-3"},["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Adult 1"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Jun 15, 1990"," • ","OTHER"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"2D"],["P",{"class":"text-[10px] text-gray-400 dark:text-gray-500 mt-0.5"},"Economy Regular Intl"]]]]]],["DIV",{"class":"lg:hidden mt-4"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"USD 12.50"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"USD 12.50"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 py-3 z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary"},"USD 12.50"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"class":"btn-primary flex-1 py-2.5"},"Confirm "]]]]]]]],[[63,296]],[[62,11]]]],"viewport":{"width":1280,"height":720},"timestamp":46945.966,"wallTime":1784630707371,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@873","time":46946.247,"message":"waiting for getByRole('button', { name: /^confirm/i }).first()"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707373.jpeg","width":1280,"height":720,"timestamp":46947.089,"frameSwapWallTime":1784630707371.9648} +{"type":"log","callId":"call@873","time":46947.794,"message":" locator resolved to "} +{"type":"log","callId":"call@873","time":46948.196,"message":"attempting click action"} +{"type":"log","callId":"call@873","time":46948.209,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707382.jpeg","width":1280,"height":720,"timestamp":46955.358,"frameSwapWallTime":1784630707380.19} +{"type":"log","callId":"call@873","time":46962.542,"message":" element is not stable"} +{"type":"log","callId":"call@873","time":46962.551,"message":"retrying click action"} +{"type":"log","callId":"call@873","time":46962.566,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707389.jpeg","width":1280,"height":720,"timestamp":46963.288,"frameSwapWallTime":1784630707388.243} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707398.jpeg","width":1280,"height":720,"timestamp":46971.933,"frameSwapWallTime":1784630707396.762} +{"type":"log","callId":"call@873","time":46979.229,"message":" element is not stable"} +{"type":"log","callId":"call@873","time":46979.237,"message":"retrying click action"} +{"type":"log","callId":"call@873","time":46979.238,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707415.jpeg","width":1280,"height":720,"timestamp":46988.606,"frameSwapWallTime":1784630707413.375} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707423.jpeg","width":1280,"height":720,"timestamp":46996.821,"frameSwapWallTime":1784630707421.63} +{"type":"log","callId":"call@873","time":47000.814,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707431.jpeg","width":1280,"height":720,"timestamp":47005.272,"frameSwapWallTime":1784630707430.011} +{"type":"log","callId":"call@873","time":47012.311,"message":" element is not stable"} +{"type":"log","callId":"call@873","time":47012.321,"message":"retrying click action"} +{"type":"log","callId":"call@873","time":47012.334,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707440.jpeg","width":1280,"height":720,"timestamp":47013.47,"frameSwapWallTime":1784630707438.2578} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707456.jpeg","width":1280,"height":720,"timestamp":47030.264,"frameSwapWallTime":1784630707454.987} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707465.jpeg","width":1280,"height":720,"timestamp":47038.822,"frameSwapWallTime":1784630707463.533} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707473.jpeg","width":1280,"height":720,"timestamp":47047.143,"frameSwapWallTime":1784630707471.967} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707490.jpeg","width":1280,"height":720,"timestamp":47063.39,"frameSwapWallTime":1784630707488.1648} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707498.jpeg","width":1280,"height":720,"timestamp":47071.873,"frameSwapWallTime":1784630707496.5178} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707506.jpeg","width":1280,"height":720,"timestamp":47080.08,"frameSwapWallTime":1784630707504.8362} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707523.jpeg","width":1280,"height":720,"timestamp":47096.483,"frameSwapWallTime":1784630707521.3599} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707531.jpeg","width":1280,"height":720,"timestamp":47105.038,"frameSwapWallTime":1784630707529.744} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707540.jpeg","width":1280,"height":720,"timestamp":47113.396,"frameSwapWallTime":1784630707538.111} +{"type":"log","callId":"call@873","time":47113.654,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@873","time":47129.179,"message":" element is not stable"} +{"type":"log","callId":"call@873","time":47129.189,"message":"retrying click action"} +{"type":"log","callId":"call@873","time":47129.19,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707556.jpeg","width":1280,"height":720,"timestamp":47129.841,"frameSwapWallTime":1784630707554.71} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707565.jpeg","width":1280,"height":720,"timestamp":47138.336,"frameSwapWallTime":1784630707563.03} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707573.jpeg","width":1280,"height":720,"timestamp":47146.671,"frameSwapWallTime":1784630707571.406} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707581.jpeg","width":1280,"height":720,"timestamp":47154.893,"frameSwapWallTime":1784630707579.675} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707598.jpeg","width":1280,"height":720,"timestamp":47171.683,"frameSwapWallTime":1784630707596.4} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707606.jpeg","width":1280,"height":720,"timestamp":47179.362,"frameSwapWallTime":1784630707604.156} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707615.jpeg","width":1280,"height":720,"timestamp":47188.375,"frameSwapWallTime":1784630707613.0781} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707631.jpeg","width":1280,"height":720,"timestamp":47204.953,"frameSwapWallTime":1784630707629.6238} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707639.jpeg","width":1280,"height":720,"timestamp":47213.174,"frameSwapWallTime":1784630707637.844} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707648.jpeg","width":1280,"height":720,"timestamp":47221.611,"frameSwapWallTime":1784630707646.293} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707656.jpeg","width":1280,"height":720,"timestamp":47230.089,"frameSwapWallTime":1784630707654.768} +{"type":"log","callId":"call@873","time":47230.324,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@873","time":47245.998,"message":" element is not stable"} +{"type":"log","callId":"call@873","time":47246.008,"message":"retrying click action"} +{"type":"log","callId":"call@873","time":47246.01,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707673.jpeg","width":1280,"height":720,"timestamp":47246.601,"frameSwapWallTime":1784630707671.357} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707681.jpeg","width":1280,"height":720,"timestamp":47255.049,"frameSwapWallTime":1784630707679.7432} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707686.jpeg","width":1280,"height":720,"timestamp":47259.444,"frameSwapWallTime":1784630707684.13} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707693.jpeg","width":1280,"height":720,"timestamp":47266.978,"frameSwapWallTime":1784630707691.784} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707710.jpeg","width":1280,"height":720,"timestamp":47283.556,"frameSwapWallTime":1784630707708.3389} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707718.jpeg","width":1280,"height":720,"timestamp":47291.884,"frameSwapWallTime":1784630707716.702} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707726.jpeg","width":1280,"height":720,"timestamp":47300.228,"frameSwapWallTime":1784630707725.071} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707735.jpeg","width":1280,"height":720,"timestamp":47308.538,"frameSwapWallTime":1784630707733.419} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707753.jpeg","width":1280,"height":720,"timestamp":47326.596,"frameSwapWallTime":1784630707750.5889} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707760.jpeg","width":1280,"height":720,"timestamp":47334.192,"frameSwapWallTime":1784630707758.7668} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707769.jpeg","width":1280,"height":720,"timestamp":47342.659,"frameSwapWallTime":1784630707767.13} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707785.jpeg","width":1280,"height":720,"timestamp":47358.977,"frameSwapWallTime":1784630707783.63} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707793.jpeg","width":1280,"height":720,"timestamp":47367.258,"frameSwapWallTime":1784630707792.043} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707801.jpeg","width":1280,"height":720,"timestamp":47375.272,"frameSwapWallTime":1784630707800.127} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707818.jpeg","width":1280,"height":720,"timestamp":47392.054,"frameSwapWallTime":1784630707816.813} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707827.jpeg","width":1280,"height":720,"timestamp":47400.338,"frameSwapWallTime":1784630707825.106} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707835.jpeg","width":1280,"height":720,"timestamp":47408.626,"frameSwapWallTime":1784630707833.48} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707852.jpeg","width":1280,"height":720,"timestamp":47425.385,"frameSwapWallTime":1784630707850.072} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707860.jpeg","width":1280,"height":720,"timestamp":47433.686,"frameSwapWallTime":1784630707858.5168} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707868.jpeg","width":1280,"height":720,"timestamp":47441.844,"frameSwapWallTime":1784630707866.699} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630707885.jpeg","width":1280,"height":720,"timestamp":47458.705,"frameSwapWallTime":1784630707883.468} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708093.jpeg","width":1280,"height":720,"timestamp":47667.081,"frameSwapWallTime":1784630708091.827} +{"type":"log","callId":"call@873","time":47746.971,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@873","time":47762.492,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@873","time":47762.503,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@873","time":47763.032,"message":" done scrolling"} +{"type":"input","callId":"call@873","point":{"x":1106.65,"y":327},"inputSnapshot":"input@call@873"} +{"type":"frame-snapshot","snapshot":{"callId":"call@873","snapshotName":"input@call@873","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[1,194]],"viewport":{"width":1280,"height":720},"timestamp":47764.19,"wallTime":1784630708190,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@873","time":47765.047,"message":" performing click action"} +{"type":"log","callId":"call@873","time":47767.106,"message":" click action done"} +{"type":"log","callId":"call@873","time":47767.114,"message":" waiting for scheduled navigations to finish"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708194.jpeg","width":1280,"height":720,"timestamp":47767.559,"frameSwapWallTime":1784630708191.937} +{"type":"log","callId":"call@873","time":47767.706,"message":" navigations have finished"} +{"type":"after","callId":"call@873","endTime":47767.742,"afterSnapshot":"after@call@873"} +{"type":"frame-snapshot","snapshot":{"callId":"call@873","snapshotName":"after@call@873","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[2,194]],"viewport":{"width":1280,"height":720},"timestamp":47768.405,"wallTime":1784630708194,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708201.jpeg","width":1280,"height":720,"timestamp":47774.991,"frameSwapWallTime":1784630708199.636} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708210.jpeg","width":1280,"height":720,"timestamp":47783.329,"frameSwapWallTime":1784630708207.9949} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708219.jpeg","width":1280,"height":720,"timestamp":47792.822,"frameSwapWallTime":1784630708217.4448} +{"type":"after","callId":"call@870","endTime":47807.203} +{"type":"before","callId":"call@878","startTime":47807.281,"class":"Response","method":"body","params":{},"stepId":"pw:api@61","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708236.jpeg","width":1280,"height":720,"timestamp":47809.594,"frameSwapWallTime":1784630708234.243} +{"type":"after","callId":"call@878","endTime":47810.927,"result":{"binary":""}} +{"type":"before","callId":"call@880","startTime":47812.377,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"6a08298b3a5dacc53fa6c41516c158ce","phase":"before","event":""},"stepId":"pw:api@63","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"log","callId":"call@880","time":47812.405,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708244.jpeg","width":1280,"height":720,"timestamp":47817.473,"frameSwapWallTime":1784630708242.08} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708252.jpeg","width":1280,"height":720,"timestamp":47826.037,"frameSwapWallTime":1784630708250.708} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708269.jpeg","width":1280,"height":720,"timestamp":47842.65,"frameSwapWallTime":1784630708267.339} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708277.jpeg","width":1280,"height":720,"timestamp":47850.391,"frameSwapWallTime":1784630708275.1328} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708285.jpeg","width":1280,"height":720,"timestamp":47859.218,"frameSwapWallTime":1784630708283.904} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708302.jpeg","width":1280,"height":720,"timestamp":47875.946,"frameSwapWallTime":1784630708300.61} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708310.jpeg","width":1280,"height":720,"timestamp":47884.187,"frameSwapWallTime":1784630708308.847} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708319.jpeg","width":1280,"height":720,"timestamp":47892.403,"frameSwapWallTime":1784630708317.142} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708336.jpeg","width":1280,"height":720,"timestamp":47909.459,"frameSwapWallTime":1784630708334.128} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708343.jpeg","width":1280,"height":720,"timestamp":47917.014,"frameSwapWallTime":1784630708341.763} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708352.jpeg","width":1280,"height":720,"timestamp":47925.532,"frameSwapWallTime":1784630708350.23} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708369.jpeg","width":1280,"height":720,"timestamp":47942.352,"frameSwapWallTime":1784630708366.9282} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708377.jpeg","width":1280,"height":720,"timestamp":47950.84,"frameSwapWallTime":1784630708375.538} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708385.jpeg","width":1280,"height":720,"timestamp":47959.125,"frameSwapWallTime":1784630708383.8699} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708394.jpeg","width":1280,"height":720,"timestamp":47967.339,"frameSwapWallTime":1784630708392.079} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708410.jpeg","width":1280,"height":720,"timestamp":47984.126,"frameSwapWallTime":1784630708408.8188} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708419.jpeg","width":1280,"height":720,"timestamp":47992.527,"frameSwapWallTime":1784630708417.1829} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708454.jpeg","width":1280,"height":720,"timestamp":48028.184,"frameSwapWallTime":1784630708447.073} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708454.jpeg","width":1280,"height":720,"timestamp":48028.263,"frameSwapWallTime":1784630708448.075} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708456.jpeg","width":1280,"height":720,"timestamp":48030.125,"frameSwapWallTime":1784630708450.8008} +{"type":"log","callId":"call@880","time":48030.489,"message":" navigated to \"http://localhost:5174/booking/payment\""} +{"type":"after","callId":"call@880","endTime":48030.498} +{"type":"before","callId":"call@885","startTime":48030.556,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"5300627a1569d3ae2ca3f42cb532c73b","phase":"before","event":"response"},"stepId":"pw:api@64","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"before","callId":"call@888","startTime":48030.609,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"pay-method-WALLET\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@65","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@888"} +{"type":"frame-snapshot","snapshot":{"callId":"call@888","snapshotName":"before@call@888","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[66,0]],[[66,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[66,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[66,36]],[[66,43]],[[66,47]],[[66,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[66,55]],["OL",{"class":"space-y-1"},[[66,61]],[[56,32]],[[6,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[66,79]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[66,82]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[66,84]]]],[[66,91]]]]],[[66,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[66,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[66,132]],[[56,47]],[[6,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[66,166]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[66,169]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[66,170]]]],[[66,173]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[66,175]]]],[[66,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Complete payment"],["DIV",{"class":"card bg-green-50 dark:bg-green-900/20 border border-green-200 dark:border-green-800 mb-4 flex items-start gap-3"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-check-big w-6 h-6 text-green-600 dark:text-green-400 flex-shrink-0 mt-0.5"},["path",{"d":"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{"d":"m9 11 3 3L22 4"}]],["DIV",{},["P",{"class":"text-sm font-semibold text-green-800 dark:text-green-300"},"Your booking is successfully reserved"],["P",{"class":"text-sm text-green-700 dark:text-green-400 mt-0.5"},"Booking Reference: ",["SPAN",{"class":"font-bold"},"NAIOLE"]],["P",{"class":"text-xs text-green-700/80 dark:text-green-400/80 mt-1"},"Please complete the payment below to confirm your booking. Your seats are held temporarily until payment is completed."]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 mb-4"},"Select payment method"],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-wallet w-5 h-5 text-primary"},["path",{"d":"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{"d":"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"Wallet"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]],["BUTTON",{"data-testid":"pay-method-TELEBIRR","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-smartphone w-5 h-5 text-primary"},["rect",{"width":"14","height":"20","x":"5","y":"2","rx":"2","ry":"2"}],["path",{"d":"M12 18h.01"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"telebirr"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"NAIOLE"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"USD"," ","12.50"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay USD 12.50"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"NAIOLE"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"USD"," ","12.50"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay USD 12.50"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},"USD"," ","12.50"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"disabled":"","class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},"Pay USD 12.50"]]]]]]]],[[66,296]],[[65,11]]]],"viewport":{"width":1280,"height":720},"timestamp":48032.406,"wallTime":1784630708458,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@888","time":48032.716,"message":"waiting for getByTestId('pay-method-WALLET').first()"} +{"type":"log","callId":"call@888","time":48034.204,"message":" locator resolved to "} +{"type":"log","callId":"call@888","time":48034.872,"message":"attempting click action"} +{"type":"log","callId":"call@888","time":48034.921,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708466.jpeg","width":1280,"height":720,"timestamp":48039.35,"frameSwapWallTime":1784630708463.554} +{"type":"log","callId":"call@888","time":48046.046,"message":" element is not stable"} +{"type":"log","callId":"call@888","time":48046.058,"message":"retrying click action"} +{"type":"log","callId":"call@888","time":48046.076,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708473.jpeg","width":1280,"height":720,"timestamp":48046.718,"frameSwapWallTime":1784630708471.65} +{"type":"log","callId":"call@888","time":48062.71,"message":" element is not stable"} +{"type":"log","callId":"call@888","time":48062.724,"message":"retrying click action"} +{"type":"log","callId":"call@888","time":48062.726,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708489.jpeg","width":1280,"height":720,"timestamp":48063.195,"frameSwapWallTime":1784630708488.033} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708498.jpeg","width":1280,"height":720,"timestamp":48071.778,"frameSwapWallTime":1784630708496.5562} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708506.jpeg","width":1280,"height":720,"timestamp":48079.997,"frameSwapWallTime":1784630708504.741} +{"type":"log","callId":"call@888","time":48084.103,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@888","time":48096.006,"message":" element is not stable"} +{"type":"log","callId":"call@888","time":48096.019,"message":"retrying click action"} +{"type":"log","callId":"call@888","time":48096.021,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708523.jpeg","width":1280,"height":720,"timestamp":48096.63,"frameSwapWallTime":1784630708521.484} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708531.jpeg","width":1280,"height":720,"timestamp":48104.884,"frameSwapWallTime":1784630708529.4958} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708540.jpeg","width":1280,"height":720,"timestamp":48113.507,"frameSwapWallTime":1784630708538.1218} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708556.jpeg","width":1280,"height":720,"timestamp":48129.769,"frameSwapWallTime":1784630708554.474} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708564.jpeg","width":1280,"height":720,"timestamp":48138.145,"frameSwapWallTime":1784630708562.939} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708572.jpeg","width":1280,"height":720,"timestamp":48146.093,"frameSwapWallTime":1784630708570.7368} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708581.jpeg","width":1280,"height":720,"timestamp":48154.764,"frameSwapWallTime":1784630708579.4648} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708598.jpeg","width":1280,"height":720,"timestamp":48171.523,"frameSwapWallTime":1784630708596.303} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708606.jpeg","width":1280,"height":720,"timestamp":48179.939,"frameSwapWallTime":1784630708604.6218} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708614.jpeg","width":1280,"height":720,"timestamp":48188.041,"frameSwapWallTime":1784630708612.664} +{"type":"log","callId":"call@888","time":48196.837,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708631.jpeg","width":1280,"height":720,"timestamp":48204.589,"frameSwapWallTime":1784630708629.292} +{"type":"log","callId":"call@888","time":48212.163,"message":" element is not stable"} +{"type":"log","callId":"call@888","time":48212.184,"message":"retrying click action"} +{"type":"log","callId":"call@888","time":48212.186,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708639.jpeg","width":1280,"height":720,"timestamp":48212.863,"frameSwapWallTime":1784630708637.6108} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708647.jpeg","width":1280,"height":720,"timestamp":48221.169,"frameSwapWallTime":1784630708645.741} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708656.jpeg","width":1280,"height":720,"timestamp":48229.707,"frameSwapWallTime":1784630708654.392} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708672.jpeg","width":1280,"height":720,"timestamp":48246.247,"frameSwapWallTime":1784630708670.889} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708681.jpeg","width":1280,"height":720,"timestamp":48254.613,"frameSwapWallTime":1784630708679.328} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708689.jpeg","width":1280,"height":720,"timestamp":48263.046,"frameSwapWallTime":1784630708687.694} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708698.jpeg","width":1280,"height":720,"timestamp":48271.384,"frameSwapWallTime":1784630708695.952} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708714.jpeg","width":1280,"height":720,"timestamp":48287.985,"frameSwapWallTime":1784630708712.575} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708722.jpeg","width":1280,"height":720,"timestamp":48296.293,"frameSwapWallTime":1784630708720.9111} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708731.jpeg","width":1280,"height":720,"timestamp":48304.664,"frameSwapWallTime":1784630708729.347} +{"type":"log","callId":"call@888","time":48313.642,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708747.jpeg","width":1280,"height":720,"timestamp":48320.9,"frameSwapWallTime":1784630708745.442} +{"type":"log","callId":"call@888","time":48329.124,"message":" element is not stable"} +{"type":"log","callId":"call@888","time":48329.136,"message":"retrying click action"} +{"type":"log","callId":"call@888","time":48329.138,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708756.jpeg","width":1280,"height":720,"timestamp":48329.974,"frameSwapWallTime":1784630708754.69} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708764.jpeg","width":1280,"height":720,"timestamp":48338.035,"frameSwapWallTime":1784630708762.6729} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708772.jpeg","width":1280,"height":720,"timestamp":48346.283,"frameSwapWallTime":1784630708770.976} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708789.jpeg","width":1280,"height":720,"timestamp":48362.695,"frameSwapWallTime":1784630708787.315} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708797.jpeg","width":1280,"height":720,"timestamp":48371.238,"frameSwapWallTime":1784630708795.786} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708803.jpeg","width":1280,"height":720,"timestamp":48376.772,"frameSwapWallTime":1784630708801.464} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708810.jpeg","width":1280,"height":720,"timestamp":48384.244,"frameSwapWallTime":1784630708809.04} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708826.jpeg","width":1280,"height":720,"timestamp":48400.252,"frameSwapWallTime":1784630708825.044} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708835.jpeg","width":1280,"height":720,"timestamp":48408.55,"frameSwapWallTime":1784630708833.376} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708843.jpeg","width":1280,"height":720,"timestamp":48417.023,"frameSwapWallTime":1784630708841.807} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708852.jpeg","width":1280,"height":720,"timestamp":48425.741,"frameSwapWallTime":1784630708850.374} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708869.jpeg","width":1280,"height":720,"timestamp":48442.512,"frameSwapWallTime":1784630708867.148} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708877.jpeg","width":1280,"height":720,"timestamp":48450.797,"frameSwapWallTime":1784630708875.439} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708885.jpeg","width":1280,"height":720,"timestamp":48458.797,"frameSwapWallTime":1784630708883.457} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708894.jpeg","width":1280,"height":720,"timestamp":48467.409,"frameSwapWallTime":1784630708892.022} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708910.jpeg","width":1280,"height":720,"timestamp":48483.701,"frameSwapWallTime":1784630708908.4429} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708918.jpeg","width":1280,"height":720,"timestamp":48491.862,"frameSwapWallTime":1784630708916.699} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708926.jpeg","width":1280,"height":720,"timestamp":48500.296,"frameSwapWallTime":1784630708925.061} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708935.jpeg","width":1280,"height":720,"timestamp":48508.56,"frameSwapWallTime":1784630708933.344} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708951.jpeg","width":1280,"height":720,"timestamp":48525.282,"frameSwapWallTime":1784630708950.0488} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630708960.jpeg","width":1280,"height":720,"timestamp":48533.673,"frameSwapWallTime":1784630708958.438} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709168.jpeg","width":1280,"height":720,"timestamp":48742.05,"frameSwapWallTime":1784630709166.638} +{"type":"log","callId":"call@888","time":48830.165,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@888","time":48845.436,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@888","time":48845.445,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@888","time":48845.834,"message":" done scrolling"} +{"type":"input","callId":"call@888","point":{"x":598.66,"y":310},"inputSnapshot":"input@call@888"} +{"type":"frame-snapshot","snapshot":{"callId":"call@888","snapshotName":"input@call@888","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":[[1,262]],"viewport":{"width":1280,"height":720},"timestamp":48846.83,"wallTime":1784630709273,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@888","time":48847.603,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709276.jpeg","width":1280,"height":720,"timestamp":48849.943,"frameSwapWallTime":1784630709274.7468} +{"type":"log","callId":"call@888","time":48852.324,"message":" click action done"} +{"type":"log","callId":"call@888","time":48852.328,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@888","time":48852.519,"message":" navigations have finished"} +{"type":"after","callId":"call@888","endTime":48852.586,"afterSnapshot":"after@call@888"} +{"type":"frame-snapshot","snapshot":{"callId":"call@888","snapshotName":"after@call@888","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[68,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,58]],[[2,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[2,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-primary bg-primary/8 dark:bg-primary/15 shadow-md "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-primary"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-wallet w-5 h-5 text-white"},[[2,74]],[[2,75]]]],[[2,84]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-check-big w-5 h-5 text-primary flex-shrink-0"},["path",{"d":"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{"d":"m9 11 3 3L22 4"}]]]],[[2,99]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"NAIOLE"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin text-primary"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating amount..."]],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"NAIOLE"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin text-primary"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating amount..."]],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},[[2,242]],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-3.5 h-3.5 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]],["DIV",{"class":"flex gap-3"},[[2,251]],["BUTTON",{"disabled":"","class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating..."]]]]]]]]],[[68,296]],[[67,11]]]],"viewport":{"width":1280,"height":720},"timestamp":48853.737,"wallTime":1784630709279,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@890","startTime":48854.712,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^pay\\b/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@66","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","beforeSnapshot":"before@call@890"} +{"type":"frame-snapshot","snapshot":{"callId":"call@890","snapshotName":"before@call@890","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":[[1,169]],"viewport":{"width":1280,"height":720},"timestamp":48855.385,"wallTime":1784630709281,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@890","time":48855.529,"message":"waiting for getByRole('button', { name: /^pay\\b/i }).first()"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709284.jpeg","width":1280,"height":720,"timestamp":48858.255,"frameSwapWallTime":1784630709282.888} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709294.jpeg","width":1280,"height":720,"timestamp":48868.178,"frameSwapWallTime":1784630709292.856} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709310.jpeg","width":1280,"height":720,"timestamp":48884.17,"frameSwapWallTime":1784630709308.861} +{"type":"log","callId":"call@890","time":48884.344,"message":" locator resolved to "} +{"type":"log","callId":"call@890","time":48884.704,"message":"attempting click action"} +{"type":"log","callId":"call@890","time":48884.719,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709319.jpeg","width":1280,"height":720,"timestamp":48892.573,"frameSwapWallTime":1784630709317.168} +{"type":"log","callId":"call@890","time":48895.821,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@890","time":48895.829,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@890","time":48896.017,"message":" done scrolling"} +{"type":"input","callId":"call@890","point":{"x":1106.65,"y":696},"inputSnapshot":"input@call@890"} +{"type":"frame-snapshot","snapshot":{"callId":"call@890","snapshotName":"input@call@890","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"9","lang":"en","dir":"ltr","class":"light","style":""},[[4,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[4,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[70,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,58]],[[4,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[2,8]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"NAIOLE"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","1250.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","1250.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 1250.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"NAIOLE"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","1250.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","1250.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"__playwright_target__":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 1250.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},[[4,242]],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},"ETB"," ","1250.00"]],["DIV",{"class":"flex gap-3"},[[4,251]],["BUTTON",{"class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 1250.00"]]]]]]]],[[70,296]],[[69,11]]]],"viewport":{"width":1280,"height":720},"timestamp":48897.428,"wallTime":1784630709323,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@890","time":48898.206,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709327.jpeg","width":1280,"height":720,"timestamp":48901.028,"frameSwapWallTime":1784630709325.692} +{"type":"log","callId":"call@890","time":48903.629,"message":" click action done"} +{"type":"log","callId":"call@890","time":48903.631,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@890","time":48903.854,"message":" navigations have finished"} +{"type":"after","callId":"call@890","endTime":48903.889,"afterSnapshot":"after@call@890"} +{"type":"frame-snapshot","snapshot":{"callId":"call@890","snapshotName":"after@call@890","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","frameId":"frame@d0f0d4aedbb0a150abeedacb2d5f0f0c","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"9","lang":"en","dir":"ltr","class":"light","style":""},[[5,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[5,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[71,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,58]],[[5,71]],["DIV",{"class":"fixed inset-0 bg-black/60 flex items-center justify-center z-50"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-xl p-8 max-w-sm w-full mx-4 text-center shadow-2xl"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-14 h-14 text-primary animate-spin mx-auto mb-4"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]],["H3",{"class":"text-lg font-bold mb-1 text-gray-900 dark:text-gray-100"},"Processing payment"],["P",{"class":"text-sm text-gray-500 dark:text-gray-400"},"Please wait..."]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[5,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-primary bg-primary/8 dark:bg-primary/15 shadow-md opacity-50 cursor-not-allowed","disabled":""},[[3,5]]],["BUTTON",{"data-testid":"pay-method-TELEBIRR","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 opacity-50 cursor-not-allowed","disabled":""},[[5,98]]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"NAIOLE"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","1250.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","1250.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]],["BUTTON",{"disabled":"","class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"NAIOLE"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"USD 12.50"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","1250.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","1250.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]],["BUTTON",{"disabled":"","class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},[[1,157]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2","disabled":""},[[5,249]],[[5,250]]],["BUTTON",{"class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed","disabled":""},["SPAN",{"class":"flex items-center justify-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]]]]]]]]],[[71,296]],[[70,11]]]],"viewport":{"width":1280,"height":720},"timestamp":48905.704,"wallTime":1784630709331,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709345.jpeg","width":1280,"height":720,"timestamp":48918.796,"frameSwapWallTime":1784630709343.519} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709352.jpeg","width":1280,"height":720,"timestamp":48925.983,"frameSwapWallTime":1784630709350.769} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709361.jpeg","width":1280,"height":720,"timestamp":48935.274,"frameSwapWallTime":1784630709360.046} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709370.jpeg","width":1280,"height":720,"timestamp":48943.491,"frameSwapWallTime":1784630709368.332} +{"type":"after","callId":"call@885","endTime":48953.165} +{"type":"before","callId":"call@895","startTime":48953.249,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"ccd5c5313bf1f4ad69d85828864b1df9","phase":"before","event":""},"stepId":"pw:api@67","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5"} +{"type":"log","callId":"call@895","time":48953.265,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709386.jpeg","width":1280,"height":720,"timestamp":48959.79,"frameSwapWallTime":1784630709384.5479} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709395.jpeg","width":1280,"height":720,"timestamp":48968.736,"frameSwapWallTime":1784630709393.441} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709403.jpeg","width":1280,"height":720,"timestamp":48976.716,"frameSwapWallTime":1784630709401.4858} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709411.jpeg","width":1280,"height":720,"timestamp":48984.825,"frameSwapWallTime":1784630709409.648} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709428.jpeg","width":1280,"height":720,"timestamp":49001.778,"frameSwapWallTime":1784630709426.558} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709436.jpeg","width":1280,"height":720,"timestamp":49009.782,"frameSwapWallTime":1784630709434.678} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709445.jpeg","width":1280,"height":720,"timestamp":49018.419,"frameSwapWallTime":1784630709443.236} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709461.jpeg","width":1280,"height":720,"timestamp":49035.205,"frameSwapWallTime":1784630709459.995} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709469.jpeg","width":1280,"height":720,"timestamp":49043.126,"frameSwapWallTime":1784630709468.0369} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709478.jpeg","width":1280,"height":720,"timestamp":49051.466,"frameSwapWallTime":1784630709476.348} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709486.jpeg","width":1280,"height":720,"timestamp":49059.821,"frameSwapWallTime":1784630709484.7} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709503.jpeg","width":1280,"height":720,"timestamp":49076.463,"frameSwapWallTime":1784630709501.2852} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709511.jpeg","width":1280,"height":720,"timestamp":49084.561,"frameSwapWallTime":1784630709509.471} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709519.jpeg","width":1280,"height":720,"timestamp":49092.916,"frameSwapWallTime":1784630709517.801} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709536.jpeg","width":1280,"height":720,"timestamp":49109.5,"frameSwapWallTime":1784630709534.384} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709543.jpeg","width":1280,"height":720,"timestamp":49117.014,"frameSwapWallTime":1784630709541.906} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709552.jpeg","width":1280,"height":720,"timestamp":49126.27,"frameSwapWallTime":1784630709551.1738} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709561.jpeg","width":1280,"height":720,"timestamp":49134.586,"frameSwapWallTime":1784630709559.52} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709577.jpeg","width":1280,"height":720,"timestamp":49151.141,"frameSwapWallTime":1784630709576.052} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709586.jpeg","width":1280,"height":720,"timestamp":49159.581,"frameSwapWallTime":1784630709584.393} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709594.jpeg","width":1280,"height":720,"timestamp":49168.023,"frameSwapWallTime":1784630709592.8818} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709611.jpeg","width":1280,"height":720,"timestamp":49184.566,"frameSwapWallTime":1784630709609.457} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709619.jpeg","width":1280,"height":720,"timestamp":49192.865,"frameSwapWallTime":1784630709617.7002} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709627.jpeg","width":1280,"height":720,"timestamp":49201.15,"frameSwapWallTime":1784630709626.08} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709644.jpeg","width":1280,"height":720,"timestamp":49217.915,"frameSwapWallTime":1784630709642.7952} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709652.jpeg","width":1280,"height":720,"timestamp":49226.227,"frameSwapWallTime":1784630709651.139} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709661.jpeg","width":1280,"height":720,"timestamp":49234.596,"frameSwapWallTime":1784630709659.484} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709669.jpeg","width":1280,"height":720,"timestamp":49243.018,"frameSwapWallTime":1784630709667.907} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709686.jpeg","width":1280,"height":720,"timestamp":49259.712,"frameSwapWallTime":1784630709684.4858} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709694.jpeg","width":1280,"height":720,"timestamp":49268.029,"frameSwapWallTime":1784630709692.922} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709703.jpeg","width":1280,"height":720,"timestamp":49276.597,"frameSwapWallTime":1784630709701.4412} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709711.jpeg","width":1280,"height":720,"timestamp":49285.126,"frameSwapWallTime":1784630709709.921} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709728.jpeg","width":1280,"height":720,"timestamp":49301.748,"frameSwapWallTime":1784630709726.503} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709736.jpeg","width":1280,"height":720,"timestamp":49309.951,"frameSwapWallTime":1784630709734.7468} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709745.jpeg","width":1280,"height":720,"timestamp":49318.372,"frameSwapWallTime":1784630709743.1682} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709761.jpeg","width":1280,"height":720,"timestamp":49334.772,"frameSwapWallTime":1784630709759.5378} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709770.jpeg","width":1280,"height":720,"timestamp":49343.465,"frameSwapWallTime":1784630709768.293} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709778.jpeg","width":1280,"height":720,"timestamp":49351.323,"frameSwapWallTime":1784630709776.178} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709786.jpeg","width":1280,"height":720,"timestamp":49359.544,"frameSwapWallTime":1784630709784.435} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709802.jpeg","width":1280,"height":720,"timestamp":49376.129,"frameSwapWallTime":1784630709801.055} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709811.jpeg","width":1280,"height":720,"timestamp":49384.711,"frameSwapWallTime":1784630709809.562} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709819.jpeg","width":1280,"height":720,"timestamp":49393.175,"frameSwapWallTime":1784630709817.977} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709836.jpeg","width":1280,"height":720,"timestamp":49409.833,"frameSwapWallTime":1784630709834.678} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709844.jpeg","width":1280,"height":720,"timestamp":49417.887,"frameSwapWallTime":1784630709842.785} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709853.jpeg","width":1280,"height":720,"timestamp":49426.516,"frameSwapWallTime":1784630709851.344} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709861.jpeg","width":1280,"height":720,"timestamp":49434.646,"frameSwapWallTime":1784630709859.518} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709878.jpeg","width":1280,"height":720,"timestamp":49451.438,"frameSwapWallTime":1784630709876.1748} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630709886.jpeg","width":1280,"height":720,"timestamp":49459.772,"frameSwapWallTime":1784630709884.67} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630710094.jpeg","width":1280,"height":720,"timestamp":49667.876,"frameSwapWallTime":1784630710092.784} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630710303.jpeg","width":1280,"height":720,"timestamp":49876.692,"frameSwapWallTime":1784630710301.385} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630710511.jpeg","width":1280,"height":720,"timestamp":50084.644,"frameSwapWallTime":1784630710509.519} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630710716.jpeg","width":1280,"height":720,"timestamp":50289.601,"frameSwapWallTime":1784630710714.469} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630710923.jpeg","width":1280,"height":720,"timestamp":50497.025,"frameSwapWallTime":1784630710921.908} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630711132.jpeg","width":1280,"height":720,"timestamp":50705.414,"frameSwapWallTime":1784630711130.276} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630711349.jpeg","width":1280,"height":720,"timestamp":50922.365,"frameSwapWallTime":1784630711347.1611} +{"type":"log","callId":"call@895","time":51069.278,"message":" navigated to \"http://localhost:5174/booking/confirmation\""} +{"type":"after","callId":"call@895","endTime":51069.292} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630711500.jpeg","width":1280,"height":720,"timestamp":51073.427,"frameSwapWallTime":1784630711498.44} +{"type":"screencast-frame","pageId":"page@442ebe9c25a81aa564f023f3b02d20f5","sha1":"page@442ebe9c25a81aa564f023f3b02d20f5-1784630711507.jpeg","width":1280,"height":720,"timestamp":51081.094,"frameSwapWallTime":1784630711506.166} diff --git a/test-results/.playwright-artifacts-0/traces/c253b00a4485d01c776e-78281d70bae243a4c9f9-recording2.network b/test-results/.playwright-artifacts-0/traces/c253b00a4485d01c776e-78281d70bae243a4c9f9-recording2.network new file mode 100644 index 000000000..24605c009 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/c253b00a4485d01c776e-78281d70bae243a4c9f9-recording2.network @@ -0,0 +1,42 @@ +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.021Z","time":21.304000000000002,"request":{"method":"GET","url":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"},{"name":"Accept-Language","value":"en-US"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"origin","value":"00000000-0000-4000-8000-000000000020"},{"name":"destination","value":"00000000-0000-4000-8000-000000000022"},{"name":"date","value":"2026-07-23"},{"name":"tripType","value":"ONE_WAY"},{"name":"adults","value":"1"},{"name":"children","value":"0"},{"name":"nationality","value":"ETHIOPIAN"}],"headersSize":491,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/html; charset=utf-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"X-Powered-By","value":"Next.js"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":51421,"mimeType":"text/html; charset=utf-8","compression":41208,"_sha1":"9e26bfabb0f67ea425ca915ce7e32103011aa751.html"},"headersSize":765,"bodySize":10213,"redirectURL":"","_transferSize":10978},"cache":{},"timings":{"dns":0.009,"connect":0.235,"ssl":1.387,"send":0,"wait":17.198,"receive":2.475},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":18594.968,"_resourceType":"document","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.041Z","time":4.173,"request":{"method":"GET","url":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"url","value":"/edr-logo.png"},{"name":"w","value":"256"},{"name":"q","value":"75"}],"headersSize":602,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"public, max-age=0, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Disposition","value":"inline; filename=\"edr-logo.webp\""},{"name":"Content-Length","value":"5926"},{"name":"Content-Security-Policy","value":"script-src 'none'; frame-src 'none'; sandbox;"},{"name":"Content-Type","value":"image/webp"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Vary","value":"Accept"},{"name":"X-Nextjs-Cache","value":"HIT"}],"content":{"size":5926,"mimeType":"image/webp","compression":0,"_sha1":"d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp"},"headersSize":416,"bodySize":5926,"redirectURL":"","_transferSize":6342},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.413,"receive":2.76},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":18616.821,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.042Z","time":6.792999999999999,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/webpack.js?v=1784630679028","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630679028"}],"headersSize":560,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"dc1e-19f8377166c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":369,"bodySize":10547,"redirectURL":"","_transferSize":10916},"cache":{},"timings":{"dns":0.006,"connect":0.26,"ssl":1.388,"send":0,"wait":1.938,"receive":3.201},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":18617.914,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.042Z","time":7.409000000000001,"request":{"method":"GET","url":"http://localhost:5174/_next/static/css/app/layout.css?v=1784630679028","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630679028"}],"headersSize":576,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/css; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"184e1-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":99553,"mimeType":"text/css; charset=UTF-8","compression":84302,"_sha1":"37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css"},"headersSize":356,"bodySize":15251,"redirectURL":"","_transferSize":15607},"cache":{},"timings":{"dns":0.006,"connect":0.259,"ssl":1.383,"send":0,"wait":2.552,"receive":3.209},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":18617.029,"_resourceType":"stylesheet","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.042Z","time":7.755,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app-pages-internals.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":572,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"256bc-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":33746,"redirectURL":"","_transferSize":34116},"cache":{},"timings":{"dns":0.002,"connect":0.17,"ssl":1.373,"send":0,"wait":1.444,"receive":4.766},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":18618.056,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.042Z","time":10.312000000000001,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":571,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"2c9d3-19f8376f06f\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":51283,"redirectURL":"","_transferSize":51653},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.34,"receive":7.972},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":18618.144,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.042Z","time":41.104000000000006,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":563,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"1c4c9e-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":434806,"redirectURL":"","_transferSize":435177},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.587,"receive":38.517},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":18618.275,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.042Z","time":44.387,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/results/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":577,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"20cb55-19f8376f071\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":479485,"redirectURL":"","_transferSize":479856},"cache":{},"timings":{"dns":0.003,"connect":0.121,"ssl":1.474,"send":0,"wait":2.38,"receive":40.409},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":18618.097,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.042Z","time":112.16799999999999,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/main-app.js?v=1784630679028","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630679028"}],"headersSize":561,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"5ec9be-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":1354462,"redirectURL":"","_transferSize":1354833},"cache":{},"timings":{"dns":0.002,"connect":0.26,"ssl":1.546,"send":0,"wait":2.37,"receive":107.99},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":18617.993,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.481Z","time":75.848,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":675,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"229-V1E+aRKUTpqoyNRfQolr95mcSdA\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"57513e6912944e9aa8c8d45f42896bf7999c49d0.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":0.009,"connect":0.275,"ssl":1.495,"send":0,"wait":11.559,"receive":62.51},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19116.32,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.478Z","time":81.086,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_features_support_SupportWidget_tsx.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":610,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"f9fd6-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":233760,"redirectURL":"","_transferSize":234130},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.678,"receive":79.408},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19115.028,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.481Z","time":80.074,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":675,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"229-icJgN1Za5n30MwhN0C9iTNKeuNw\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"89c26037565ae67df433084dd02f624cd29eb8dc.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":0.002,"connect":0.149,"ssl":1.431,"send":0,"wait":16.427,"receive":62.065},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19116.391,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.606Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":-1,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"WebSocket is closed before the connection is established."},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19180.222,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.481Z","time":85.772,"request":{"method":"POST","url":"http://localhost:4000/search","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Content-Type","value":"application/json"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":702,"bodySize":220,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"9b24d025b50a9c3ff3db8b177a92ea96d434dcc8.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1599"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"63f-90hNO1iRB+pOfG1HI9PO5JpFcxw\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":1599,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"f7484d3b589107ea4e7c6d4723d3cee49a45731c.json"},"headersSize":989,"bodySize":1599,"redirectURL":"","_transferSize":2588},"cache":{},"timings":{"dns":0.002,"connect":0.152,"ssl":1.441,"send":0,"wait":22.157,"receive":62.02},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19116.457,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.593Z","time":18.532,"request":{"method":"GET","url":"http://localhost:4000/support/device/unread-count?deviceId=da8049a0-a8ee-4db0-8a6f-caf4cd4f27aa","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"deviceId","value":"da8049a0-a8ee-4db0-8a6f-caf4cd4f27aa"}],"headersSize":690,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"80"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:39 GMT"},{"name":"ETag","value":"W/\"50-78/GGuCbnDMGtYFIz62TCZuVRkE\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":80,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"efcfc61ae09b9c3306b58148cfad93099b954641.json"},"headersSize":981,"bodySize":80,"redirectURL":"","_transferSize":1061},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.303,"receive":15.229},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19181.852,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.157Z","time":10.975999999999999,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=br3vi","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22results%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/results"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"br3vi"}],"headersSize":855,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"a5a2bb1a5b49246f969011b22df0d171d298ab95.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.606,"receive":3.37},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19732.939,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.175Z","time":7.987,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=n2i48","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"n2i48"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.987,"receive":-1},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19749.866,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.186Z","time":16.76,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/auth-check/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":580,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"ETag","value":"W/\"ed732-19f8376f656\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":254272,"redirectURL":"","_transferSize":254642},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.335,"receive":15.425},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19759.859,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.234Z","time":20.636,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=3ko94","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/auth-check"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ko94"}],"headersSize":696,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"113ef7bc1ddbb9932f87ab52b1c6c6d273a48c10.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.673,"receive":8.963},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19815.713,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.235Z","time":19.215,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":675,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"ETag","value":"W/\"229-7TjuRTbztci0FTDERHttjmAW6U4\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"ed38ee4536f3b5c8b41530c4447b6d8e6016e94e.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.657,"receive":7.558},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19816.328,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.235Z","time":19.793,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":675,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"ETag","value":"W/\"229-+V4TWMFnYxUJaHZlzOBoJ9ln4sk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"f95e1358c167631509687665cce06827d967e2c9.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.23,"receive":7.563},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19816.496,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.258Z","time":7.86,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=xc7gl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"xc7gl"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.86,"receive":-1},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19832.257,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.268Z","time":33.734,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/passengers/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":415,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"ETag","value":"W/\"216ea9-19f8376f7db\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":478257,"redirectURL":"","_transferSize":478628},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.478,"receive":32.256},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19842.094,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.361Z","time":48.443999999999996,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":682,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"ETag","value":"W/\"90-frxXZ6ZmAZx7onvJn+iGdJo09oI\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7ebc5767a666019c7ba27bc99fe886749a34f682.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.644,"receive":34.8},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19968.69,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:40.361Z","time":48.599,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":682,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:40 GMT"},{"name":"ETag","value":"W/\"90-frxXZ6ZmAZx7onvJn+iGdJo09oI\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7ebc5767a666019c7ba27bc99fe886749a34f682.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.827,"receive":34.772},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19968.756,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.186Z","time":8.955,"request":{"method":"POST","url":"http://localhost:4000/passengers/save-details","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Content-Type","value":"application/json"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":719,"bodySize":349,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"85e2757da59fde264bd7cece33e5487a2b17353d.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"368"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"ETag","value":"W/\"170-FDiwzfRBHJuyH27nfmVDWR7c+n4\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":368,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"1438b0cdf4411c9bb21f6ee77e6543591edcfa7e.json"},"headersSize":988,"bodySize":368,"redirectURL":"","_transferSize":1356},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.838,"receive":2.117},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":20760.902,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.196Z","time":11.799,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=3ufbl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/passengers"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ufbl"}],"headersSize":691,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":111,"mimeType":"text/x-component","compression":0,"_sha1":"3ba650e38c01b7f4dba7c59a8ac235a4f5802b22.htc"},"headersSize":734,"bodySize":119,"redirectURL":"","_transferSize":853},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.555,"receive":2.244},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":20771.012,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.210Z","time":8.971,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=1ivgy","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1ivgy"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.971,"receive":-1},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":20784.075,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.221Z","time":35.221999999999994,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/seats/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":410,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"ETag","value":"W/\"1f96a9-19f8376ffca\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:21 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":484983,"redirectURL":"","_transferSize":485354},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.666,"receive":33.556},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":20794.774,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.311Z","time":42.603,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101?coachTypeId=00000000-0000-4000-8000-000000000001&journeyDirection=ONE_WAY&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"coachTypeId","value":"00000000-0000-4000-8000-000000000001"},{"name":"journeyDirection","value":"ONE_WAY"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"}],"headersSize":713,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9441"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"ETag","value":"W/\"24e1-M+0tFO/uwjIYAJ0JNOi478RXkxA\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9441,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"33ed2d14efeec23218009d0934e8b8efc4579310.json"},"headersSize":985,"bodySize":9441,"redirectURL":"","_transferSize":10426},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.859,"receive":32.744},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":20917.075,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.700Z","time":16.317,"request":{"method":"POST","url":"http://localhost:4000/seats/hold","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Content-Type","value":"application/json"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":706,"bodySize":304,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"43f49247c95bccf4b06d211184225e3b695a875a.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"941"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"ETag","value":"W/\"3ad-1gtF7hyf+Sldyu7eC/Frra6VL9Q\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":941,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"d60b45ee1c9ff9295dcaeede0bf16badae952fd4.json"},"headersSize":988,"bodySize":941,"redirectURL":"","_transferSize":1929},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":14.745,"receive":1.572},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":21274.871,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.720Z","time":12.112,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=11o05","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/seats"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"11o05"}],"headersSize":677,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":113,"mimeType":"text/x-component","compression":0,"_sha1":"efc18e093e9560b1f05c3bd786098516c99407f5.htc"},"headersSize":734,"bodySize":120,"redirectURL":"","_transferSize":854},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.042,"receive":4.07},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":21297.35,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.734Z","time":7.02,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=dcucj","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"dcucj"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.02,"receive":-1},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":21308.594,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.743Z","time":27.944,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/review/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Language","value":"en-US"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":406,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"ETag","value":"W/\"1b5bdb-19f8377031c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:22 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":413299,"redirectURL":"","_transferSize":413670},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.486,"receive":26.458},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":21317.768,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.819Z","time":24.197,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":675,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"ETag","value":"W/\"2f7-I7t/pmUrIELS0HAMKU2J7FlC120\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"23bb7fa6652b2042d2d0700c294d89ec5942d76d.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.3,"receive":21.897},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":21413.988,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.819Z","time":31.666,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":713,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9436"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"ETag","value":"W/\"24dc-Oia8gm9OSvkHg4DlyYrhfisbdXM\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9436,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"3a26bc826f4e4af9078380e5c98ae17e2b1b7573.json"},"headersSize":985,"bodySize":9436,"redirectURL":"","_transferSize":10421},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":9.675,"receive":21.991},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":21413.924,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.819Z","time":41.988,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":713,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9436"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"ETag","value":"W/\"24dc-H3mu3rV7ALeFzOgQjZME++8RFTA\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9436,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"1f79aedeb57b00b785cce8108d9304fbef111530.json"},"headersSize":985,"bodySize":9436,"redirectURL":"","_transferSize":10421},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":20.128,"receive":21.86},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":21414.029,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:41.844Z","time":20.712,"request":{"method":"GET","url":"http://localhost:4000/search/fare-breakdown?scheduleId=00000000-0000-4000-8000-000000000101&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022&passengers=%5B%7B%22passengerName%22%3A%22Adult+1%22%2C%22dateOfBirth%22%3A%221990-06-15%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000010%22%2C%22nationality%22%3A%22ETHIOPIAN%22%7D%5D&displayCurrency=ETB","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"scheduleId","value":"00000000-0000-4000-8000-000000000101"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"},{"name":"passengers","value":"[{\"passengerName\":\"Adult 1\",\"dateOfBirth\":\"1990-06-15\",\"seatClassId\":\"00000000-0000-4000-8000-000000000010\",\"nationality\":\"ETHIOPIAN\"}]"},{"name":"displayCurrency","value":"ETB"}],"headersSize":684,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"720"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:41 GMT"},{"name":"ETag","value":"W/\"2d0-fcNspKXxK3aq6WjwRIz3/epeTqQ\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":720,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7dc36ca4a5f12b76aae968f0448cf7fdea5e4ea4.json"},"headersSize":983,"bodySize":720,"redirectURL":"","_transferSize":1703},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":19.243,"receive":1.469},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":21419.051,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:42.692Z","time":5.828,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":675,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"W/\"2f7-ns7c1NmO+OfhFPhuIDksYqlRFDw\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"9ecedcd4d98ef8e7e114f86e20392c62a951143c.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.141,"receive":1.687},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":22266.533,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:42.700Z","time":31.442999999999998,"request":{"method":"POST","url":"http://localhost:4000/bookings","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Content-Type","value":"application/json"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":704,"bodySize":661,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"86f749b9b01db33963fbe8ef2213e9a3d2ab90ac.json"}},"response":{"status":400,"statusText":"Bad Request","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"178"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:42 GMT"},{"name":"ETag","value":"W/\"b2-szLT9yVriMw4aYAZgrgw2828OMo\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":178,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"b332d3f7256b88cc3869801982b830dbcdbc38ca.json"},"headersSize":991,"bodySize":178,"redirectURL":"","_transferSize":1169},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":28.369,"receive":3.074},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":22274.753,"_resourceType":"xhr","_wasContinued":true,"serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.521Z","time":0.39990234375,"request":{"method":"GET","url":"ws://localhost:5174/_next/webpack-hmr","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"8IQaY8xs5Rm+64ZyfKku2g=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[],"headersSize":483,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Sec-WebSocket-Accept","value":"KthWp6zgrmyZoNpENOIYGRaNMlA="},{"name":"Connection","value":"Upgrade"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"2841b6ceea0072484b07e7c1900cb877.jsonl"},"headersSize":129,"bodySize":-1,"redirectURL":"","_transferSize":291},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19115.76,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@8a3b1cb79de5013a10bb39b09c716710","startedDateTime":"2026-07-21T10:44:39.617Z","time":0.951904296875,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"RoxF8tjAa6Ht37hB+znlJQ=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Sec-WebSocket-Accept","value":"knkJstYWIm9A+fP4zIWu0ntwWK0="},{"name":"Connection","value":"Upgrade"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Vary","value":"Origin"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"04026b7c24c09d00aaa30f5a9650f3b5.jsonl"},"headersSize":235,"bodySize":-1,"redirectURL":"","_transferSize":410},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@5eccf5319b41294f8f98b60b632f06b7","_monotonicTime":19192.122,"_resourceType":"websocket"}} diff --git a/test-results/.playwright-artifacts-0/traces/c253b00a4485d01c776e-78281d70bae243a4c9f9-recording2.trace b/test-results/.playwright-artifacts-0/traces/c253b00a4485d01c776e-78281d70bae243a4c9f9-recording2.trace new file mode 100644 index 000000000..13b2d9092 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/c253b00a4485d01c776e-78281d70bae243a4c9f9-recording2.trace @@ -0,0 +1,688 @@ +{"version":8,"type":"context-options","origin":"library","browserName":"chromium","playwrightVersion":"1.61.1","options":{"noDefaultViewport":false,"viewport":{"width":1280,"height":720},"ignoreHTTPSErrors":false,"javaScriptEnabled":true,"bypassCSP":false,"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36","locale":"en-US","offline":false,"deviceScaleFactor":1,"isMobile":false,"hasTouch":false,"colorScheme":"light","acceptDownloads":"accept","baseURL":"http://localhost:5174","serviceWorkers":"allow","selectorEngines":[],"testIdAttributeName":"data-testid","storageState":{"cookies":[],"origins":[{"origin":"http://localhost:5174","localStorage":[{"name":"auth_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"auth_user","value":"{\"iamUserId\":\"11111111-0000-4000-8000-000000000001\",\"passengerId\":\"11111111-0000-4000-8000-000000000001\",\"email\":\"test.passenger@edr.local\",\"phone\":null,\"fullName\":\"Test Passenger\",\"nationality\":null,\"faydaVerified\":false,\"preferredCurrency\":\"USD\",\"createdAt\":\"2026-07-21T10:44:20.904Z\",\"passenger\":{\"id\":\"11111111-0000-4000-8000-000000000001\",\"preferredLanguage\":null,\"loyalty\":{\"tier\":\"BRONZE\",\"pointsBalance\":500,\"lifetimePoints\":0},\"wallet\":{\"balanceMinor\":100000000,\"currency\":\"ETB\"}}}"}]}]}},"platform":"darwin","wallTime":1784630678984,"monotonicTime":18557.406,"sdkLanguage":"javascript","testIdAttributeName":"data-testid","contextId":"browser-context@02dab81892e4a4ac04e1a34a4384c31d","title":"portal/ua13-forged-total.spec.ts:17 › UA-13: server rejects a client-forged reviewedTotalMinor=1 (C-1)"} +{"type":"before","callId":"call@257","startTime":18558.459,"class":"BrowserContext","method":"newPage","params":{},"stepId":"pw:api@24"} +{"type":"event","time":18590.499,"class":"BrowserContext","method":"page","params":{"pageId":"page@8a3b1cb79de5013a10bb39b09c716710"}} +{"type":"after","callId":"call@257","endTime":18590.541,"result":{"page":""}} +{"type":"before","callId":"call@259","startTime":18591.701,"title":"Route requests","class":"Page","method":"setNetworkInterceptionPatterns","params":{"patterns":[{"regexSource":"\\/bookings(\\/guest)?(\\?|$)","regexFlags":""}]},"stepId":"pw:api@25","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"after","callId":"call@259","endTime":18592.069} +{"type":"before","callId":"call@261","startTime":18592.976,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"039ecdaa78e333833c0194bab85f9638","phase":"before","event":"response"},"stepId":"pw:api@26","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"before","callId":"call@264","startTime":18593.014,"class":"Frame","method":"goto","params":{"url":"/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","timeout":0,"waitUntil":"load"},"stepId":"pw:api@27","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@264"} +{"type":"frame-snapshot","snapshot":{"callId":"call@264","snapshotName":"before@call@264","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"about:blank","html":["HTML",{},["HEAD",{},["BASE",{"href":"about:blank"}]],["BODY"]],"viewport":{"width":1280,"height":720},"timestamp":18594.04,"wallTime":1784630679020,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@264","time":18594.419,"message":"navigating to \"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN\", waiting until \"load\""} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679025.jpeg","width":1280,"height":720,"timestamp":18598.874,"frameSwapWallTime":1784630679024.137} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679081.jpeg","width":1280,"height":720,"timestamp":18655.268,"frameSwapWallTime":1784630679080.2988} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679093.jpeg","width":1280,"height":720,"timestamp":18666.426,"frameSwapWallTime":1784630679091.4631} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679102.jpeg","width":1280,"height":720,"timestamp":18676.148,"frameSwapWallTime":1784630679101.1702} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679156.jpeg","width":1280,"height":720,"timestamp":18729.692,"frameSwapWallTime":1784630679121.5151} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679156.jpeg","width":1280,"height":720,"timestamp":18729.747,"frameSwapWallTime":1784630679149.0369} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679156.jpeg","width":1280,"height":720,"timestamp":18729.784,"frameSwapWallTime":1784630679149.6738} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679161.jpeg","width":1280,"height":720,"timestamp":18734.865,"frameSwapWallTime":1784630679159.837} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679178.jpeg","width":1280,"height":720,"timestamp":18751.523,"frameSwapWallTime":1784630679176.425} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679187.jpeg","width":1280,"height":720,"timestamp":18760.937,"frameSwapWallTime":1784630679185.8088} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679197.jpeg","width":1280,"height":720,"timestamp":18770.363,"frameSwapWallTime":1784630679195.284} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679236.jpeg","width":1280,"height":720,"timestamp":18809.956,"frameSwapWallTime":1784630679228.8289} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679236.jpeg","width":1280,"height":720,"timestamp":18810.012,"frameSwapWallTime":1784630679229.4321} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679236.jpeg","width":1280,"height":720,"timestamp":18810.048,"frameSwapWallTime":1784630679230.888} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679249.jpeg","width":1280,"height":720,"timestamp":18822.936,"frameSwapWallTime":1784630679247.7378} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679258.jpeg","width":1280,"height":720,"timestamp":18832.085,"frameSwapWallTime":1784630679256.925} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679268.jpeg","width":1280,"height":720,"timestamp":18841.535,"frameSwapWallTime":1784630679266.3381} +{"type":"console","messageType":"info","text":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold","args":[{"preview":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools","value":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools"},{"preview":"font-weight:bold","value":"font-weight:bold"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":38559,"columnNumber":16},"time":18848.366,"pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679277.jpeg","width":1280,"height":720,"timestamp":18850.801,"frameSwapWallTime":1784630679275.691} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679286.jpeg","width":1280,"height":720,"timestamp":18860.061,"frameSwapWallTime":1784630679284.932} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679303.jpeg","width":1280,"height":720,"timestamp":18876.574,"frameSwapWallTime":1784630679301.443} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679313.jpeg","width":1280,"height":720,"timestamp":18887.207,"frameSwapWallTime":1784630679310.907} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679321.jpeg","width":1280,"height":720,"timestamp":18895.275,"frameSwapWallTime":1784630679320.166} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679331.jpeg","width":1280,"height":720,"timestamp":18904.489,"frameSwapWallTime":1784630679329.4512} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679347.jpeg","width":1280,"height":720,"timestamp":18921.173,"frameSwapWallTime":1784630679345.969} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679357.jpeg","width":1280,"height":720,"timestamp":18930.378,"frameSwapWallTime":1784630679355.358} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679366.jpeg","width":1280,"height":720,"timestamp":18939.79,"frameSwapWallTime":1784630679364.688} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679383.jpeg","width":1280,"height":720,"timestamp":18956.582,"frameSwapWallTime":1784630679381.286} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679392.jpeg","width":1280,"height":720,"timestamp":18966.13,"frameSwapWallTime":1784630679390.859} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679401.jpeg","width":1280,"height":720,"timestamp":18975.311,"frameSwapWallTime":1784630679400.2148} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679410.jpeg","width":1280,"height":720,"timestamp":18984.28,"frameSwapWallTime":1784630679409.149} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679427.jpeg","width":1280,"height":720,"timestamp":19000.656,"frameSwapWallTime":1784630679425.535} +{"type":"after","callId":"call@264","endTime":19114.3,"result":{"response":""},"afterSnapshot":"after@call@264"} +{"type":"console","messageType":"error","text":"Warning: Prop `%s` did not match. Server: %s Client: %s%s nonce \"\" \"MDkyNTVkYTAtNjMxMS00M2RlLTgyNjQtMzc4NWU3M2VkNjk5\" \n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","args":[{"preview":"Warning: Prop `%s` did not match. Server: %s Client: %s%s","value":"Warning: Prop `%s` did not match. Server: %s Client: %s%s"},{"preview":"nonce","value":"nonce"},{"preview":"\"\"","value":"\"\""},{"preview":"\"MDkyNTVkYTAtNjMxMS00M2RlLTgyNjQtMzc4NWU3M2VkNjk5\"","value":"\"MDkyNTVkYTAtNjMxMS00M2RlLTgyNjQtMzc4NWU3M2VkNjk5\""},{"preview":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","value":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js","lineNumber":32,"columnNumber":21},"time":19114.728,"pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679541.jpeg","width":1280,"height":720,"timestamp":19115.142,"frameSwapWallTime":1784630679517.9492} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679541.jpeg","width":1280,"height":720,"timestamp":19115.277,"frameSwapWallTime":1784630679519.1099} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679542.jpeg","width":1280,"height":720,"timestamp":19115.457,"frameSwapWallTime":1784630679519.4521} +{"type":"frame-snapshot","snapshot":{"callId":"call@264","snapshotName":"after@call@264","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},["HEAD",{},["BASE",{"href":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN"}],["META",{"charset":"utf-8"}],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["LINK",{"rel":"stylesheet","href":"/_next/static/css/app/layout.css?v=1784630679028","data-precedence":"next_static/css/app/layout.css"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},["A",{"class":"flex items-center px-5 h-20 flex-shrink-0 hover:opacity-80 transition-opacity","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-16 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-house w-5 h-5","aria-hidden":"true"},["path",{"d":"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{"d":"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],"Home"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/booking/lookup"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-ticket w-5 h-5","aria-hidden":"true"},["path",{"d":"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{"d":"M13 5v2"}],["path",{"d":"M13 17v2"}],["path",{"d":"M13 11v2"}]],"My Bookings"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/contact"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-phone w-5 h-5","aria-hidden":"true"},["path",{"d":"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],"Contact"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/help"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-question-mark w-5 h-5","aria-hidden":"true"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{"d":"M12 17h.01"}]],"Help"],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},["P",{"class":"px-3 pb-2 text-xs font-semibold uppercase tracking-wide text-gray-200/80"},"Your booking"],["OL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},"Search"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},"2"],["SPAN",{"class":"text-sm text-white font-semibold"},"Results"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"3"],["SPAN",{"class":"text-sm text-white/50"},"Passengers"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"4"],["SPAN",{"class":"text-sm text-white/50"},"Seats"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"5"],["SPAN",{"class":"text-sm text-white/50"},"Review"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"6"],["SPAN",{"class":"text-sm text-white/50"},"Payment"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"7"],["SPAN",{"class":"text-sm text-white/50"},"Done"]]]]],["DIV",{"class":"flex-shrink-0 border-t border-white/15 p-3 space-y-1"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium text-gray-100 hover:bg-white/10 hover:text-white transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-moon w-5 h-5","aria-hidden":"true"},["path",{"d":"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],"Dark mode"],["DIV",{"class":"relative"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2 rounded-lg hover:bg-white/10 transition-colors"},["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full bg-white text-[rgb(20_113_76)] font-semibold text-sm"},"T"],["SPAN",{"class":"flex-1 text-left text-sm font-medium text-white truncate"},"Test Passenger"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-200 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]]]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},["DIV",{"class":"lg:hidden relative bg-[rgb(20_113_76)] dark:bg-gray-900 border-b border-[rgb(16_89_60)] dark:border-gray-800 px-4 h-16 flex items-center flex-shrink-0"},["A",{"class":"flex items-center hover:opacity-80 transition-opacity","aria-label":"Go to home","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-14 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["DIV",{"class":"ml-auto"},["BUTTON",{"class":"p-2 rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors","title":"Current theme: Light. Click to cycle."},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-sun w-5 h-5"},["circle",{"cx":"12","cy":"12","r":"4"}],["path",{"d":"M12 2v2"}],["path",{"d":"M12 20v2"}],["path",{"d":"m4.93 4.93 1.41 1.41"}],["path",{"d":"m17.66 17.66 1.41 1.41"}],["path",{"d":"M2 12h2"}],["path",{"d":"M20 12h2"}],["path",{"d":"m6.34 17.66-1.41 1.41"}],["path",{"d":"m19.07 4.93-1.41 1.41"}]]]]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 invisible"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},"Search"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},"2"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},"Results"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"3"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Passengers"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"4"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Seats"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"5"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Review"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"6"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Payment"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"7"]],["DIV",{"class":"flex-1 h-0.5 invisible"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Done"]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"mb-8"},["DIV",{"class":"card p-6"},["DIV",{"class":"flex items-center gap-4"},["DIV",{"class":"relative"},["DIV",{"class":"w-12 h-12 rounded-full border-4 border-primary/20 border-t-primary animate-spin"}]],["DIV",{"class":"flex-1"},["H2",{"class":"text-xl font-bold text-gray-900 dark:text-white mb-1"},"Searching for trains..."],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Finding the best options for your journey"]]],["DIV",{"class":"mt-4 h-2 bg-gray-200 dark:bg-gray-700 rounded-full overflow-hidden"},["DIV",{"class":"h-full bg-primary rounded-full","style":"animation:progressBar 2s ease-in-out infinite"}]]]],["DIV",{"class":"space-y-4"},["DIV",{"class":"card animate-pulse"},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-gray-200 dark:bg-gray-700 rounded-lg","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"flex-1 space-y-2"},["DIV",{"class":"h-5 bg-gray-200 dark:bg-gray-700 rounded w-24","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-32","style":"animation:shimmer 1.5s ease-in-out infinite"}]]],["DIV",{"class":"flex items-center gap-4"},["DIV",{"class":"text-center space-y-2"},["DIV",{"class":"h-8 bg-gray-200 dark:bg-gray-700 rounded w-16","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-12","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-20","style":"animation:shimmer 1.5s ease-in-out infinite"}]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-16 mb-2","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative","style":"animation:shimmer 1.5s ease-in-out infinite"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-gray-300 dark:bg-gray-600 rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-gray-300 dark:bg-gray-600 rounded-full"}]],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-12 mt-2","style":"animation:shimmer 1.5s ease-in-out infinite"}]],["DIV",{"class":"text-center space-y-2"},["DIV",{"class":"h-8 bg-gray-200 dark:bg-gray-700 rounded w-16","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-12","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-20","style":"animation:shimmer 1.5s ease-in-out infinite"}]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right space-y-3"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-24 mx-auto lg:ml-auto","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded w-32 mx-auto lg:ml-auto","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-16 mx-auto lg:ml-auto","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded w-full","style":"animation:shimmer 1.5s ease-in-out infinite"}]]]]],["DIV",{"class":"card animate-pulse"},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-gray-200 dark:bg-gray-700 rounded-lg","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"flex-1 space-y-2"},["DIV",{"class":"h-5 bg-gray-200 dark:bg-gray-700 rounded w-24","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-32","style":"animation:shimmer 1.5s ease-in-out infinite"}]]],["DIV",{"class":"flex items-center gap-4"},["DIV",{"class":"text-center space-y-2"},["DIV",{"class":"h-8 bg-gray-200 dark:bg-gray-700 rounded w-16","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-12","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-20","style":"animation:shimmer 1.5s ease-in-out infinite"}]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-16 mb-2","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative","style":"animation:shimmer 1.5s ease-in-out infinite"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-gray-300 dark:bg-gray-600 rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-gray-300 dark:bg-gray-600 rounded-full"}]],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-12 mt-2","style":"animation:shimmer 1.5s ease-in-out infinite"}]],["DIV",{"class":"text-center space-y-2"},["DIV",{"class":"h-8 bg-gray-200 dark:bg-gray-700 rounded w-16","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-12","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-20","style":"animation:shimmer 1.5s ease-in-out infinite"}]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right space-y-3"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-24 mx-auto lg:ml-auto","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded w-32 mx-auto lg:ml-auto","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-16 mx-auto lg:ml-auto","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded w-full","style":"animation:shimmer 1.5s ease-in-out infinite"}]]]]],["DIV",{"class":"card animate-pulse"},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-gray-200 dark:bg-gray-700 rounded-lg","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"flex-1 space-y-2"},["DIV",{"class":"h-5 bg-gray-200 dark:bg-gray-700 rounded w-24","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-32","style":"animation:shimmer 1.5s ease-in-out infinite"}]]],["DIV",{"class":"flex items-center gap-4"},["DIV",{"class":"text-center space-y-2"},["DIV",{"class":"h-8 bg-gray-200 dark:bg-gray-700 rounded w-16","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-12","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-20","style":"animation:shimmer 1.5s ease-in-out infinite"}]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-16 mb-2","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative","style":"animation:shimmer 1.5s ease-in-out infinite"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-gray-300 dark:bg-gray-600 rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-gray-300 dark:bg-gray-600 rounded-full"}]],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-12 mt-2","style":"animation:shimmer 1.5s ease-in-out infinite"}]],["DIV",{"class":"text-center space-y-2"},["DIV",{"class":"h-8 bg-gray-200 dark:bg-gray-700 rounded w-16","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-12","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-20","style":"animation:shimmer 1.5s ease-in-out infinite"}]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right space-y-3"},["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded w-24 mx-auto lg:ml-auto","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded w-32 mx-auto lg:ml-auto","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-3 bg-gray-200 dark:bg-gray-700 rounded w-16 mx-auto lg:ml-auto","style":"animation:shimmer 1.5s ease-in-out infinite"}],["DIV",{"class":"h-10 bg-gray-200 dark:bg-gray-700 rounded w-full","style":"animation:shimmer 1.5s ease-in-out infinite"}]]]]]]]]]]]]],["NEXT-ROUTE-ANNOUNCER",{"style":"position: absolute;"},["template",{"__playwright_shadow_root_":"open"},["DIV",{"aria-live":"assertive","id":"__next-route-announcer__","role":"alert","style":"position: absolute; border: 0px; height: 1px; margin: -1px; padding: 0px; width: 1px; clip: rect(0px, 0px, 0px, 0px); overflow: hidden; white-space: nowrap; overflow-wrap: normal;"}]]]]],"viewport":{"width":1280,"height":720},"timestamp":19116.736,"wallTime":1784630679542,"collectionTime":1.300000000745058,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679545.jpeg","width":1280,"height":720,"timestamp":19118.819,"frameSwapWallTime":1784630679543.7378} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679553.jpeg","width":1280,"height":720,"timestamp":19126.612,"frameSwapWallTime":1784630679551.389} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679569.jpeg","width":1280,"height":720,"timestamp":19143.029,"frameSwapWallTime":1784630679567.855} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679578.jpeg","width":1280,"height":720,"timestamp":19152.051,"frameSwapWallTime":1784630679576.978} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679586.jpeg","width":1280,"height":720,"timestamp":19160.161,"frameSwapWallTime":1784630679585.0862} +{"type":"console","messageType":"warning","text":"WebSocket connection to 'ws://localhost:4000/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.","args":[],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/engine.io-client@6.6.5/node_modules/engine.io-client/build/esm/transports/websocket.js","lineNumber":89,"columnNumber":0},"time":19180.411,"pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679607.jpeg","width":1280,"height":720,"timestamp":19180.609,"frameSwapWallTime":1784630679602.545} +{"type":"after","callId":"call@261","endTime":19181.597} +{"type":"before","callId":"call@269","startTime":19181.642,"class":"Response","method":"body","params":{},"stepId":"pw:api@28","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679612.jpeg","width":1280,"height":720,"timestamp":19185.869,"frameSwapWallTime":1784630679610.5771} +{"type":"after","callId":"call@269","endTime":19188.13,"result":{"binary":""}} +{"type":"before","callId":"call@271","startTime":19189.47,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"result-select-btn\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@30","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@271"} +{"type":"frame-snapshot","snapshot":{"callId":"call@271","snapshotName":"before@call@271","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[1,29]],["BODY",{"class":"font-sans antialiased"},[[1,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[1,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"mb-8"},["BUTTON",{"class":"btn-ghost px-0 py-4 flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Modify search"],["H1",{"class":"section-title"},"Available schedules"],["DIV",{"class":"hidden sm:flex flex-wrap items-center gap-4 text-gray-600 dark:text-gray-400 mt-3"},["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar w-4 h-4"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}]],["SPAN",{},"Thursday, July 23, 2026"]],["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-users w-4 h-4"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["path",{"d":"M22 21v-2a4 4 0 0 0-3-3.87"}],["path",{"d":"M16 3.13a4 4 0 0 1 0 7.75"}]],["SPAN",{},"1"," adult(s), ","0"," ","child(ren)"]]]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg flex items-center justify-center flex-shrink-0"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-5 h-5 text-primary"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]]],["DIV",{},["DIV",{"class":"font-bold text-lg text-gray-900 dark:text-gray-100"},"UI-100"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400"},"UI Test Express"]]],["DIV",{"class":"flex items-center gap-2 md:gap-4"},["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"Jul 23 · Morning"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Alpha"]],["DIV",{"class":"flex-1 min-w-0 flex flex-col items-center"},["DIV",{"class":"flex items-center gap-1 md:gap-2 mb-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]],["SPAN",{},"4h 0m"]],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}]],["DIV",{"class":"flex items-center gap-1 mt-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{},"1"," stops"]]],["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5 flex items-center justify-center gap-1"},["SPAN",{},"Jul 23 · Afternoon"]],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Charlie"]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-1"},"Starting from"],["DIV",{"class":"text-3xl font-bold text-primary"},"ETB 750.00"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 mb-4"},"per adult"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Select"]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-100 dark:border-gray-800 flex flex-wrap gap-2"},["SPAN",{"class":"inline-flex items-center gap-1.5 text-xs font-medium px-2.5 py-1 rounded-full bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 flex-shrink-0"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],"Standard Coach",["SPAN",{"class":"font-semibold"},"46 left"]]]]]]]]]]]]],[[1,300]],["DIV",{"class":"fixed bottom-6 right-6 z-40 flex flex-col items-end gap-3"},["BUTTON",{"aria-label":"Open support chat","class":"group relative flex items-center gap-2.5 rounded-full p-2 pr-2 text-white transition-transform duration-150 hover:-translate-y-0.5 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-[3px] focus-visible:outline-primary active:translate-y-0 motion-reduce:transition-none motion-reduce:hover:translate-y-0 sm:pr-5","style":"background: linear-gradient(135deg, rgb(20, 113, 76), rgb(30, 140, 96)); box-shadow: rgba(20, 113, 76, 0.4) 0px 10px 28px;"},["SPAN",{"class":"pointer-events-none absolute -inset-1 animate-pulse rounded-full ring-2 ring-primary/50 motion-reduce:animate-none"}],["SPAN",{"class":"relative grid h-[42px] w-[42px] shrink-0 place-items-center rounded-full bg-white/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"22","height":"22","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-headset"},["path",{"d":"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{"d":"M21 16v2a4 4 0 0 1-4 4h-5"}]]],["SPAN",{"class":"relative hidden text-left leading-tight sm:block"},["SPAN",{"class":"block whitespace-nowrap text-sm font-semibold"},"👋 Need help?"],["SPAN",{"class":"block whitespace-nowrap text-[11px] opacity-85"},"Chat with our team"]]]]]],"viewport":{"width":1280,"height":720},"timestamp":19190.888,"wallTime":1784630679617,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@271","time":19191.078,"message":"waiting for getByTestId('result-select-btn').first()"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679621.jpeg","width":1280,"height":720,"timestamp":19194.336,"frameSwapWallTime":1784630679618.705} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679627.jpeg","width":1280,"height":720,"timestamp":19200.498,"frameSwapWallTime":1784630679625.132} +{"type":"log","callId":"call@271","time":19201.541,"message":" locator resolved to "} +{"type":"log","callId":"call@271","time":19201.947,"message":"attempting click action"} +{"type":"log","callId":"call@271","time":19201.968,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@271","time":19212.753,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@271","time":19212.763,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@271","time":19212.955,"message":" done scrolling"} +{"type":"input","callId":"call@271","point":{"x":1141.5,"y":340},"inputSnapshot":"input@call@271"} +{"type":"frame-snapshot","snapshot":{"callId":"call@271","snapshotName":"input@call@271","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[2,29]],["BODY",{"class":"font-sans antialiased"},[[2,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[2,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,27]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[1,71]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[1,73]],[[1,75]],[[1,77]],["BUTTON",{"__playwright_target__":"","data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[1,78]]]]]],[[1,92]]]]]]]]]]]],[[2,300]],[[1,114]]]],"viewport":{"width":1280,"height":720},"timestamp":19213.957,"wallTime":1784630679640,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@271","time":19214.709,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679643.jpeg","width":1280,"height":720,"timestamp":19217.009,"frameSwapWallTime":1784630679641.8271} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679652.jpeg","width":1280,"height":720,"timestamp":19225.34,"frameSwapWallTime":1784630679650.025} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679660.jpeg","width":1280,"height":720,"timestamp":19233.507,"frameSwapWallTime":1784630679658.329} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679676.jpeg","width":1280,"height":720,"timestamp":19250.024,"frameSwapWallTime":1784630679674.896} +{"type":"log","callId":"call@271","time":19252.942,"message":" click action done"} +{"type":"log","callId":"call@271","time":19252.952,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@271","time":19253.162,"message":" navigations have finished"} +{"type":"after","callId":"call@271","endTime":19253.214,"afterSnapshot":"after@call@271"} +{"type":"frame-snapshot","snapshot":{"callId":"call@271","snapshotName":"after@call@271","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[3,29]],["BODY",{"class":"font-sans antialiased"},[[3,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[3,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[3,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"fixed inset-0 z-[99] bg-black/50 backdrop-blur-sm"}],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},["DIV",{"class":"flex items-center justify-between px-6 py-5 border-b border-gray-100 dark:border-gray-800 flex-shrink-0"},["DIV",{},["H2",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"Choose Your Coach"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-3.5 h-3.5"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],["SPAN",{"class":"font-medium"},"UI-100"],["SPAN",{"class":"text-gray-400"},"·"],["SPAN",{},"Alpha"," → ","Charlie"]]],["BUTTON",{"type":"button","class":"w-10 h-10 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800 transition-all","aria-label":"Close"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-gray-300 dark:border-gray-600 group-hover:border-primary/50"}],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-gray-100 dark:bg-gray-700 group-hover:bg-primary/10"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-gray-600 dark:text-gray-400 group-hover:text-primary"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]],["DIV",{"class":"flex-1 min-w-0"},["DIV",{"class":"flex items-start justify-between gap-2 mb-2"},["DIV",{},["H3",{"class":"font-bold text-base text-gray-900 dark:text-white leading-tight"},"Standard Coach"]]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"From"],["SPAN",{"class":"text-2xl font-bold tracking-tight text-gray-900 dark:text-white"},"ETB 750.00"]]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-200/60 dark:border-gray-700/60"},["DIV",{"class":"flex items-center justify-between mb-3"},["P",{"class":"text-xs font-bold text-gray-700 dark:text-gray-300 uppercase tracking-wider"},"Class Options"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"46"," seats left"]],["DIV",{"class":"space-y-2.5"},["DIV",{"class":"flex items-center justify-between py-2 px-3 rounded-lg bg-gray-50/80 dark:bg-gray-800/40"},["DIV",{"class":"flex items-center gap-2.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 text-gray-500 dark:text-gray-400"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],["DIV",{"class":"flex flex-col"},["SPAN",{"class":"text-sm font-medium text-gray-700 dark:text-gray-300"},"Economy Regular"],["SPAN",{"class":"text-[11px] font-medium text-gray-400 dark:text-gray-500"},"46 seats left"]]],["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-base font-bold tabular-nums text-gray-900 dark:text-white"},"750.00"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium ml-1"},"ETB"]]]]],["P",{"class":"mt-4 pt-3 border-t border-gray-200/60 dark:border-gray-700/60 text-xs text-gray-400 dark:text-gray-500 italic text-center"},"Click to select this coach"]]]]]],["STYLE",{},"\n @keyframes drawer-slide-in{from{transform:translateX(100%)}to{transform:translateX(0)}}\n @keyframes fade-in-up{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}\n @keyframes scale-in{from{transform:scale(0)}to{transform:scale(1)}}\n "],[[2,27]],[[1,6]]]]]]]]],[[3,300]],[[2,114]]]],"viewport":{"width":1280,"height":720},"timestamp":19256.156,"wallTime":1784630679682,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@273","startTime":19256.943,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"coach-option\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@31","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@273"} +{"type":"frame-snapshot","snapshot":{"callId":"call@273","snapshotName":"before@call@273","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[4,29]],["BODY",{"class":"font-sans antialiased"},[[4,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[4,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,0]],[[1,76]],[[1,78]],[[3,27]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[3,71]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[3,73]],[[3,75]],[[3,77]],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[3,78]]]]]],[[3,92]]]]]]]]]]]],[[4,300]],[[3,114]]]],"viewport":{"width":1280,"height":720},"timestamp":19257.741,"wallTime":1784630679684,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@273","time":19257.857,"message":"waiting for getByTestId('coach-option').first()"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679684.jpeg","width":1280,"height":720,"timestamp":19258.134,"frameSwapWallTime":1784630679682.852} +{"type":"log","callId":"call@273","time":19258.729,"message":" locator resolved to
"} +{"type":"log","callId":"call@273","time":19258.999,"message":"attempting click action"} +{"type":"log","callId":"call@273","time":19259.031,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@273","time":19282.254,"message":" element is not stable"} +{"type":"log","callId":"call@273","time":19282.265,"message":"retrying click action"} +{"type":"log","callId":"call@273","time":19282.284,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679709.jpeg","width":1280,"height":720,"timestamp":19283.196,"frameSwapWallTime":1784630679708.1611} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679729.jpeg","width":1280,"height":720,"timestamp":19302.897,"frameSwapWallTime":1784630679727.727} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679749.jpeg","width":1280,"height":720,"timestamp":19322.408,"frameSwapWallTime":1784630679747.3472} +{"type":"log","callId":"call@273","time":19341.146,"message":" element is not stable"} +{"type":"log","callId":"call@273","time":19341.16,"message":"retrying click action"} +{"type":"log","callId":"call@273","time":19341.162,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679768.jpeg","width":1280,"height":720,"timestamp":19342.121,"frameSwapWallTime":1784630679767.156} +{"type":"log","callId":"call@273","time":19362.557,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679789.jpeg","width":1280,"height":720,"timestamp":19362.971,"frameSwapWallTime":1784630679787.4802} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679809.jpeg","width":1280,"height":720,"timestamp":19383.191,"frameSwapWallTime":1784630679808.123} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679830.jpeg","width":1280,"height":720,"timestamp":19404.068,"frameSwapWallTime":1784630679829.083} +{"type":"log","callId":"call@273","time":19424.158,"message":" element is not stable"} +{"type":"log","callId":"call@273","time":19424.169,"message":"retrying click action"} +{"type":"log","callId":"call@273","time":19424.17,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679851.jpeg","width":1280,"height":720,"timestamp":19425.055,"frameSwapWallTime":1784630679850.194} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679873.jpeg","width":1280,"height":720,"timestamp":19447.037,"frameSwapWallTime":1784630679871.9658} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679894.jpeg","width":1280,"height":720,"timestamp":19468.277,"frameSwapWallTime":1784630679893.1702} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679915.jpeg","width":1280,"height":720,"timestamp":19489.133,"frameSwapWallTime":1784630679914.1519} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679937.jpeg","width":1280,"height":720,"timestamp":19510.395,"frameSwapWallTime":1784630679935.504} +{"type":"log","callId":"call@273","time":19526.597,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679958.jpeg","width":1280,"height":720,"timestamp":19532.136,"frameSwapWallTime":1784630679957.231} +{"type":"log","callId":"call@273","time":19552.258,"message":" element is not stable"} +{"type":"log","callId":"call@273","time":19552.268,"message":"retrying click action"} +{"type":"log","callId":"call@273","time":19552.269,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630679980.jpeg","width":1280,"height":720,"timestamp":19553.338,"frameSwapWallTime":1784630679978.303} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680001.jpeg","width":1280,"height":720,"timestamp":19574.393,"frameSwapWallTime":1784630679999.496} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680019.jpeg","width":1280,"height":720,"timestamp":19593.311,"frameSwapWallTime":1784630680018.24} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680038.jpeg","width":1280,"height":720,"timestamp":19611.599,"frameSwapWallTime":1784630680036.5642} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680056.jpeg","width":1280,"height":720,"timestamp":19630.206,"frameSwapWallTime":1784630680055.079} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680075.jpeg","width":1280,"height":720,"timestamp":19648.51,"frameSwapWallTime":1784630680073.524} +{"type":"log","callId":"call@273","time":19653.815,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@273","time":19666.293,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@273","time":19666.305,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@273","time":19666.445,"message":" done scrolling"} +{"type":"input","callId":"call@273","point":{"x":330.66,"y":246.25},"inputSnapshot":"input@call@273"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680093.jpeg","width":1280,"height":720,"timestamp":19667.151,"frameSwapWallTime":1784630680092.368} +{"type":"frame-snapshot","snapshot":{"callId":"call@273","snapshotName":"input@call@273","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[5,29]],["BODY",{"class":"font-sans antialiased"},[[5,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[5,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[2,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,26]],[[2,72]]]]]],[[2,78]],[[4,27]],[[1,6]]]]]]]]],[[5,300]],[[4,114]]]],"viewport":{"width":1280,"height":720},"timestamp":19667.72,"wallTime":1784630680094,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@273","time":19668.448,"message":" performing click action"} +{"type":"log","callId":"call@273","time":19673.581,"message":" click action done"} +{"type":"log","callId":"call@273","time":19673.587,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@273","time":19673.743,"message":" navigations have finished"} +{"type":"after","callId":"call@273","endTime":19673.783,"afterSnapshot":"after@call@273"} +{"type":"frame-snapshot","snapshot":{"callId":"call@273","snapshotName":"after@call@273","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[6,29]],["BODY",{"class":"font-sans antialiased"},[[6,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[6,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[6,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[3,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[3,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-primary"},["SPAN",{"class":"w-2.5 h-2.5 rounded-full bg-primary animate-scale-in"}]],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-primary/15 dark:bg-primary/25 shadow-inner"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-primary"},[[3,27]],[[3,28]],[[3,29]],[[3,30]]]],["DIV",{"class":"flex-1 min-w-0"},[[3,36]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},[[3,38]],["SPAN",{"class":"text-2xl font-bold tracking-tight text-primary"},[[3,39]]]]]]],[[3,69]],["BUTTON",{"type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},["SPAN",{},"Continue to Passenger Details"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-right w-4 h-4"},["path",{"d":"M5 12h14"}],["path",{"d":"m12 5 7 7-7 7"}]]]]]]]],[[3,78]],[[5,27]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[5,71]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[5,73]],[[5,75]],[[5,77]],["P",{"class":"text-xs text-primary font-semibold mb-2"},"Standard Coach"," selected"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Change"]]]],[[5,92]]]]]]]]]]]],[[6,300]],[[5,114]]]],"viewport":{"width":1280,"height":720},"timestamp":19674.631,"wallTime":1784630680100,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@275","startTime":19675.453,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"continue-passenger-details\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@32","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@275"} +{"type":"frame-snapshot","snapshot":{"callId":"call@275","snapshotName":"before@call@275","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[7,29]],["BODY",{"class":"font-sans antialiased"},[[7,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[7,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[7,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[4,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[1,1]],[[1,15]]]]]],[[4,78]],[[6,27]],[[1,30]]]]]]]]],[[7,300]],[[6,114]]]],"viewport":{"width":1280,"height":720},"timestamp":19676.1,"wallTime":1784630680102,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@275","time":19676.213,"message":"waiting for getByTestId('continue-passenger-details').first()"} +{"type":"log","callId":"call@275","time":19677.124,"message":" locator resolved to "} +{"type":"log","callId":"call@275","time":19677.383,"message":"attempting click action"} +{"type":"log","callId":"call@275","time":19677.392,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680114.jpeg","width":1280,"height":720,"timestamp":19687.696,"frameSwapWallTime":1784630680112.5269} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680133.jpeg","width":1280,"height":720,"timestamp":19707.312,"frameSwapWallTime":1784630680132.294} +{"type":"log","callId":"call@275","time":19725.419,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@275","time":19725.429,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@275","time":19725.779,"message":" done scrolling"} +{"type":"input","callId":"call@275","point":{"x":330.66,"y":346.5},"inputSnapshot":"input@call@275"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680153.jpeg","width":1280,"height":720,"timestamp":19726.536,"frameSwapWallTime":1784630680151.52} +{"type":"frame-snapshot","snapshot":{"callId":"call@275","snapshotName":"input@call@275","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[8,29]],["BODY",{"class":"font-sans antialiased"},[[8,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[8,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[8,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[5,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,1]],["DIV",{"class":"flex flex-col"},[[2,8]],[[5,69]],["BUTTON",{"__playwright_target__":"","type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},[[2,10]],[[2,13]]]]]]]],[[5,78]],[[7,27]],[[2,30]]]]]]]]],[[8,300]],[[7,114]]]],"viewport":{"width":1280,"height":720},"timestamp":19726.887,"wallTime":1784630680153,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@275","time":19727.488,"message":" performing click action"} +{"type":"log","callId":"call@275","time":19733.025,"message":" click action done"} +{"type":"log","callId":"call@275","time":19733.028,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@275","time":19733.324,"message":" navigations have finished"} +{"type":"after","callId":"call@275","endTime":19733.36,"afterSnapshot":"after@call@275"} +{"type":"frame-snapshot","snapshot":{"callId":"call@275","snapshotName":"after@call@275","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN","doctype":"html","html":[[1,14]],"viewport":{"width":1280,"height":720},"timestamp":19734.09,"wallTime":1784630680160,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@277","startTime":19734.995,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"043a803910c0abd92d81398a4eaa60b8","phase":"before","event":""},"stepId":"pw:api@33","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"log","callId":"call@277","time":19735.025,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680173.jpeg","width":1280,"height":720,"timestamp":19746.79,"frameSwapWallTime":1784630680171.645} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680193.jpeg","width":1280,"height":720,"timestamp":19766.399,"frameSwapWallTime":1784630680191.3809} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680213.jpeg","width":1280,"height":720,"timestamp":19786.391,"frameSwapWallTime":1784630680211.3718} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680242.jpeg","width":1280,"height":720,"timestamp":19815.833,"frameSwapWallTime":1784630680237.208} +{"type":"log","callId":"call@277","time":19815.886,"message":" navigated to \"http://localhost:5174/booking/auth-check\""} +{"type":"after","callId":"call@277","endTime":19815.893} +{"type":"before","callId":"call@282","startTime":19815.936,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"b0cab4f47d2e630c8ef5b81a74e6fecd","phase":"before","event":""},"stepId":"pw:api@34","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"log","callId":"call@282","time":19815.95,"message":"waiting for navigation until \"load\""} +{"type":"before","callId":"call@285","startTime":19815.969,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue as guest/i]","strict":true,"timeout":15000},"stepId":"pw:api@35","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@285"} +{"type":"frame-snapshot","snapshot":{"callId":"call@285","snapshotName":"before@call@285","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/auth-check","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[10,0]],[[10,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[10,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[10,36]],[[10,43]],[[10,47]],[[10,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[10,55]],["OL",{"class":"space-y-1"},[[10,61]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[10,64]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[10,67]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[10,69]]]],[[10,76]],[[10,81]],[[10,86]],[[10,91]]]]],[[10,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[10,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[10,132]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[10,139]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[10,142]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[10,143]]]],[[10,146]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[10,148]]]],[[10,159]],[[10,168]],[[10,177]],[[10,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center px-4"},["DIV",{"class":"w-full max-w-sm"},["H1",{"class":"text-2xl font-bold text-center text-gray-900 dark:text-gray-100 mb-1"},"Continue your booking"],["P",{"class":"text-sm text-center text-gray-500 dark:text-gray-400 mb-8"},"Choose how you'd like to proceed"],["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"relative"},["BUTTON",{"class":"w-full flex items-center justify-center gap-2.5 px-5 py-3.5 bg-primary hover:bg-primary/90 active:scale-[0.98] text-white font-semibold rounded-xl transition-all shadow-md shadow-primary/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-user-plus w-5 h-5 flex-shrink-0"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["line",{"x1":"19","x2":"19","y1":"8","y2":"14"}],["line",{"x1":"22","x2":"16","y1":"11","y2":"11"}]],"Continue as guest"],["DIV",{"role":"tooltip","class":"absolute bottom-[calc(100%+8px)] left-1/2 -translate-x-1/2 w-52 bg-gray-900 dark:bg-gray-700 text-white text-xs rounded-lg px-3 py-2.5 shadow-xl pointer-events-none transition-all duration-150 z-50 opacity-0 translate-y-1"},["UL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"No account required"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Quick checkout"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Create account later (optional)"]],["DIV",{"class":"absolute top-full left-1/2 -translate-x-1/2 border-4 border-transparent border-t-gray-900 dark:border-t-gray-700"}]]]],["DIV",{"class":"mt-8 text-center"},["BUTTON",{"class":"inline-flex items-center gap-1.5 text-sm text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back to results"]]]]]]]],[[10,300]],[[9,114]]]],"viewport":{"width":1280,"height":720},"timestamp":19817.426,"wallTime":1784630680243,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@285","time":19817.611,"message":"waiting for getByRole('button', { name: /continue as guest/i })"} +{"type":"log","callId":"call@285","time":19821.58,"message":" locator resolved to "} +{"type":"log","callId":"call@285","time":19823.064,"message":"attempting click action"} +{"type":"log","callId":"call@285","time":19823.084,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680252.jpeg","width":1280,"height":720,"timestamp":19826.034,"frameSwapWallTime":1784630680251.025} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680272.jpeg","width":1280,"height":720,"timestamp":19846.198,"frameSwapWallTime":1784630680271.211} +{"type":"log","callId":"call@285","time":19848.635,"message":" element is not stable"} +{"type":"log","callId":"call@285","time":19848.643,"message":"retrying click action"} +{"type":"log","callId":"call@285","time":19848.663,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680276.jpeg","width":1280,"height":720,"timestamp":19849.707,"frameSwapWallTime":1784630680274.752} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680286.jpeg","width":1280,"height":720,"timestamp":19859.387,"frameSwapWallTime":1784630680284.3809} +{"type":"log","callId":"call@285","time":19862.354,"message":" element is not stable"} +{"type":"log","callId":"call@285","time":19862.363,"message":"retrying click action"} +{"type":"log","callId":"call@285","time":19862.364,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680294.jpeg","width":1280,"height":720,"timestamp":19867.92,"frameSwapWallTime":1784630680292.9548} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680311.jpeg","width":1280,"height":720,"timestamp":19884.699,"frameSwapWallTime":1784630680309.694} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680326.jpeg","width":1280,"height":720,"timestamp":19900.271,"frameSwapWallTime":1784630680325.227} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680335.jpeg","width":1280,"height":720,"timestamp":19908.356,"frameSwapWallTime":1784630680333.362} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680351.jpeg","width":1280,"height":720,"timestamp":19925.128,"frameSwapWallTime":1784630680349.983} +{"type":"log","callId":"call@285","time":19965.913,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680392.jpeg","width":1280,"height":720,"timestamp":19966.299,"frameSwapWallTime":1784630680384.384} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680393.jpeg","width":1280,"height":720,"timestamp":19966.37,"frameSwapWallTime":1784630680385.426} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680393.jpeg","width":1280,"height":720,"timestamp":19966.411,"frameSwapWallTime":1784630680385.9028} +{"type":"log","callId":"call@282","time":19968.266,"message":" navigated to \"http://localhost:5174/booking/passengers\""} +{"type":"after","callId":"call@282","endTime":19968.273} +{"type":"before","callId":"call@289","startTime":19968.313,"title":"Wait for load state \"load\"","class":"Page","method":"__waitInfo__","params":{"waitId":"8db6a5233af8013666b422cc2cc65adf","phase":"before","event":""},"stepId":"pw:api@36","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"log","callId":"call@289","time":19968.324,"message":" not waiting, \"load\" event already fired"} +{"type":"after","callId":"call@289","endTime":19968.328} +{"type":"before","callId":"call@293","startTime":19968.348,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@37","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@293"} +{"type":"before","callId":"call@295","startTime":19968.515,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@38","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@295"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680395.jpeg","width":1280,"height":720,"timestamp":19968.853,"frameSwapWallTime":1784630680393.3699} +{"type":"frame-snapshot","snapshot":{"callId":"call@293","snapshotName":"before@call@293","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[11,0]],[[11,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[11,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Passenger details"],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","1"," ","(Primary)"," - Adult",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Ethiopian",")"]],["DIV",{"class":"text-center py-8"},["DIV",{"class":"mb-4 p-3 bg-blue-50 dark:bg-blue-900/30 border border-blue-200 dark:border-blue-800 rounded-lg"},["P",{"class":"text-sm text-blue-700 dark:text-blue-300"},"Please verify your identity with Fayda to complete your profile"]],["BUTTON",{"type":"button","class":"btn-primary flex items-center justify-center gap-2 mx-auto disabled:opacity-50 disabled:cursor-not-allowed"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-external-link w-5 h-5"},["path",{"d":"M15 3h6v6"}],["path",{"d":"M10 14 21 3"}],["path",{"d":"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}]],"Verify with Fayda"],["BUTTON",{"type":"button","class":"text-sm text-gray-500 dark:text-gray-400 hover:underline mt-3 block mx-auto disabled:opacity-50 disabled:cursor-not-allowed"},"Skip for now"]]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},"Continue to seat selection"]]]]]]]]]],[[11,300]],[[10,114]]]],"viewport":{"width":1280,"height":720},"timestamp":19969.464,"wallTime":1784630680395,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@293","time":19969.677,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@295","snapshotName":"before@call@295","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,69]],"viewport":{"width":1280,"height":720},"timestamp":19970.071,"wallTime":1784630680396,"collectionTime":0.10000000149011612,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@295","time":19970.261,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"log","callId":"call@295","time":19972.479,"message":" locator resolved to visible "} +{"type":"after","callId":"call@295","endTime":19972.508,"result":{},"afterSnapshot":"after@call@295"} +{"type":"frame-snapshot","snapshot":{"callId":"call@295","snapshotName":"after@call@295","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,69]],"viewport":{"width":1280,"height":720},"timestamp":19972.995,"wallTime":1784630680399,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@297","startTime":19973.692,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true},"stepId":"pw:api@39","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@297"} +{"type":"frame-snapshot","snapshot":{"callId":"call@297","snapshotName":"before@call@297","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,69]],"viewport":{"width":1280,"height":720},"timestamp":19974.188,"wallTime":1784630680400,"collectionTime":0.20000000298023224,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@297","time":19974.328,"message":" checking visibility of locator('input[name=\"passengers.0.name\"]')"} +{"type":"after","callId":"call@297","endTime":19974.857,"result":{"value":false},"afterSnapshot":"after@call@297"} +{"type":"frame-snapshot","snapshot":{"callId":"call@297","snapshotName":"after@call@297","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,69]],"viewport":{"width":1280,"height":720},"timestamp":19975.355,"wallTime":1784630680401,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@299","startTime":19976.08,"class":"Frame","method":"isVisible","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true},"stepId":"pw:api@40","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@299"} +{"type":"frame-snapshot","snapshot":{"callId":"call@299","snapshotName":"before@call@299","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,69]],"viewport":{"width":1280,"height":720},"timestamp":19976.71,"wallTime":1784630680403,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@299","time":19976.889,"message":" checking visibility of locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"after","callId":"call@299","endTime":19977.575,"result":{"value":true},"afterSnapshot":"after@call@299"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680404.jpeg","width":1280,"height":720,"timestamp":19978.039,"frameSwapWallTime":1784630680402.969} +{"type":"frame-snapshot","snapshot":{"callId":"call@299","snapshotName":"after@call@299","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,69]],"viewport":{"width":1280,"height":720},"timestamp":19978.101,"wallTime":1784630680404,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@301","startTime":19978.684,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@41","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@301"} +{"type":"log","callId":"call@285","time":19978.837,"message":"element was detached from the DOM, retrying"} +{"type":"frame-snapshot","snapshot":{"callId":"call@301","snapshotName":"before@call@301","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,69]],"viewport":{"width":1280,"height":720},"timestamp":19979.15,"wallTime":1784630680405,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@301","time":19979.297,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"log","callId":"call@301","time":19980.161,"message":" locator resolved to "} +{"type":"log","callId":"call@301","time":19980.451,"message":"attempting click action"} +{"type":"log","callId":"call@301","time":19980.462,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680421.jpeg","width":1280,"height":720,"timestamp":19994.35,"frameSwapWallTime":1784630680419.304} +{"type":"log","callId":"call@301","time":19994.91,"message":"element was detached from the DOM, retrying"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680428.jpeg","width":1280,"height":720,"timestamp":20001.476,"frameSwapWallTime":1784630680426.5361} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680437.jpeg","width":1280,"height":720,"timestamp":20010.762,"frameSwapWallTime":1784630680435.721} +{"type":"log","callId":"call@301","time":20015.941,"message":" locator resolved to "} +{"type":"log","callId":"call@301","time":20017.061,"message":"attempting click action"} +{"type":"log","callId":"call@301","time":20017.081,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680454.jpeg","width":1280,"height":720,"timestamp":20027.851,"frameSwapWallTime":1784630680452.762} +{"type":"log","callId":"call@301","time":20028.335,"message":" element is not stable"} +{"type":"log","callId":"call@301","time":20028.342,"message":"retrying click action"} +{"type":"log","callId":"call@301","time":20028.357,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680461.jpeg","width":1280,"height":720,"timestamp":20035.192,"frameSwapWallTime":1784630680460.185} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680469.jpeg","width":1280,"height":720,"timestamp":20043.331,"frameSwapWallTime":1784630680468.332} +{"type":"log","callId":"call@301","time":20044.92,"message":" element is not stable"} +{"type":"log","callId":"call@301","time":20044.926,"message":"retrying click action"} +{"type":"log","callId":"call@301","time":20044.927,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680487.jpeg","width":1280,"height":720,"timestamp":20060.7,"frameSwapWallTime":1784630680485.6008} +{"type":"log","callId":"call@301","time":20065.815,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680494.jpeg","width":1280,"height":720,"timestamp":20068.073,"frameSwapWallTime":1784630680492.9048} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680505.jpeg","width":1280,"height":720,"timestamp":20078.396,"frameSwapWallTime":1784630680503.104} +{"type":"log","callId":"call@301","time":20078.702,"message":" element is not stable"} +{"type":"log","callId":"call@301","time":20078.716,"message":"retrying click action"} +{"type":"log","callId":"call@301","time":20078.717,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680520.jpeg","width":1280,"height":720,"timestamp":20093.869,"frameSwapWallTime":1784630680518.7832} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680527.jpeg","width":1280,"height":720,"timestamp":20101.139,"frameSwapWallTime":1784630680526.06} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680537.jpeg","width":1280,"height":720,"timestamp":20110.515,"frameSwapWallTime":1784630680535.449} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680554.jpeg","width":1280,"height":720,"timestamp":20127.461,"frameSwapWallTime":1784630680552.178} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680561.jpeg","width":1280,"height":720,"timestamp":20134.809,"frameSwapWallTime":1784630680559.631} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680571.jpeg","width":1280,"height":720,"timestamp":20144.922,"frameSwapWallTime":1784630680569.294} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680587.jpeg","width":1280,"height":720,"timestamp":20161.228,"frameSwapWallTime":1784630680586.199} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680595.jpeg","width":1280,"height":720,"timestamp":20168.666,"frameSwapWallTime":1784630680593.601} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680604.jpeg","width":1280,"height":720,"timestamp":20177.614,"frameSwapWallTime":1784630680602.4128} +{"type":"log","callId":"call@301","time":20179.459,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680621.jpeg","width":1280,"height":720,"timestamp":20194.505,"frameSwapWallTime":1784630680619.335} +{"type":"log","callId":"call@301","time":20195.336,"message":" element is not stable"} +{"type":"log","callId":"call@301","time":20195.341,"message":"retrying click action"} +{"type":"log","callId":"call@301","time":20195.342,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680628.jpeg","width":1280,"height":720,"timestamp":20202.205,"frameSwapWallTime":1784630680627.115} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680637.jpeg","width":1280,"height":720,"timestamp":20210.453,"frameSwapWallTime":1784630680635.386} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680653.jpeg","width":1280,"height":720,"timestamp":20227.2,"frameSwapWallTime":1784630680652.05} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680661.jpeg","width":1280,"height":720,"timestamp":20235.015,"frameSwapWallTime":1784630680659.832} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680670.jpeg","width":1280,"height":720,"timestamp":20244.288,"frameSwapWallTime":1784630680669.074} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680687.jpeg","width":1280,"height":720,"timestamp":20260.776,"frameSwapWallTime":1784630680685.641} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680695.jpeg","width":1280,"height":720,"timestamp":20269.164,"frameSwapWallTime":1784630680694.107} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680704.jpeg","width":1280,"height":720,"timestamp":20277.466,"frameSwapWallTime":1784630680702.363} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680712.jpeg","width":1280,"height":720,"timestamp":20285.849,"frameSwapWallTime":1784630680710.731} +{"type":"log","callId":"call@301","time":20295.982,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680728.jpeg","width":1280,"height":720,"timestamp":20301.922,"frameSwapWallTime":1784630680726.716} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680735.jpeg","width":1280,"height":720,"timestamp":20308.713,"frameSwapWallTime":1784630680733.552} +{"type":"log","callId":"call@301","time":20311.375,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@301","time":20311.383,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@301","time":20311.579,"message":" done scrolling"} +{"type":"input","callId":"call@301","point":{"x":768,"y":254},"inputSnapshot":"input@call@301"} +{"type":"frame-snapshot","snapshot":{"callId":"call@301","snapshotName":"input@call@301","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[8,27]],["BODY",{"class":"font-sans antialiased"},[[9,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[19,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[9,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[8,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[8,39]],["DIV",{"class":"text-center py-8"},["P",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-4"},"Fayda verification is currently unavailable"],["BUTTON",{"type":"button","class":"btn-primary"},"Enter details manually"]]],[[8,59]]]]]]]]]],[[19,300]],[[18,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20312.546,"wallTime":1784630680739,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@301","time":20313.257,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680742.jpeg","width":1280,"height":720,"timestamp":20316.007,"frameSwapWallTime":1784630680740.9749} +{"type":"log","callId":"call@301","time":20319.194,"message":" click action done"} +{"type":"log","callId":"call@301","time":20319.198,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@301","time":20319.378,"message":" navigations have finished"} +{"type":"after","callId":"call@301","endTime":20319.422,"afterSnapshot":"after@call@301"} +{"type":"frame-snapshot","snapshot":{"callId":"call@301","snapshotName":"after@call@301","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[9,27]],["BODY",{"class":"font-sans antialiased"},[[10,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[20,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[10,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[9,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[9,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"ETHIOPIAN","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.0.nationality"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Phone Number *"],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},["DIV",{"class":"flex items-center gap-1.5 px-3 py-2.5 bg-gray-50 dark:bg-gray-800 border-r border-gray-300 dark:border-gray-600 select-none flex-shrink-0"},["SPAN",{"class":"text-sm leading-none"},"🇪🇹"],["SPAN",{"class":"text-xs font-semibold text-gray-600 dark:text-gray-300"},"+251"]],["INPUT",{"__playwright_value_":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],["P",{"class":"text-xs text-gray-400 dark:text-gray-500 mt-1"},"Format: ","+251912345678 or 0912345678"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Email (optional)"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"email@example.com","type":"email","name":"passengers.0.email"}]]]]],[[9,59]]]]]]]]]],[[20,300]],[[19,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20320.326,"wallTime":1784630680746,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@303","startTime":20321.175,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@42","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@303"} +{"type":"frame-snapshot","snapshot":{"callId":"call@303","snapshotName":"before@call@303","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,66]],"viewport":{"width":1280,"height":720},"timestamp":20321.754,"wallTime":1784630680748,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@303","time":20321.905,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"log","callId":"call@303","time":20322.729,"message":" locator resolved to visible "} +{"type":"after","callId":"call@303","endTime":20322.753,"result":{},"afterSnapshot":"after@call@303"} +{"type":"frame-snapshot","snapshot":{"callId":"call@303","snapshotName":"after@call@303","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,66]],"viewport":{"width":1280,"height":720},"timestamp":20323.295,"wallTime":1784630680749,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@305","startTime":20324.073,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"value":"Adult 1","timeout":15000},"stepId":"pw:api@43","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@305"} +{"type":"frame-snapshot","snapshot":{"callId":"call@305","snapshotName":"before@call@305","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,66]],"viewport":{"width":1280,"height":720},"timestamp":20324.714,"wallTime":1784630680751,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@305","time":20324.859,"message":"waiting for locator('input[name=\"passengers.0.name\"]')"} +{"type":"log","callId":"call@305","time":20325.598,"message":" locator resolved to "} +{"type":"log","callId":"call@305","time":20325.895,"message":" fill(\"Adult 1\")"} +{"type":"log","callId":"call@305","time":20325.898,"message":"attempting fill action"} +{"type":"input","callId":"call@305","inputSnapshot":"input@call@305"} +{"type":"frame-snapshot","snapshot":{"callId":"call@305","snapshotName":"input@call@305","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[13,27]],["BODY",{"class":"font-sans antialiased"},[[14,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[24,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[14,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[13,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[13,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[4,1]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[4,21]],[[4,31]],[[4,35]],[[4,49]],[[4,53]]]]],[[13,59]]]]]]]]]],[[24,300]],[[23,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20326.439,"wallTime":1784630680752,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@305","time":20326.502,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@305","endTime":20331.057,"afterSnapshot":"after@call@305"} +{"type":"frame-snapshot","snapshot":{"callId":"call@305","snapshotName":"after@call@305","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[14,27]],["BODY",{"class":"font-sans antialiased"},[[15,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[25,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[15,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[14,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[14,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[5,1]],["INPUT",{"__playwright_value_":"Adult 1","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[5,21]],[[5,31]],[[5,35]],[[5,49]],[[5,53]]]]],[[14,59]]]]]]]]]],[[25,300]],[[24,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20331.968,"wallTime":1784630680758,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@307","startTime":20332.788,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.0.gender\"]","strict":true,"options":[{"valueOrLabel":"Male"}],"timeout":15000},"stepId":"pw:api@44","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@307"} +{"type":"frame-snapshot","snapshot":{"callId":"call@307","snapshotName":"before@call@307","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[15,27]],["BODY",{"class":"font-sans antialiased"},[[16,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[26,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[16,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[15,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[15,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[6,1]],["INPUT",{"__playwright_value_":"Adult 1","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[6,21]],[[6,31]],[[6,35]],[[6,49]],[[6,53]]]]],[[15,59]]]]]]]]]],[[26,300]],[[25,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20333.46,"wallTime":1784630680759,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@307","time":20333.592,"message":"waiting for locator('select[name=\"passengers.0.gender\"]')"} +{"type":"log","callId":"call@307","time":20334.446,"message":" locator resolved to "} +{"type":"log","callId":"call@307","time":20334.784,"message":"attempting select option action"} +{"type":"input","callId":"call@307","inputSnapshot":"input@call@307"} +{"type":"frame-snapshot","snapshot":{"callId":"call@307","snapshotName":"input@call@307","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[16,27]],["BODY",{"class":"font-sans antialiased"},[[17,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[27,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[17,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[16,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[16,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[7,21]],["DIV",{},[[7,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},[[7,25]],[[7,27]],[[7,29]]]],[[7,35]],[[7,49]],[[7,53]]]]],[[16,59]]]]]]]]]],[[27,300]],[[26,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20335.347,"wallTime":1784630680761,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@307","time":20335.433,"message":" waiting for element to be visible and enabled"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680764.jpeg","width":1280,"height":720,"timestamp":20337.7,"frameSwapWallTime":1784630680762.344} +{"type":"log","callId":"call@307","time":20337.841,"message":" selected specified option(s)"} +{"type":"after","callId":"call@307","endTime":20337.905,"result":{"values":["Male"]},"afterSnapshot":"after@call@307"} +{"type":"frame-snapshot","snapshot":{"callId":"call@307","snapshotName":"after@call@307","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[17,27]],["BODY",{"class":"font-sans antialiased"},[[18,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[28,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[18,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[17,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[17,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[8,21]],["DIV",{},[[8,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[8,24]]],["OPTION",{"__playwright_selected_":"true","value":"Male"},[[8,26]]],[[8,29]]]],[[8,35]],[[8,49]],[[8,53]]]]],[[17,59]]]]]]]]]],[[28,300]],[[27,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20338.731,"wallTime":1784630680765,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@309","startTime":20339.465,"class":"Frame","method":"fill","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> input[type=\"tel\"] >> nth=0","strict":true,"value":"912345678","timeout":15000},"stepId":"pw:api@45","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@309"} +{"type":"frame-snapshot","snapshot":{"callId":"call@309","snapshotName":"before@call@309","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[18,27]],["BODY",{"class":"font-sans antialiased"},[[19,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[29,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[19,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[18,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[18,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[9,21]],["DIV",{},[[9,23]],["SELECT",{"name":"passengers.0.gender","class":"input-field "},[[1,0]],[[1,1]],[[9,29]]]],[[9,35]],[[9,49]],[[9,53]]]]],[[18,59]]]]]]]]]],[[29,300]],[[28,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20340.172,"wallTime":1784630680766,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@309","time":20340.347,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).locator('input[type=\"tel\"]').first()"} +{"type":"log","callId":"call@309","time":20341.643,"message":" locator resolved to "} +{"type":"log","callId":"call@309","time":20342.051,"message":" fill(\"912345678\")"} +{"type":"log","callId":"call@309","time":20342.059,"message":"attempting fill action"} +{"type":"input","callId":"call@309","inputSnapshot":"input@call@309"} +{"type":"frame-snapshot","snapshot":{"callId":"call@309","snapshotName":"input@call@309","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[19,27]],["BODY",{"class":"font-sans antialiased"},[[20,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[30,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[20,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[19,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[19,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],[[10,21]],[[1,1]],[[10,35]],["DIV",{},[[10,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[10,42]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],[[10,47]]]],[[10,53]]]]],[[19,59]]]]]]]]]],[[30,300]],[[29,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20342.825,"wallTime":1784630680769,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@309","time":20342.916,"message":" waiting for element to be visible, enabled and editable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680770.jpeg","width":1280,"height":720,"timestamp":20344.306,"frameSwapWallTime":1784630680768.986} +{"type":"after","callId":"call@309","endTime":20346.055,"afterSnapshot":"after@call@309"} +{"type":"frame-snapshot","snapshot":{"callId":"call@309","snapshotName":"after@call@309","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[20,27]],["BODY",{"class":"font-sans antialiased"},[[21,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[31,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[21,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[20,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[20,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],[[11,21]],[[2,1]],[[11,35]],["DIV",{},[[11,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[11,42]],["INPUT",{"__playwright_value_":"912345678","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[11,47]]]],[[11,53]]]]],[[20,59]]]]]]]]]],[[31,300]],[[30,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20347.176,"wallTime":1784630680773,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@311","startTime":20348.08,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@46","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@311"} +{"type":"frame-snapshot","snapshot":{"callId":"call@311","snapshotName":"before@call@311","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[21,27]],["BODY",{"class":"font-sans antialiased"},[[22,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[32,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[22,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[21,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[21,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],[[12,21]],[[3,1]],[[12,35]],["DIV",{},[[12,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[12,42]],["INPUT",{"__playwright_value_":"912345678","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[12,47]]]],[[12,53]]]]],[[21,59]]]]]]]]]],[[32,300]],[[31,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20348.781,"wallTime":1784630680775,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@311","time":20348.93,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"log","callId":"call@311","time":20350.061,"message":" locator resolved to "} +{"type":"log","callId":"call@311","time":20350.327,"message":"attempting click action"} +{"type":"log","callId":"call@311","time":20350.344,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680779.jpeg","width":1280,"height":720,"timestamp":20352.662,"frameSwapWallTime":1784630680777.4438} +{"type":"log","callId":"call@311","time":20362.436,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@311","time":20362.444,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@311","time":20362.57,"message":" done scrolling"} +{"type":"input","callId":"call@311","point":{"x":1007.5,"y":210},"inputSnapshot":"input@call@311"} +{"type":"frame-snapshot","snapshot":{"callId":"call@311","snapshotName":"input@call@311","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[22,27]],["BODY",{"class":"font-sans antialiased"},[[23,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[33,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[23,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[22,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[22,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[7,1]],["DIV",{},[[13,5]],["DIV",{},["BUTTON",{"__playwright_target__":"","type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[13,7]],[[13,18]]]]],[[4,1]],[[13,35]],[[1,3]],[[13,53]]]]],[[22,59]]]]]]]]]],[[33,300]],[[32,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20363.586,"wallTime":1784630680790,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@311","time":20365.231,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680794.jpeg","width":1280,"height":720,"timestamp":20368.291,"frameSwapWallTime":1784630680792.9211} +{"type":"log","callId":"call@311","time":20375.147,"message":" click action done"} +{"type":"log","callId":"call@311","time":20375.156,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@311","time":20375.724,"message":" navigations have finished"} +{"type":"after","callId":"call@311","endTime":20375.956,"afterSnapshot":"after@call@311"} +{"type":"frame-snapshot","snapshot":{"callId":"call@311","snapshotName":"after@call@311","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[23,27]],["BODY",{"class":"font-sans antialiased"},[[24,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[34,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[24,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[23,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[23,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],["DIV",{},[[14,5]],["DIV",{},[[1,0]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2020"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2019"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2018"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2017"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2016"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2015"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2014"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2013"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2012"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2011"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2010"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2009"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2008"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2007"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2006"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2005"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2004"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2003"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2002"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2001"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2000"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1999"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1998"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1997"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1996"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1995"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1994"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1993"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1992"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1991"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1990"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1989"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1988"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1987"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1986"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1985"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1984"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1983"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1982"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1981"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1980"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1979"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1978"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1977"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1976"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1975"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1974"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1973"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1972"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1971"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1970"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1969"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1968"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1967"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1966"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1965"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1964"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1963"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1962"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1961"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1960"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1959"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1958"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1957"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1956"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1955"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1954"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1953"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1952"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1951"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1950"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1949"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1948"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1947"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1946"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1945"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1944"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1943"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1942"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1941"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1940"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1939"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1938"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1937"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1936"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1935"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1934"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1933"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1932"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1931"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1930"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1929"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1928"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1927"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1926"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1925"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1924"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1923"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1922"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1921"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1920"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1919"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1918"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1917"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1916"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2000"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[5,1]],[[14,35]],[[2,3]],[[14,53]]]]],[[23,59]]]]]]]]]],[[34,300]],[[33,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20379.325,"wallTime":1784630680804,"collectionTime":1.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@313","startTime":20380.365,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@47","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@313"} +{"type":"frame-snapshot","snapshot":{"callId":"call@313","snapshotName":"before@call@313","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[24,27]],["BODY",{"class":"font-sans antialiased"},[[25,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[35,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[25,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[24,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[24,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[9,1]],["DIV",{},[[15,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[15,7]],[[15,18]]],[[1,0]],[[1,341]],[[1,343]]]],[[6,1]],[[15,35]],[[3,3]],[[15,53]]]]],[[24,59]]]]]]]]]],[[35,300]],[[34,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20381.51,"wallTime":1784630680807,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@313","time":20381.656,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@313","time":20383.807,"message":" locator resolved to "} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680810.jpeg","width":1280,"height":720,"timestamp":20384.168,"frameSwapWallTime":1784630680808.957} +{"type":"log","callId":"call@313","time":20384.386,"message":"attempting click action"} +{"type":"log","callId":"call@313","time":20384.397,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680817.jpeg","width":1280,"height":720,"timestamp":20390.884,"frameSwapWallTime":1784630680815.616} +{"type":"log","callId":"call@313","time":20395.681,"message":" element is not stable"} +{"type":"log","callId":"call@313","time":20395.69,"message":"retrying click action"} +{"type":"log","callId":"call@313","time":20395.708,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680836.jpeg","width":1280,"height":720,"timestamp":20410.256,"frameSwapWallTime":1784630680834.992} +{"type":"log","callId":"call@313","time":20415.319,"message":" element is not stable"} +{"type":"log","callId":"call@313","time":20415.328,"message":"retrying click action"} +{"type":"log","callId":"call@313","time":20415.33,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680843.jpeg","width":1280,"height":720,"timestamp":20416.552,"frameSwapWallTime":1784630680841.4458} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680850.jpeg","width":1280,"height":720,"timestamp":20423.673,"frameSwapWallTime":1784630680848.5361} +{"type":"log","callId":"call@313","time":20437.095,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680864.jpeg","width":1280,"height":720,"timestamp":20438.036,"frameSwapWallTime":1784630680862.8098} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680873.jpeg","width":1280,"height":720,"timestamp":20446.761,"frameSwapWallTime":1784630680871.592} +{"type":"log","callId":"call@313","time":20454.048,"message":" element is not stable"} +{"type":"log","callId":"call@313","time":20454.057,"message":"retrying click action"} +{"type":"log","callId":"call@313","time":20454.058,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680881.jpeg","width":1280,"height":720,"timestamp":20455.07,"frameSwapWallTime":1784630680879.991} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680898.jpeg","width":1280,"height":720,"timestamp":20471.934,"frameSwapWallTime":1784630680896.7131} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680906.jpeg","width":1280,"height":720,"timestamp":20480.061,"frameSwapWallTime":1784630680904.846} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680915.jpeg","width":1280,"height":720,"timestamp":20488.884,"frameSwapWallTime":1784630680913.777} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680932.jpeg","width":1280,"height":720,"timestamp":20505.775,"frameSwapWallTime":1784630680930.444} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680940.jpeg","width":1280,"height":720,"timestamp":20514.029,"frameSwapWallTime":1784630680938.9219} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680949.jpeg","width":1280,"height":720,"timestamp":20522.506,"frameSwapWallTime":1784630680947.4102} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680965.jpeg","width":1280,"height":720,"timestamp":20538.392,"frameSwapWallTime":1784630680963.191} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680974.jpeg","width":1280,"height":720,"timestamp":20547.647,"frameSwapWallTime":1784630680972.446} +{"type":"log","callId":"call@313","time":20555.359,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680982.jpeg","width":1280,"height":720,"timestamp":20556.172,"frameSwapWallTime":1784630680981.104} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630680991.jpeg","width":1280,"height":720,"timestamp":20564.688,"frameSwapWallTime":1784630680989.626} +{"type":"log","callId":"call@313","time":20570.89,"message":" element is not stable"} +{"type":"log","callId":"call@313","time":20570.899,"message":"retrying click action"} +{"type":"log","callId":"call@313","time":20570.9,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681007.jpeg","width":1280,"height":720,"timestamp":20580.592,"frameSwapWallTime":1784630681005.45} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681015.jpeg","width":1280,"height":720,"timestamp":20589.321,"frameSwapWallTime":1784630681014.063} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681024.jpeg","width":1280,"height":720,"timestamp":20597.747,"frameSwapWallTime":1784630681022.654} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681041.jpeg","width":1280,"height":720,"timestamp":20614.599,"frameSwapWallTime":1784630681039.446} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681050.jpeg","width":1280,"height":720,"timestamp":20623.558,"frameSwapWallTime":1784630681048.428} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681056.jpeg","width":1280,"height":720,"timestamp":20629.956,"frameSwapWallTime":1784630681054.827} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681070.jpeg","width":1280,"height":720,"timestamp":20643.762,"frameSwapWallTime":1784630681068.665} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681078.jpeg","width":1280,"height":720,"timestamp":20651.938,"frameSwapWallTime":1784630681076.896} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681086.jpeg","width":1280,"height":720,"timestamp":20660.249,"frameSwapWallTime":1784630681085.269} +{"type":"log","callId":"call@313","time":20672.209,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681104.jpeg","width":1280,"height":720,"timestamp":20677.484,"frameSwapWallTime":1784630681102.4548} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681111.jpeg","width":1280,"height":720,"timestamp":20685.289,"frameSwapWallTime":1784630681110.2341} +{"type":"log","callId":"call@313","time":20687.434,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@313","time":20687.44,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@313","time":20687.572,"message":" done scrolling"} +{"type":"input","callId":"call@313","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@313"} +{"type":"frame-snapshot","snapshot":{"callId":"call@313","snapshotName":"input@call@313","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[25,27]],["BODY",{"class":"font-sans antialiased"},[[26,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[36,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[26,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[25,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[25,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[10,1]],["DIV",{},[[16,5]],["DIV",{},[[1,0]],[[2,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[2,2]],[[2,8]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[2,9]]]],[[2,15]]],[[2,19]],[[2,26]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},[[2,27]],["DIV",{"class":"flex gap-2 h-full"},[[2,93]],[[2,121]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"791","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},[[2,122]],[[2,124]],[[2,126]],[[2,128]],[[2,130]],[[2,132]],[[2,134]],[[2,136]],[[2,138]],[[2,140]],[[2,142]],[[2,144]],[[2,146]],[[2,148]],[[2,150]],[[2,152]],[[2,154]],[[2,156]],[[2,158]],[[2,160]],[[2,162]],[[2,164]],[[2,166]],[[2,168]],[[2,170]],[[2,172]],[[2,174]],[[2,176]],[[2,178]],[[2,180]],[[2,182]],[[2,184]],[[2,186]],[[2,188]],[[2,190]],[[2,192]],[[2,194]],[[2,196]],[[2,198]],[[2,200]],[[2,202]],[[2,204]],[[2,206]],[[2,208]],[[2,210]],[[2,212]],[[2,214]],[[2,216]],[[2,218]],[[2,220]],[[2,222]],[[2,224]],[[2,226]],[[2,228]],[[2,230]],[[2,232]],[[2,234]],[[2,236]],[[2,238]],[[2,240]],[[2,242]],[[2,244]],[[2,246]],[[2,248]],[[2,250]],[[2,252]],[[2,254]],[[2,256]],[[2,258]],[[2,260]],[[2,262]],[[2,264]],[[2,266]],[[2,268]],[[2,270]],[[2,272]],[[2,274]],[[2,276]],[[2,278]],[[2,280]],[[2,282]],[[2,284]],[[2,286]],[[2,288]],[[2,290]],[[2,292]],[[2,294]],[[2,296]],[[2,298]],[[2,300]],[[2,302]],[[2,304]],[[2,306]],[[2,308]],[[2,310]],[[2,312]],[[2,314]],[[2,316]],[[2,318]],[[2,320]],[[2,322]],[[2,324]],[[2,326]],[[2,328]],[[2,330]],[[2,332]],[[2,333]]]]]],[[2,340]]],[[2,343]]]],[[7,1]],[[16,35]],[[4,3]],[[16,53]]]]],[[25,59]]]]]]]]]],[[36,300]],[[35,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20689.115,"wallTime":1784630681115,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@313","time":20689.833,"message":" performing click action"} +{"type":"log","callId":"call@313","time":20693.116,"message":" click action done"} +{"type":"log","callId":"call@313","time":20693.119,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@313","time":20693.291,"message":" navigations have finished"} +{"type":"after","callId":"call@313","endTime":20693.337,"afterSnapshot":"after@call@313"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681120.jpeg","width":1280,"height":720,"timestamp":20694.034,"frameSwapWallTime":1784630681119.069} +{"type":"frame-snapshot","snapshot":{"callId":"call@313","snapshotName":"after@call@313","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[26,27]],["BODY",{"class":"font-sans antialiased"},[[27,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[37,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[27,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[26,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[26,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[11,1]],["DIV",{},[[17,5]],["DIV",{},[[2,0]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[3,2]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[3,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","1916"," – ","2020"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[3,343]]]],[[8,1]],[[17,35]],[[5,3]],[[17,53]]]]],[[26,59]]]]]]]]]],[[37,300]],[[36,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20694.291,"wallTime":1784630681120,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@315","startTime":20695.033,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"15","timeout":15000},"stepId":"pw:api@48","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@315"} +{"type":"frame-snapshot","snapshot":{"callId":"call@315","snapshotName":"before@call@315","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[27,27]],["BODY",{"class":"font-sans antialiased"},[[28,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[38,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[28,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[27,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[27,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[12,1]],["DIV",{},[[18,5]],["DIV",{},[[3,0]],[[4,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[4,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[1,0]]]],[[4,15]]],[[1,22]],[[1,25]]],[[4,343]]]],[[9,1]],[[18,35]],[[6,3]],[[18,53]]]]],[[27,59]]]]]]]]]],[[38,300]],[[37,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20695.737,"wallTime":1784630681122,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@315","time":20695.856,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@315","time":20697.084,"message":" locator resolved to "} +{"type":"log","callId":"call@315","time":20697.369,"message":" fill(\"15\")"} +{"type":"log","callId":"call@315","time":20697.372,"message":"attempting fill action"} +{"type":"input","callId":"call@315","inputSnapshot":"input@call@315"} +{"type":"frame-snapshot","snapshot":{"callId":"call@315","snapshotName":"input@call@315","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[28,27]],["BODY",{"class":"font-sans antialiased"},[[29,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[39,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[29,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[28,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[28,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[13,1]],["DIV",{},[[19,5]],["DIV",{},[[4,0]],[[5,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[1,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[5,343]]]],[[10,1]],[[19,35]],[[7,3]],[[19,53]]]]],[[28,59]]]]]]]]]],[[39,300]],[[38,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20698.059,"wallTime":1784630681124,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@315","time":20698.13,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@315","endTime":20701.062,"afterSnapshot":"after@call@315"} +{"type":"frame-snapshot","snapshot":{"callId":"call@315","snapshotName":"after@call@315","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[29,27]],["BODY",{"class":"font-sans antialiased"},[[30,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[40,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[30,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[29,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[29,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[14,1]],["DIV",{},[[20,5]],["DIV",{},[[5,0]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"15","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[6,343]]]],[[11,1]],[[20,35]],[[8,3]],[[20,53]]]]],[[29,59]]]]]]]]]],[[40,300]],[[39,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20702.113,"wallTime":1784630681128,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@317","startTime":20702.83,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"6","timeout":15000},"stepId":"pw:api@49","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@317"} +{"type":"frame-snapshot","snapshot":{"callId":"call@317","snapshotName":"before@call@317","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[30,27]],["BODY",{"class":"font-sans antialiased"},[[31,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[41,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[31,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[30,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[30,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[15,1]],["DIV",{},[[21,5]],["DIV",{},[[6,0]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[7,343]]]],[[12,1]],[[21,35]],[[9,3]],[[21,53]]]]],[[30,59]]]]]]]]]],[[41,300]],[[40,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20703.617,"wallTime":1784630681130,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@317","time":20703.723,"message":"waiting for getByPlaceholder('MM')"} +{"type":"log","callId":"call@317","time":20704.852,"message":" locator resolved to "} +{"type":"log","callId":"call@317","time":20705.114,"message":" fill(\"6\")"} +{"type":"log","callId":"call@317","time":20705.116,"message":"attempting fill action"} +{"type":"input","callId":"call@317","inputSnapshot":"input@call@317"} +{"type":"frame-snapshot","snapshot":{"callId":"call@317","snapshotName":"input@call@317","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[31,27]],["BODY",{"class":"font-sans antialiased"},[[32,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[42,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[32,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[31,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[31,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[16,1]],["DIV",{},[[22,5]],["DIV",{},[[7,0]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[8,343]]]],[[13,1]],[[22,35]],[[10,3]],[[22,53]]]]],[[31,59]]]]]]]]]],[[42,300]],[[41,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20705.792,"wallTime":1784630681132,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@317","time":20705.871,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@317","endTime":20707.829,"afterSnapshot":"after@call@317"} +{"type":"frame-snapshot","snapshot":{"callId":"call@317","snapshotName":"after@call@317","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[32,27]],["BODY",{"class":"font-sans antialiased"},[[33,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[43,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[33,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[32,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[32,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[17,1]],["DIV",{},[[23,5]],["DIV",{},[[8,0]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"15"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"6","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[9,343]]]],[[14,1]],[[23,35]],[[11,3]],[[23,53]]]]],[[32,59]]]]]]]]]],[[43,300]],[[42,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20708.623,"wallTime":1784630681135,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@319","startTime":20709.315,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"1990","timeout":15000},"stepId":"pw:api@50","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@319"} +{"type":"frame-snapshot","snapshot":{"callId":"call@319","snapshotName":"before@call@319","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[33,27]],["BODY",{"class":"font-sans antialiased"},[[34,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[44,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[34,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[33,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[33,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[18,1]],["DIV",{},[[24,5]],["DIV",{},[[9,0]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[10,343]]]],[[15,1]],[[24,35]],[[12,3]],[[24,53]]]]],[[33,59]]]]]]]]]],[[44,300]],[[43,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20710.503,"wallTime":1784630681136,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@319","time":20710.618,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681138.jpeg","width":1280,"height":720,"timestamp":20711.895,"frameSwapWallTime":1784630681136.7258} +{"type":"log","callId":"call@319","time":20712.109,"message":" locator resolved to "} +{"type":"log","callId":"call@319","time":20712.375,"message":" fill(\"1990\")"} +{"type":"log","callId":"call@319","time":20712.378,"message":"attempting fill action"} +{"type":"input","callId":"call@319","inputSnapshot":"input@call@319"} +{"type":"frame-snapshot","snapshot":{"callId":"call@319","snapshotName":"input@call@319","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[34,27]],["BODY",{"class":"font-sans antialiased"},[[35,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[45,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[35,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[34,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[34,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[19,1]],["DIV",{},[[25,5]],["DIV",{},[[10,0]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[11,343]]]],[[16,1]],[[25,35]],[[13,3]],[[25,53]]]]],[[34,59]]]]]]]]]],[[45,300]],[[44,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20712.988,"wallTime":1784630681139,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@319","time":20713.046,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@319","endTime":20714.924,"afterSnapshot":"after@call@319"} +{"type":"frame-snapshot","snapshot":{"callId":"call@319","snapshotName":"after@call@319","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[35,27]],["BODY",{"class":"font-sans antialiased"},[[36,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[46,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[36,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[35,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[35,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[26,5]],["DIV",{},[[11,0]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"6"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"1990","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 15/6/1990"]]],[[12,343]]]],[[17,1]],[[26,35]],[[14,3]],[[26,53]]]]],[[35,59]]]]]]]]]],[[46,300]],[[45,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20715.61,"wallTime":1784630681142,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@321","startTime":20716.255,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@51","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@321"} +{"type":"frame-snapshot","snapshot":{"callId":"call@321","snapshotName":"before@call@321","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[36,27]],["BODY",{"class":"font-sans antialiased"},[[37,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[47,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[37,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[36,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[36,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[21,1]],["DIV",{},[[27,5]],["DIV",{},[[12,0]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"1990","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[13,343]]]],[[18,1]],[[27,35]],[[15,3]],[[27,53]]]]],[[36,59]]]]]]]]]],[[47,300]],[[46,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20716.919,"wallTime":1784630681143,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@321","time":20717.013,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"log","callId":"call@321","time":20718.605,"message":" locator resolved to "} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681145.jpeg","width":1280,"height":720,"timestamp":20718.854,"frameSwapWallTime":1784630681143.794} +{"type":"log","callId":"call@321","time":20719.041,"message":"attempting click action"} +{"type":"log","callId":"call@321","time":20719.062,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681154.jpeg","width":1280,"height":720,"timestamp":20727.766,"frameSwapWallTime":1784630681152.664} +{"type":"log","callId":"call@321","time":20729.081,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@321","time":20729.085,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@321","time":20729.472,"message":" done scrolling"} +{"type":"input","callId":"call@321","point":{"x":1163.4,"y":668},"inputSnapshot":"input@call@321"} +{"type":"frame-snapshot","snapshot":{"callId":"call@321","snapshotName":"input@call@321","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[37,27]],["BODY",{"class":"font-sans antialiased"},[[38,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[48,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[38,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[37,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[37,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[22,1]],["DIV",{},[[28,5]],["DIV",{},[[13,0]],[[14,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[10,2]],[[1,3]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"__playwright_target__":"","type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},[[2,6]]]]],[[14,343]]]],[[19,1]],[[28,35]],[[16,3]],[[28,53]]]]],[[37,59]]]]]]]]]],[[48,300]],[[47,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20730.574,"wallTime":1784630681157,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@321","time":20731.216,"message":" performing click action"} +{"type":"log","callId":"call@321","time":20735.774,"message":" click action done"} +{"type":"log","callId":"call@321","time":20735.778,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@321","time":20735.957,"message":" navigations have finished"} +{"type":"after","callId":"call@321","endTime":20736.02,"afterSnapshot":"after@call@321"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681163.jpeg","width":1280,"height":720,"timestamp":20736.765,"frameSwapWallTime":1784630681161.648} +{"type":"frame-snapshot","snapshot":{"callId":"call@321","snapshotName":"after@call@321","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[38,27]],["BODY",{"class":"font-sans antialiased"},[[39,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[49,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[39,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[38,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[38,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[23,1]],["DIV",{},[[29,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"June 15, 1990"],[[29,18]]]]],[[20,1]],[[29,35]],[[17,3]],[[29,53]]]]],[[38,59]]]]]]]]]],[[49,300]],[[48,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20736.879,"wallTime":1784630681163,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@323","startTime":20737.534,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue to seat selection/i]","strict":true,"timeout":15000},"stepId":"pw:api@52","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@323"} +{"type":"frame-snapshot","snapshot":{"callId":"call@323","snapshotName":"before@call@323","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":20738.2,"wallTime":1784630681164,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@323","time":20738.301,"message":"waiting for getByRole('button', { name: /continue to seat selection/i })"} +{"type":"log","callId":"call@323","time":20739.532,"message":" locator resolved to "} +{"type":"log","callId":"call@323","time":20739.853,"message":"attempting click action"} +{"type":"log","callId":"call@323","time":20739.867,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@293","time":20747.714,"message":" locator resolved to visible "} +{"type":"after","callId":"call@293","endTime":20747.742,"result":{},"afterSnapshot":"after@call@293"} +{"type":"frame-snapshot","snapshot":{"callId":"call@293","snapshotName":"after@call@293","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[40,27]],["BODY",{"class":"font-sans antialiased"},[[41,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[51,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[41,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[40,29]],["FORM",{"class":"space-y-6"},[[2,7]],["DIV",{"class":"flex gap-4"},[[40,56]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},[[40,57]]]]]]]]]]]],[[51,300]],[[50,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20748.349,"wallTime":1784630681174,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681178.jpeg","width":1280,"height":720,"timestamp":20751.724,"frameSwapWallTime":1784630681176.381} +{"type":"log","callId":"call@323","time":20753.604,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@323","time":20753.61,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@323","time":20754.471,"message":" done scrolling"} +{"type":"input","callId":"call@323","point":{"x":1021,"y":507},"inputSnapshot":"input@call@323"} +{"type":"frame-snapshot","snapshot":{"callId":"call@323","snapshotName":"input@call@323","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[41,27]],["BODY",{"class":"font-sans antialiased"},[[42,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[52,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[42,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[41,29]],["FORM",{"class":"space-y-6"},[[3,7]],["DIV",{"class":"flex gap-4"},[[41,56]],["BUTTON",{"type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},[[41,57]]]]]]]]]]]],[[52,300]],[[51,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20755.611,"wallTime":1784630681182,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@323","time":20756.151,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681186.jpeg","width":1280,"height":720,"timestamp":20759.847,"frameSwapWallTime":1784630681184.448} +{"type":"log","callId":"call@323","time":20760.325,"message":" click action done"} +{"type":"log","callId":"call@323","time":20760.328,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@323","time":20760.563,"message":" navigations have finished"} +{"type":"after","callId":"call@323","endTime":20760.606,"afterSnapshot":"after@call@323"} +{"type":"frame-snapshot","snapshot":{"callId":"call@323","snapshotName":"after@call@323","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[42,27]],["BODY",{"class":"font-sans antialiased"},[[43,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[53,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[43,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[42,29]],["FORM",{"class":"space-y-6"},[[4,7]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2","disabled":""},[[42,54]],[[42,55]]],["BUTTON",{"type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2","disabled":""},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]]]]]]]]],[[53,300]],[[52,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20761.274,"wallTime":1784630681187,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@325","startTime":20762.071,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"e717300d4040cce0d52d2f70b40c0611","phase":"before","event":""},"stepId":"pw:api@53","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"log","callId":"call@325","time":20762.091,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681196.jpeg","width":1280,"height":720,"timestamp":20769.543,"frameSwapWallTime":1784630681194.1929} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681211.jpeg","width":1280,"height":720,"timestamp":20784.802,"frameSwapWallTime":1784630681209.5261} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681220.jpeg","width":1280,"height":720,"timestamp":20793.695,"frameSwapWallTime":1784630681218.353} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681228.jpeg","width":1280,"height":720,"timestamp":20801.741,"frameSwapWallTime":1784630681226.372} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681236.jpeg","width":1280,"height":720,"timestamp":20810.2,"frameSwapWallTime":1784630681234.882} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681252.jpeg","width":1280,"height":720,"timestamp":20826.292,"frameSwapWallTime":1784630681250.959} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681262.jpeg","width":1280,"height":720,"timestamp":20835.459,"frameSwapWallTime":1784630681260.166} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681276.jpeg","width":1280,"height":720,"timestamp":20850.059,"frameSwapWallTime":1784630681274.76} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681284.jpeg","width":1280,"height":720,"timestamp":20858.213,"frameSwapWallTime":1784630681282.881} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681338.jpeg","width":1280,"height":720,"timestamp":20911.863,"frameSwapWallTime":1784630681299.8108} +{"type":"console","messageType":"warning","text":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element: JSHandle@node","args":[{"preview":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:","value":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:"},{"preview":"JSHandle@node"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js","lineNumber":109,"columnNumber":20},"time":20912.864,"pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681341.jpeg","width":1280,"height":720,"timestamp":20914.455,"frameSwapWallTime":1784630681330.342} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681341.jpeg","width":1280,"height":720,"timestamp":20914.508,"frameSwapWallTime":1784630681331.623} +{"type":"log","callId":"call@325","time":20914.586,"message":" navigated to \"http://localhost:5174/booking/seats\""} +{"type":"after","callId":"call@325","endTime":20914.593} +{"type":"before","callId":"call@330","startTime":20914.641,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"bb570921fdd71701b9b5c910a2e4ded1","phase":"before","event":"response"},"stepId":"pw:api@54","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"before","callId":"call@333","startTime":20914.683,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/auto assign seats/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@55","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@333"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681341.jpeg","width":1280,"height":720,"timestamp":20914.814,"frameSwapWallTime":1784630681339.385} +{"type":"frame-snapshot","snapshot":{"callId":"call@333","snapshotName":"before@call@333","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[54,0]],[[54,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[54,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[54,36]],[[54,43]],[[54,47]],[[54,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[54,55]],["OL",{"class":"space-y-1"},[[54,61]],[[44,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[54,69]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[54,72]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[54,74]]]],[[54,81]],[[54,86]],[[54,91]]]]],[[54,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[54,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[54,132]],[[44,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[54,148]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[54,151]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[54,152]]]],[[54,155]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[54,157]]]],[[54,168]],[[54,177]],[[54,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"0","/","1"," seats selected"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-400 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"]]],["STYLE",{},"@keyframes seats-slide-up{from{transform:translateY(100%)}to{transform:translateY(0)}}"],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},["BUTTON",{"class":"flex items-center gap-1.5 text-sm text-gray-600 dark:text-gray-400 hover:text-primary transition-colors font-medium"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["DIV",{"class":"text-center"},["H1",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Select Seats"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Now selecting: ","Adult 1"]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"0","/","1"]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"flex justify-end"},["BUTTON",{"type":"button","class":"flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 text-sm font-semibold text-gray-700 dark:text-gray-300 hover:border-primary hover:text-primary transition-colors shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-4 h-4"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],"Preview Train Coach"]],["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-6 space-y-4"},["DIV",{"class":"flex items-center justify-between"},["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 h-5 w-32"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 h-8 w-24 rounded-lg"}]],["DIV",{"class":"grid grid-cols-4 gap-3"},["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}],["DIV",{"class":"animate-pulse rounded-lg bg-gray-200 dark:bg-gray-700 aspect-square rounded-xl"}]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-amber-100 text-amber-700 dark:bg-amber-900/30 dark:text-amber-400"},"0","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"Selecting seat for Adult 1 (1 of 1)"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 0%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)]/20 text-[rgb(20,113,76)] ring-2 ring-[rgb(20,113,76)]"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"],["SPAN",{"class":"text-[10px] font-semibold text-[rgb(20,113,76)] uppercase tracking-wide"},"Now selecting"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-gray-400"},"Not Assigned"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"],["BUTTON",{"class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],["DIV",{"class":"lg:hidden h-24"}]]]]]]]],[[54,300]],[[53,114]]]],"viewport":{"width":1280,"height":720},"timestamp":20922.639,"wallTime":1784630681348,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@333","time":20923.07,"message":"waiting for getByRole('button', { name: /auto assign seats/i }).first()"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681350.jpeg","width":1280,"height":720,"timestamp":20923.791,"frameSwapWallTime":1784630681348.502} +{"type":"log","callId":"call@333","time":20924.805,"message":" locator resolved to "} +{"type":"log","callId":"call@333","time":20925.255,"message":"attempting click action"} +{"type":"log","callId":"call@333","time":20925.267,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681359.jpeg","width":1280,"height":720,"timestamp":20932.51,"frameSwapWallTime":1784630681357.426} +{"type":"log","callId":"call@333","time":20940.349,"message":"element was detached from the DOM, retrying"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681368.jpeg","width":1280,"height":720,"timestamp":20941.483,"frameSwapWallTime":1784630681366.376} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681381.jpeg","width":1280,"height":720,"timestamp":20954.934,"frameSwapWallTime":1784630681379.698} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681389.jpeg","width":1280,"height":720,"timestamp":20963.088,"frameSwapWallTime":1784630681387.93} +{"type":"log","callId":"call@333","time":20963.644,"message":" locator resolved to "} +{"type":"log","callId":"call@333","time":20964.054,"message":"attempting click action"} +{"type":"log","callId":"call@333","time":20964.069,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681398.jpeg","width":1280,"height":720,"timestamp":20971.533,"frameSwapWallTime":1784630681396.1948} +{"type":"log","callId":"call@333","time":20979.105,"message":" element is not stable"} +{"type":"log","callId":"call@333","time":20979.115,"message":"retrying click action"} +{"type":"log","callId":"call@333","time":20979.134,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681406.jpeg","width":1280,"height":720,"timestamp":20979.596,"frameSwapWallTime":1784630681404.448} +{"type":"log","callId":"call@333","time":20995.894,"message":" element is not stable"} +{"type":"log","callId":"call@333","time":20995.907,"message":"retrying click action"} +{"type":"log","callId":"call@333","time":20995.909,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681423.jpeg","width":1280,"height":720,"timestamp":20996.553,"frameSwapWallTime":1784630681421.233} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681431.jpeg","width":1280,"height":720,"timestamp":21004.793,"frameSwapWallTime":1784630681429.513} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681439.jpeg","width":1280,"height":720,"timestamp":21012.49,"frameSwapWallTime":1784630681437.2239} +{"type":"log","callId":"call@333","time":21017.329,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681448.jpeg","width":1280,"height":720,"timestamp":21021.506,"frameSwapWallTime":1784630681446.148} +{"type":"log","callId":"call@333","time":21028.397,"message":" element is not stable"} +{"type":"log","callId":"call@333","time":21028.412,"message":"retrying click action"} +{"type":"log","callId":"call@333","time":21028.413,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681464.jpeg","width":1280,"height":720,"timestamp":21037.803,"frameSwapWallTime":1784630681462.0718} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681473.jpeg","width":1280,"height":720,"timestamp":21046.579,"frameSwapWallTime":1784630681471.302} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681481.jpeg","width":1280,"height":720,"timestamp":21054.541,"frameSwapWallTime":1784630681479.269} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681489.jpeg","width":1280,"height":720,"timestamp":21063.005,"frameSwapWallTime":1784630681487.762} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681506.jpeg","width":1280,"height":720,"timestamp":21079.429,"frameSwapWallTime":1784630681504.082} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681514.jpeg","width":1280,"height":720,"timestamp":21087.956,"frameSwapWallTime":1784630681512.666} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681522.jpeg","width":1280,"height":720,"timestamp":21096.178,"frameSwapWallTime":1784630681520.8188} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681531.jpeg","width":1280,"height":720,"timestamp":21104.657,"frameSwapWallTime":1784630681529.3281} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681548.jpeg","width":1280,"height":720,"timestamp":21121.503,"frameSwapWallTime":1784630681546.074} +{"type":"log","callId":"call@333","time":21129.02,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681556.jpeg","width":1280,"height":720,"timestamp":21129.53,"frameSwapWallTime":1784630681554.33} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681564.jpeg","width":1280,"height":720,"timestamp":21138.188,"frameSwapWallTime":1784630681562.818} +{"type":"log","callId":"call@333","time":21145.819,"message":" element is not stable"} +{"type":"log","callId":"call@333","time":21145.83,"message":"retrying click action"} +{"type":"log","callId":"call@333","time":21145.832,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681581.jpeg","width":1280,"height":720,"timestamp":21155.149,"frameSwapWallTime":1784630681579.825} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681589.jpeg","width":1280,"height":720,"timestamp":21162.547,"frameSwapWallTime":1784630681587.314} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681598.jpeg","width":1280,"height":720,"timestamp":21171.529,"frameSwapWallTime":1784630681596.2068} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681615.jpeg","width":1280,"height":720,"timestamp":21188.769,"frameSwapWallTime":1784630681613.3699} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681623.jpeg","width":1280,"height":720,"timestamp":21196.599,"frameSwapWallTime":1784630681621.396} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681630.jpeg","width":1280,"height":720,"timestamp":21203.61,"frameSwapWallTime":1784630681628.45} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681648.jpeg","width":1280,"height":720,"timestamp":21221.476,"frameSwapWallTime":1784630681646.2058} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681656.jpeg","width":1280,"height":720,"timestamp":21230.031,"frameSwapWallTime":1784630681654.639} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681664.jpeg","width":1280,"height":720,"timestamp":21238.189,"frameSwapWallTime":1784630681662.783} +{"type":"log","callId":"call@333","time":21247.151,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681678.jpeg","width":1280,"height":720,"timestamp":21251.843,"frameSwapWallTime":1784630681676.592} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681687.jpeg","width":1280,"height":720,"timestamp":21260.686,"frameSwapWallTime":1784630681685.482} +{"type":"log","callId":"call@333","time":21262.311,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@333","time":21262.318,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@333","time":21262.436,"message":" done scrolling"} +{"type":"input","callId":"call@333","point":{"x":1105.32,"y":333},"inputSnapshot":"input@call@333"} +{"type":"frame-snapshot","snapshot":{"callId":"call@333","snapshotName":"input@call@333","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[1,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[55,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},[[1,64]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"]]],[[1,70]],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},[[1,87]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[1,98]],["DIV",{"class":"flex flex-col items-stretch"},["DIV",{"class":"px-4"},["DIV",{"class":"relative bg-[rgb(20,113,76)] rounded-t-2xl px-5 pt-4 pb-3 text-white overflow-hidden"},["DIV",{"class":"absolute top-0 left-0 right-0 h-1 bg-white/20"}],["DIV",{"class":"flex items-center justify-between"},["DIV",{},["P",{"class":"text-[10px] font-bold uppercase tracking-widest text-white/60"},"EDR Express"],["P",{"class":"text-sm font-bold mt-0.5"},"1"," Coach"]],["DIV",{"class":"flex gap-2"},["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}]]],["DIV",{"class":"mt-3 flex items-center gap-2"},["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}],["DIV",{"class":"flex-1 h-1 bg-white/20 rounded-full"}],["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}]]],["DIV",{"class":"h-3 bg-[rgb(15,85,57)] mx-3 rounded-b-lg"}]],["DIV",{},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}],["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}]]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-900/30"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-gray-100 dark:bg-gray-700 text-gray-600 dark:text-gray-300"},"1"],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-gray-900 dark:text-white"},"UI-C1"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"46"," of ","48"," seats available"]]],["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"hidden sm:flex items-end gap-0.5 h-5"},["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 text-gray-400"},["path",{"d":"m6 9 6 6 6-6"}]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}]]],["DIV",{"class":"px-4"},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}]]],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded-b-2xl"}]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-amber-100 text-amber-700 dark:bg-amber-900/30 dark:text-amber-400"},"0","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"Selecting seat for Adult 1 (1 of 1)"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 0%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)]/20 text-[rgb(20,113,76)] ring-2 ring-[rgb(20,113,76)]"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"],["SPAN",{"class":"text-[10px] font-semibold text-[rgb(20,113,76)] uppercase tracking-wide"},"Now selecting"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-gray-400"},"Not Assigned"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"],["BUTTON",{"class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],[[1,161]]]]]]]]],[[55,300]],[[54,114]]]],"viewport":{"width":1280,"height":720},"timestamp":21263.873,"wallTime":1784630681690,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@333","time":21264.51,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681693.jpeg","width":1280,"height":720,"timestamp":21267.251,"frameSwapWallTime":1784630681692.072} +{"type":"log","callId":"call@333","time":21278.158,"message":" click action done"} +{"type":"log","callId":"call@333","time":21278.171,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@333","time":21280.188,"message":" navigations have finished"} +{"type":"after","callId":"call@333","endTime":21280.239,"afterSnapshot":"after@call@333"} +{"type":"frame-snapshot","snapshot":{"callId":"call@333","snapshotName":"after@call@333","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[56,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"1",[[2,58]],[[2,59]],[[2,60]]],[[2,63]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."]]],[[2,70]],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},[[2,74]],["DIV",{"class":"text-center"},[[2,76]]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"1",[[2,82]],[[2,83]]]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[2,98]],["DIV",{"class":"flex flex-col items-stretch"},[[1,22]],["DIV",{},[[1,27]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-[rgb(20,113,76)] shadow-lg shadow-[rgb(20,113,76)]/10"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-[rgb(20,113,76)] text-white"},[[1,29]]],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-[rgb(20,113,76)]"},[[1,31]]],[[1,37]]]],["DIV",{"class":"flex items-center gap-3"},[[1,52]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 rotate-180 text-[rgb(20,113,76)]"},[[1,53]]]]],["DIV",{"class":"border-t border-gray-100 dark:border-gray-800 bg-white dark:bg-gray-800 p-4"},["DIV",{"class":"flex flex-wrap gap-3 mb-4"},["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-green-50 border border-green-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Available"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-blue-50 border-2 border-blue-500 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Selected"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-red-50 border border-red-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Booked"]]],["DIV",{"class":"overflow-x-auto"},["DIV",{"class":"inline-block bg-gray-50 dark:bg-gray-700/30 rounded-xl p-4 border border-gray-200 dark:border-gray-700"},["DIV",{"class":"space-y-0"},["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 1A - BOOKED - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 1B - BOOKED - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-[rgb(20_113_76)] text-white shadow-md scale-105","title":"Seat 1C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 1D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]]]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}]]],[[1,65]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400"},"1","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"All seats selected — ready to continue"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 100%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)] text-white"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"Seat 1C"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."],["BUTTON",{"disabled":"","class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],[[2,161]]]]]]]]],[[56,300]],[[55,114]]]],"viewport":{"width":1280,"height":720},"timestamp":21283.694,"wallTime":1784630681708,"collectionTime":1.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@335","startTime":21284.875,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"762b2a7af527aaa1d562d57f0b50ef87","phase":"before","event":""},"stepId":"pw:api@56","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"log","callId":"call@335","time":21284.897,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681711.jpeg","width":1280,"height":720,"timestamp":21284.95,"frameSwapWallTime":1784630681709.2568} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681719.jpeg","width":1280,"height":720,"timestamp":21292.511,"frameSwapWallTime":1784630681716.96} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681728.jpeg","width":1280,"height":720,"timestamp":21301.426,"frameSwapWallTime":1784630681725.875} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681744.jpeg","width":1280,"height":720,"timestamp":21317.611,"frameSwapWallTime":1784630681741.919} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681753.jpeg","width":1280,"height":720,"timestamp":21326.509,"frameSwapWallTime":1784630681750.9229} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681760.jpeg","width":1280,"height":720,"timestamp":21333.842,"frameSwapWallTime":1784630681758.3152} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681769.jpeg","width":1280,"height":720,"timestamp":21342.931,"frameSwapWallTime":1784630681767.448} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681785.jpeg","width":1280,"height":720,"timestamp":21358.69,"frameSwapWallTime":1784630681783.218} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681801.jpeg","width":1280,"height":720,"timestamp":21374.981,"frameSwapWallTime":1784630681799.654} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681840.jpeg","width":1280,"height":720,"timestamp":21413.352,"frameSwapWallTime":1784630681833.017} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681840.jpeg","width":1280,"height":720,"timestamp":21413.729,"frameSwapWallTime":1784630681833.994} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681840.jpeg","width":1280,"height":720,"timestamp":21413.761,"frameSwapWallTime":1784630681834.4678} +{"type":"log","callId":"call@335","time":21413.819,"message":" navigated to \"http://localhost:5174/booking/review\""} +{"type":"after","callId":"call@335","endTime":21413.825} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681849.jpeg","width":1280,"height":720,"timestamp":21422.466,"frameSwapWallTime":1784630681847.2422} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681864.jpeg","width":1280,"height":720,"timestamp":21438.137,"frameSwapWallTime":1784630681862.9302} +{"type":"after","callId":"call@330","endTime":21440.185} +{"type":"before","callId":"call@343","startTime":21440.237,"class":"Response","method":"body","params":{},"stepId":"pw:api@57","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"after","callId":"call@343","endTime":21440.85,"result":{"binary":""}} +{"type":"before","callId":"call@345","startTime":21441.625,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"31ef40807542aa92b1e2b297212070c4","phase":"before","event":"response"},"stepId":"pw:api@58","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"before","callId":"call@348","startTime":21441.653,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@59","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","beforeSnapshot":"before@call@348"} +{"type":"frame-snapshot","snapshot":{"callId":"call@348","snapshotName":"before@call@348","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[57,0]],[[57,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[57,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[57,36]],[[57,43]],[[57,47]],[[57,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[57,55]],["OL",{"class":"space-y-1"},[[57,61]],[[47,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[57,74]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[57,77]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[57,79]]]],[[57,86]],[[57,91]]]]],[[57,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[57,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[57,132]],[[47,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[57,157]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[57,160]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[57,161]]]],[[57,164]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[57,166]]]],[[57,177]],[[57,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-28 lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Review your booking"],["DIV",{"class":"bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-3 mb-4 flex items-center gap-2"},["SPAN",{"class":"text-yellow-800 dark:text-yellow-200 text-sm"},"⏱️ Seats held for: ",["SPAN",{"class":"font-bold"}]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card overflow-hidden"},["DIV",{"class":"flex items-center gap-2 mb-6 pb-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"w-2 h-2 bg-primary rounded-full"}],["H2",{"class":"text-lg font-bold text-gray-900 dark:text-gray-100"},"Trip Details"],["SPAN",{"class":"ml-auto text-xs px-2.5 py-1 bg-primary/10 text-primary rounded-full font-semibold"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-8 flex-shrink-0"},["DIV",{"class":"w-4 h-4 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 dark:to-gray-700 my-2"}],["DIV",{"class":"w-4 h-4 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col"},["DIV",{"class":"pb-8"},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Alpha"]],["DIV",{"class":"pb-8"},["DIV",{"class":"flex items-center gap-6 text-sm text-gray-600 dark:text-gray-400"},["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"}]],["SPAN",{"class":"font-medium"},"4h 0m"]],["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M13 10V3L4 14h7v7l9-11h-7z"}]],["SPAN",{"class":"font-medium"},"Train ","UI-100"]]]],["DIV",{},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Charlie"]]]]],["DIV",{"class":"card"},["H2",{"class":"text-xl font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passengers"],["DIV",{"class":"space-y-3"},["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Adult 1"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Jun 15, 1990"," • ","ETHIOPIAN"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"1C"],["P",{"class":"text-[10px] text-gray-400 dark:text-gray-500 mt-0.5"},"Economy Regular"]]]]]],["DIV",{"class":"lg:hidden mt-4"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 py-3 z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"class":"btn-primary flex-1 py-2.5"},"Confirm "]]]]]]]],[[57,300]],[[56,114]]]],"viewport":{"width":1280,"height":720},"timestamp":21443.437,"wallTime":1784630681869,"collectionTime":1,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@348","time":21443.747,"message":"waiting for getByRole('button', { name: /^confirm/i }).first()"} +{"type":"log","callId":"call@348","time":21446.32,"message":" locator resolved to "} +{"type":"log","callId":"call@348","time":21446.689,"message":"attempting click action"} +{"type":"log","callId":"call@348","time":21446.703,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681873.jpeg","width":1280,"height":720,"timestamp":21446.881,"frameSwapWallTime":1784630681871.769} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681881.jpeg","width":1280,"height":720,"timestamp":21454.846,"frameSwapWallTime":1784630681879.699} +{"type":"log","callId":"call@348","time":21462.532,"message":" element is not stable"} +{"type":"log","callId":"call@348","time":21462.541,"message":"retrying click action"} +{"type":"log","callId":"call@348","time":21462.559,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681890.jpeg","width":1280,"height":720,"timestamp":21463.606,"frameSwapWallTime":1784630681888.4722} +{"type":"log","callId":"call@348","time":21478.75,"message":" element is not stable"} +{"type":"log","callId":"call@348","time":21478.755,"message":"retrying click action"} +{"type":"log","callId":"call@348","time":21478.756,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681906.jpeg","width":1280,"height":720,"timestamp":21480.194,"frameSwapWallTime":1784630681904.916} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681914.jpeg","width":1280,"height":720,"timestamp":21488.127,"frameSwapWallTime":1784630681912.802} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681923.jpeg","width":1280,"height":720,"timestamp":21496.917,"frameSwapWallTime":1784630681921.701} +{"type":"log","callId":"call@348","time":21500.555,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@348","time":21512.538,"message":" element is not stable"} +{"type":"log","callId":"call@348","time":21512.542,"message":"retrying click action"} +{"type":"log","callId":"call@348","time":21512.543,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681939.jpeg","width":1280,"height":720,"timestamp":21513.056,"frameSwapWallTime":1784630681937.7798} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681948.jpeg","width":1280,"height":720,"timestamp":21522.118,"frameSwapWallTime":1784630681946.813} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681957.jpeg","width":1280,"height":720,"timestamp":21530.381,"frameSwapWallTime":1784630681955.164} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681965.jpeg","width":1280,"height":720,"timestamp":21538.618,"frameSwapWallTime":1784630681963.392} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681980.jpeg","width":1280,"height":720,"timestamp":21554.335,"frameSwapWallTime":1784630681978.961} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681990.jpeg","width":1280,"height":720,"timestamp":21563.911,"frameSwapWallTime":1784630681988.608} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630681999.jpeg","width":1280,"height":720,"timestamp":21572.344,"frameSwapWallTime":1784630681996.9739} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682006.jpeg","width":1280,"height":720,"timestamp":21580.138,"frameSwapWallTime":1784630682004.9429} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682023.jpeg","width":1280,"height":720,"timestamp":21596.784,"frameSwapWallTime":1784630682021.453} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682031.jpeg","width":1280,"height":720,"timestamp":21605.213,"frameSwapWallTime":1784630682029.835} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682040.jpeg","width":1280,"height":720,"timestamp":21613.792,"frameSwapWallTime":1784630682038.333} +{"type":"log","callId":"call@348","time":21613.896,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@348","time":21629.053,"message":" element is not stable"} +{"type":"log","callId":"call@348","time":21629.063,"message":"retrying click action"} +{"type":"log","callId":"call@348","time":21629.065,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682056.jpeg","width":1280,"height":720,"timestamp":21630.167,"frameSwapWallTime":1784630682054.842} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682065.jpeg","width":1280,"height":720,"timestamp":21638.44,"frameSwapWallTime":1784630682063.192} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682073.jpeg","width":1280,"height":720,"timestamp":21646.981,"frameSwapWallTime":1784630682071.6218} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682090.jpeg","width":1280,"height":720,"timestamp":21664.091,"frameSwapWallTime":1784630682088.66} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682098.jpeg","width":1280,"height":720,"timestamp":21672.215,"frameSwapWallTime":1784630682096.9182} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682106.jpeg","width":1280,"height":720,"timestamp":21679.7,"frameSwapWallTime":1784630682104.41} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682123.jpeg","width":1280,"height":720,"timestamp":21696.693,"frameSwapWallTime":1784630682121.305} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682131.jpeg","width":1280,"height":720,"timestamp":21704.872,"frameSwapWallTime":1784630682129.508} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682139.jpeg","width":1280,"height":720,"timestamp":21713.213,"frameSwapWallTime":1784630682137.903} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682156.jpeg","width":1280,"height":720,"timestamp":21729.979,"frameSwapWallTime":1784630682154.646} +{"type":"log","callId":"call@348","time":21730.245,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682164.jpeg","width":1280,"height":720,"timestamp":21738.32,"frameSwapWallTime":1784630682163.066} +{"type":"log","callId":"call@348","time":21745.668,"message":" element is not stable"} +{"type":"log","callId":"call@348","time":21745.679,"message":"retrying click action"} +{"type":"log","callId":"call@348","time":21745.68,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682173.jpeg","width":1280,"height":720,"timestamp":21746.801,"frameSwapWallTime":1784630682171.545} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682179.jpeg","width":1280,"height":720,"timestamp":21753.024,"frameSwapWallTime":1784630682177.782} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682193.jpeg","width":1280,"height":720,"timestamp":21767.128,"frameSwapWallTime":1784630682191.854} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682201.jpeg","width":1280,"height":720,"timestamp":21775.247,"frameSwapWallTime":1784630682199.983} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682210.jpeg","width":1280,"height":720,"timestamp":21784.053,"frameSwapWallTime":1784630682208.587} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682227.jpeg","width":1280,"height":720,"timestamp":21800.64,"frameSwapWallTime":1784630682225.2468} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682235.jpeg","width":1280,"height":720,"timestamp":21808.964,"frameSwapWallTime":1784630682233.603} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682243.jpeg","width":1280,"height":720,"timestamp":21817.292,"frameSwapWallTime":1784630682241.998} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682260.jpeg","width":1280,"height":720,"timestamp":21833.971,"frameSwapWallTime":1784630682258.6018} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682268.jpeg","width":1280,"height":720,"timestamp":21842.222,"frameSwapWallTime":1784630682266.8618} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682277.jpeg","width":1280,"height":720,"timestamp":21850.765,"frameSwapWallTime":1784630682275.39} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682292.jpeg","width":1280,"height":720,"timestamp":21866.287,"frameSwapWallTime":1784630682290.992} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682302.jpeg","width":1280,"height":720,"timestamp":21875.757,"frameSwapWallTime":1784630682300.331} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682310.jpeg","width":1280,"height":720,"timestamp":21883.803,"frameSwapWallTime":1784630682308.452} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682318.jpeg","width":1280,"height":720,"timestamp":21892.328,"frameSwapWallTime":1784630682316.953} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682335.jpeg","width":1280,"height":720,"timestamp":21908.755,"frameSwapWallTime":1784630682333.483} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682343.jpeg","width":1280,"height":720,"timestamp":21917.052,"frameSwapWallTime":1784630682341.769} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682351.jpeg","width":1280,"height":720,"timestamp":21925.252,"frameSwapWallTime":1784630682350.021} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682368.jpeg","width":1280,"height":720,"timestamp":21942.172,"frameSwapWallTime":1784630682366.854} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682577.jpeg","width":1280,"height":720,"timestamp":22150.681,"frameSwapWallTime":1784630682575.255} +{"type":"log","callId":"call@348","time":22246.687,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@348","time":22262.135,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@348","time":22262.142,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@348","time":22262.635,"message":" done scrolling"} +{"type":"input","callId":"call@348","point":{"x":1106.65,"y":327},"inputSnapshot":"input@call@348"} +{"type":"frame-snapshot","snapshot":{"callId":"call@348","snapshotName":"input@call@348","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[1,194]],"viewport":{"width":1280,"height":720},"timestamp":22263.736,"wallTime":1784630682690,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@348","time":22264.349,"message":" performing click action"} +{"type":"log","callId":"call@348","time":22266.177,"message":" click action done"} +{"type":"log","callId":"call@348","time":22266.181,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@348","time":22266.74,"message":" navigations have finished"} +{"type":"after","callId":"call@348","endTime":22266.829,"afterSnapshot":"after@call@348"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682694.jpeg","width":1280,"height":720,"timestamp":22267.339,"frameSwapWallTime":1784630682692.054} +{"type":"frame-snapshot","snapshot":{"callId":"call@348","snapshotName":"after@call@348","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","frameId":"frame@5eccf5319b41294f8f98b60b632f06b7","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[2,194]],"viewport":{"width":1280,"height":720},"timestamp":22267.495,"wallTime":1784630682694,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@350","startTime":22276.329,"class":"Route","method":"continue","params":{"postData":"","isFallback":false},"stepId":"pw:api@60","pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682703.jpeg","width":1280,"height":720,"timestamp":22276.487,"frameSwapWallTime":1784630682700.412} +{"type":"after","callId":"call@350","endTime":22276.562} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682720.jpeg","width":1280,"height":720,"timestamp":22293.371,"frameSwapWallTime":1784630682717.987} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682728.jpeg","width":1280,"height":720,"timestamp":22301.927,"frameSwapWallTime":1784630682726.584} +{"type":"console","messageType":"error","text":"Failed to load resource: the server responded with a status of 400 (Bad Request)","args":[],"location":{"url":"http://localhost:4000/bookings","lineNumber":0,"columnNumber":0},"time":22305.907,"pageId":"page@8a3b1cb79de5013a10bb39b09c716710"} +{"type":"after","callId":"call@345","endTime":22307.933} +{"type":"event","time":22308.195,"class":"BrowserContext","method":"dialog","params":{"pageId":"page@8a3b1cb79de5013a10bb39b09c716710","type":"alert","message":"Booking total does not match the authoritative fare","defaultValue":""}} +{"type":"event","time":22308.831,"class":"BrowserContext","method":"dialog","params":{"pageId":"page@8a3b1cb79de5013a10bb39b09c716710","type":"alert","message":"Request failed with status code 400","defaultValue":""}} +{"type":"screencast-frame","pageId":"page@8a3b1cb79de5013a10bb39b09c716710","sha1":"page@8a3b1cb79de5013a10bb39b09c716710-1784630682736.jpeg","width":1280,"height":720,"timestamp":22310.267,"frameSwapWallTime":1784630682734.926} diff --git a/test-results/.playwright-artifacts-0/traces/c54002b584d14da4d6c8-f116b3b714fcbae86436-recording1.network b/test-results/.playwright-artifacts-0/traces/c54002b584d14da4d6c8-f116b3b714fcbae86436-recording1.network new file mode 100644 index 000000000..76e788efd --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/c54002b584d14da4d6c8-f116b3b714fcbae86436-recording1.network @@ -0,0 +1,56 @@ +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:30.883Z","time":21.199,"request":{"method":"GET","url":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-Fetch-Dest","value":"document"},{"name":"Sec-Fetch-Mode","value":"navigate"},{"name":"Sec-Fetch-Site","value":"none"},{"name":"Sec-Fetch-User","value":"?1"},{"name":"Upgrade-Insecure-Requests","value":"1"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"origin","value":"00000000-0000-4000-8000-000000000020"},{"name":"destination","value":"00000000-0000-4000-8000-000000000022"},{"name":"date","value":"2026-07-23"},{"name":"tripType","value":"ONE_WAY"},{"name":"adults","value":"1"},{"name":"children","value":"0"},{"name":"nationality","value":"ETHIOPIAN"},{"name":"promoCode","value":"EXPIRED50"}],"headersSize":673,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/html; charset=utf-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"X-Powered-By","value":"Next.js"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":51510,"mimeType":"text/html; charset=utf-8","compression":41238,"_sha1":"f38f23f9f28452720b1f6180255573c833d1c4df.html"},"headersSize":765,"bodySize":10272,"redirectURL":"","_transferSize":11037},"cache":{},"timings":{"dns":0.008,"connect":0.332,"ssl":1.428,"send":0,"wait":17.713,"receive":1.718},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10456.916,"_resourceType":"document","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:30.903Z","time":2.3369999999999997,"request":{"method":"GET","url":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"image"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"url","value":"/edr-logo.png"},{"name":"w","value":"256"},{"name":"q","value":"75"}],"headersSize":787,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"public, max-age=0, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Disposition","value":"inline; filename=\"edr-logo.webp\""},{"name":"Content-Length","value":"5926"},{"name":"Content-Security-Policy","value":"script-src 'none'; frame-src 'none'; sandbox;"},{"name":"Content-Type","value":"image/webp"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"eNfibJrIXqmN3qLNRx8kLaWQlGA3pvcLKa58Ff3I2KU="},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Vary","value":"Accept"},{"name":"X-Nextjs-Cache","value":"HIT"}],"content":{"size":5926,"mimeType":"image/webp","compression":0,"_sha1":"d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp"},"headersSize":416,"bodySize":5926,"redirectURL":"","_transferSize":6342},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.287,"receive":1.05},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10478.777,"_resourceType":"image","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:30.903Z","time":5.768,"request":{"method":"GET","url":"http://localhost:5174/_next/static/css/app/layout.css?v=1784630670890","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"style"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630670890"}],"headersSize":761,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/css; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"184e1-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":99553,"mimeType":"text/css; charset=UTF-8","compression":84302,"_sha1":"37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css"},"headersSize":356,"bodySize":15251,"redirectURL":"","_transferSize":15607},"cache":{},"timings":{"dns":0.011,"connect":0.282,"ssl":1.331,"send":0,"wait":2.28,"receive":1.864},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10478.809,"_resourceType":"stylesheet","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:30.904Z","time":6.548,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/webpack.js?v=1784630670890","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630670890"}],"headersSize":746,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"dc1e-19f8377166c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":369,"bodySize":10547,"redirectURL":"","_transferSize":10916},"cache":{},"timings":{"dns":0.003,"connect":0.391,"ssl":1.441,"send":0,"wait":2.451,"receive":2.262},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10478.831,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:30.904Z","time":9.532,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app-pages-internals.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":758,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"256bc-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":33746,"redirectURL":"","_transferSize":34116},"cache":{},"timings":{"dns":0,"connect":0.182,"ssl":1.204,"send":0,"wait":2.178,"receive":5.968},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10478.884,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:30.904Z","time":9.048,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":757,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"2c9d3-19f8376f06f\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":51283,"redirectURL":"","_transferSize":51653},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.91,"receive":6.138},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10478.912,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:30.904Z","time":37.976,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/layout.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":749,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"1c4c9e-19f8376cf38\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":434806,"redirectURL":"","_transferSize":435177},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.944,"receive":35.032},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10478.926,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:30.904Z","time":40.47,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/results/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":763,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"20cb55-19f8376f071\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:17 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":479485,"redirectURL":"","_transferSize":479856},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.545,"receive":37.925},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10478.898,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:30.904Z","time":109.31400000000001,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/main-app.js?v=1784630670890","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"v","value":"1784630670890"}],"headersSize":747,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:30 GMT"},{"name":"ETag","value":"W/\"5ec9be-19f8376cded\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":1354462,"redirectURL":"","_transferSize":1354833},"cache":{},"timings":{"dns":0.001,"connect":0.247,"ssl":1.269,"send":0,"wait":2.739,"receive":105.058},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10478.868,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.335Z","time":7.052,"request":{"method":"POST","url":"http://localhost:4000/promos/validate","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"20"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":891,"bodySize":20,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"51972257d77ca200ec2e5ee6e2c5c76d24493c88.json"}},"response":{"status":404,"statusText":"Not Found","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"160"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"ETag","value":"W/\"a0-HASGT0s9WVpJaEjeOywM4XQ+hlI\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":160,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"1c04864f4b3d595a496848de3b2c0ce1743e8652.json"},"headersSize":989,"bodySize":160,"redirectURL":"","_transferSize":1149},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.132,"receive":1.92},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10973.174,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.335Z","time":15.953000000000001,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"ETag","value":"W/\"229-NAMt82Ett2Pv7hs38BFXGfZ6HXw\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"34032df3612db763efee1b37f0115719f67a1d7c.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":13.976,"receive":1.977},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10973.1,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.335Z","time":7.683,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-NAMt82Ett2Pv7hs38BFXGfZ6HXw\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"ETag","value":"W/\"229-bk5HK1rvW6tA5DjNmSjV9DmcJaY\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"6e4e472b5aef5bab40e438cd9928d5f4399c25a6.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":5.857,"receive":1.826},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10973.123,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.336Z","time":31.794999999999998,"request":{"method":"POST","url":"http://localhost:4000/search","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"220"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":883,"bodySize":220,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"9b24d025b50a9c3ff3db8b177a92ea96d434dcc8.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"1599"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"ETag","value":"W/\"63f-03gJ5tvXkqFU2QTgh+VolENLSS8\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":1599,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"d37809e6dbd792a154d904e087e56894434b492f.json"},"headersSize":989,"bodySize":1599,"redirectURL":"","_transferSize":2588},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":29.889,"receive":1.906},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10973.295,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.332Z","time":16.082,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_features_support_SupportWidget_tsx.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":796,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"ETag","value":"W/\"f9fd6-19f8376cdec\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:09 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":233760,"redirectURL":"","_transferSize":234130},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.872,"receive":14.21},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10973.006,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.336Z","time":4.618,"request":{"method":"POST","url":"http://localhost:4000/promos/validate","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"20"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":891,"bodySize":20,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"51972257d77ca200ec2e5ee6e2c5c76d24493c88.json"}},"response":{"status":404,"statusText":"Not Found","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"160"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"ETag","value":"W/\"a0-KDkM/XaZXx5z2GdatSIa3Yz8ISE\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":160,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"28390cfd76995f1e73d8675ab5221add8cfc2121.json"},"headersSize":989,"bodySize":160,"redirectURL":"","_transferSize":1149},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.737,"receive":1.881},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10973.327,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.408Z","time":-1,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"BRoENz0byhS9ISmG6mdEeQ=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"WebSocket is closed before the connection is established."},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10981.956,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.408Z","time":9.506,"request":{"method":"GET","url":"http://localhost:4000/support/device/unread-count?deviceId=a1995b6f-be85-48a6-bfe1-72208b8aeaaa","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"deviceId","value":"a1995b6f-be85-48a6-bfe1-72208b8aeaaa"}],"headersSize":850,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"80"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"ETag","value":"W/\"50-HsfkNNv749lLDDTRmXk+yDGHWXU\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":80,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"1ec7e434dbfbe3d94b0c34d199793ec831875975.json"},"headersSize":981,"bodySize":80,"redirectURL":"","_transferSize":1061},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.013,"receive":1.493},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10982.528,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.940Z","time":8.655999999999999,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=br3vi","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22results%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/results"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"br3vi"}],"headersSize":1037,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"a5a2bb1a5b49246f969011b22df0d171d298ab95.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.789,"receive":0.867},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11515.973,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.978Z","time":7.027,"request":{"method":"GET","url":"http://localhost:5174/booking/auth-check?_rsc=n2i48","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"n2i48"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.027,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11552.17,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.986Z","time":16.656,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/auth-check/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":766,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:31 GMT"},{"name":"ETag","value":"W/\"ed732-19f8376f656\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":370,"bodySize":254272,"redirectURL":"","_transferSize":254642},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.685,"receive":14.971},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11560.433,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:32.035Z","time":7.147,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-bk5HK1rvW6tA5DjNmSjV9DmcJaY\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:32 GMT"},{"name":"ETag","value":"W/\"229-K/ClPsoSP+RelRQzYVaYcYInE5s\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"2bf0a53eca123fe45e951433615698718227139b.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.595,"receive":0.552},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11614.888,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:32.033Z","time":11.202,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=3ko94","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22auth-check%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/auth-check"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ko94"}],"headersSize":858,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:32 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":121,"mimeType":"text/x-component","compression":0,"_sha1":"113ef7bc1ddbb9932f87ab52b1c6c6d273a48c10.htc"},"headersSize":734,"bodySize":124,"redirectURL":"","_transferSize":858},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":10.055,"receive":1.147},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11614.857,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:32.035Z","time":13.065999999999999,"request":{"method":"GET","url":"http://localhost:4000/auth/profile","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"229-K/ClPsoSP+RelRQzYVaYcYInE5s\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"553"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:32 GMT"},{"name":"ETag","value":"W/\"229-82BxmcXoCHywMgI8EkwrfBUE9ik\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":553,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"f3607199c5e8087cb032023c124c2b7c1504f629.json"},"headersSize":983,"bodySize":553,"redirectURL":"","_transferSize":1536},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.687,"receive":0.379},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11619.128,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:32.046Z","time":12.168,"request":{"method":"GET","url":"http://localhost:5174/booking/passengers?_rsc=xc7gl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"xc7gl"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:32 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.168,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11620.262,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:32.060Z","time":34.7,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/passengers/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/auth-check"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":581,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:32 GMT"},{"name":"ETag","value":"W/\"216ea9-19f8376f7db\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:19 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":478257,"redirectURL":"","_transferSize":478628},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.198,"receive":32.502},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11634.279,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:32.163Z","time":7.971,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":842,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:32 GMT"},{"name":"ETag","value":"W/\"90-vRlo7RGg/whgwOQhNyeIwjdxpfY\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"bd1968ed11a0ff0860c0e421372788c23771a5f6.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.374,"receive":1.597},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11768.732,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:32.163Z","time":4.945,"request":{"method":"GET","url":"http://localhost:4000/config/fayda-status","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"90-vRlo7RGg/whgwOQhNyeIwjdxpfY\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":893,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:32 GMT"},{"name":"ETag","value":"W/\"90-3KQ/buwPIofqvOC08NyrnuvUhcI\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":144,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"dca43f6eec0f2287eabce0b4f0dcab9eebd485c2.json"},"headersSize":982,"bodySize":144,"redirectURL":"","_transferSize":1126},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.492,"receive":1.453},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11768.759,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:33.464Z","time":5.899,"request":{"method":"POST","url":"http://localhost:4000/passengers/save-details","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"349"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":900,"bodySize":349,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"e782d727cbe084d57f8a97158b86005a27c61a2e.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"368"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:33 GMT"},{"name":"ETag","value":"W/\"170-IGnTs1ArAUSBsfaz9Iafr8PnzB8\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":368,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"2069d3b3502b014481b1f6b3f4869fafc3e7cc1f.json"},"headersSize":988,"bodySize":368,"redirectURL":"","_transferSize":1356},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":4.532,"receive":1.367},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":13038.839,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:33.471Z","time":9.431000000000001,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=3ufbl","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22passengers%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/passengers"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"3ufbl"}],"headersSize":853,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:33 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":111,"mimeType":"text/x-component","compression":0,"_sha1":"3ba650e38c01b7f4dba7c59a8ac235a4f5802b22.htc"},"headersSize":734,"bodySize":119,"redirectURL":"","_transferSize":853},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.787,"receive":0.644},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":13046.356,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:33.482Z","time":8.591,"request":{"method":"GET","url":"http://localhost:5174/booking/seats?_rsc=1ivgy","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1ivgy"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:33 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.591,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":13056.483,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:33.492Z","time":31.79,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/seats/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/passengers"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":576,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:33 GMT"},{"name":"ETag","value":"W/\"1f96a9-19f8376ffca\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:21 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":484983,"redirectURL":"","_transferSize":485354},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.622,"receive":30.168},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":13066.672,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:33.579Z","time":43.298,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101?coachTypeId=00000000-0000-4000-8000-000000000001&journeyDirection=ONE_WAY&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"coachTypeId","value":"00000000-0000-4000-8000-000000000001"},{"name":"journeyDirection","value":"ONE_WAY"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"}],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9444"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:33 GMT"},{"name":"ETag","value":"W/\"24e4-ftzWu7t8TSBMAjtSeTQgzayIgF0\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9444,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7edcd6bbbb7c4d204c023b52793420cdac88805d.json"},"headersSize":985,"bodySize":9444,"redirectURL":"","_transferSize":10429},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":15.265,"receive":28.033},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":13191.821,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:34.460Z","time":24.727,"request":{"method":"POST","url":"http://localhost:4000/seats/hold","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"304"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":304,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"1bfc29f43ed7ce2a7e5b5bcd69699d79e347e384.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"941"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:34 GMT"},{"name":"ETag","value":"W/\"3ad-fJMUBbUOczr7ZqrQALD1qHwCQWA\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":941,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"7c931405b50e733afb66aad000b0f5a87c024160.json"},"headersSize":988,"bodySize":941,"redirectURL":"","_transferSize":1929},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":23.276,"receive":1.451},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":14035.158,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:34.488Z","time":8.748,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=11o05","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22seats%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/seats"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"11o05"}],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:34 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":113,"mimeType":"text/x-component","compression":0,"_sha1":"efc18e093e9560b1f05c3bd786098516c99407f5.htc"},"headersSize":734,"bodySize":120,"redirectURL":"","_transferSize":854},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.016,"receive":0.732},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":14065.143,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:34.499Z","time":7.908,"request":{"method":"GET","url":"http://localhost:5174/booking/review?_rsc=dcucj","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"dcucj"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:34 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.908,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":14073.287,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:34.508Z","time":26.384,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/review/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/seats"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":572,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:34 GMT"},{"name":"ETag","value":"W/\"1b5bdb-19f8377031c\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:22 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":413299,"redirectURL":"","_transferSize":413670},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.66,"receive":24.724},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":14082.529,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:34.582Z","time":14.304,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":873,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9439"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:34 GMT"},{"name":"ETag","value":"W/\"24df-BqJD+bQKHih6QgQmuGVUso33ZJE\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9439,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"06a243f9b40a1e287a420426b86554b28df76491.json"},"headersSize":985,"bodySize":9439,"redirectURL":"","_transferSize":10424},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":12.554,"receive":1.75},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":14179.837,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:34.583Z","time":7.811,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":835,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:34 GMT"},{"name":"ETag","value":"W/\"2f7-H9h6gc9dtgCUlvQQTwKEEz/aLYA\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"1fd87a81cf5db6009496f4104f0284133fda2d80.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":6.036,"receive":1.775},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":14179.866,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:34.583Z","time":12.672,"request":{"method":"GET","url":"http://localhost:4000/seats/seatmap/00000000-0000-4000-8000-000000000101","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"24df-BqJD+bQKHih6QgQmuGVUso33ZJE\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":926,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"9439"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:34 GMT"},{"name":"ETag","value":"W/\"24df-5yHglnxFxIP8TMUK4h2e0osak9s\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":9439,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"e721e0967c45c483fc4cc50ae21d9ed28b1a93db.json"},"headersSize":985,"bodySize":9439,"redirectURL":"","_transferSize":10424},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":11.058,"receive":1.614},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":14179.886,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:34.602Z","time":27.854,"request":{"method":"GET","url":"http://localhost:4000/search/fare-breakdown?scheduleId=00000000-0000-4000-8000-000000000101&originStationId=00000000-0000-4000-8000-000000000020&destinationStationId=00000000-0000-4000-8000-000000000022&passengers=%5B%7B%22passengerName%22%3A%22Adult+1%22%2C%22dateOfBirth%22%3A%221990-06-15%22%2C%22seatClassId%22%3A%2200000000-0000-4000-8000-000000000010%22%2C%22nationality%22%3A%22ETHIOPIAN%22%7D%5D&displayCurrency=ETB&promoCode=EXPIRED50","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"scheduleId","value":"00000000-0000-4000-8000-000000000101"},{"name":"originStationId","value":"00000000-0000-4000-8000-000000000020"},{"name":"destinationStationId","value":"00000000-0000-4000-8000-000000000022"},{"name":"passengers","value":"[{\"passengerName\":\"Adult 1\",\"dateOfBirth\":\"1990-06-15\",\"seatClassId\":\"00000000-0000-4000-8000-000000000010\",\"nationality\":\"ETHIOPIAN\"}]"},{"name":"displayCurrency","value":"ETB"},{"name":"promoCode","value":"EXPIRED50"}],"headersSize":844,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"720"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:34 GMT"},{"name":"ETag","value":"W/\"2d0-ZPytMHMVeILgreccjURSdS2t+B8\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":720,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"64fcad3073157882e0ade71c8d4452752dadf81f.json"},"headersSize":983,"bodySize":720,"redirectURL":"","_transferSize":1703},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":26.65,"receive":1.204},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":14181.112,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:35.451Z","time":4.274,"request":{"method":"GET","url":"http://localhost:4000/seat-classes","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"If-None-Match","value":"W/\"2f7-H9h6gc9dtgCUlvQQTwKEEz/aLYA\""},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":887,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"759"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:35 GMT"},{"name":"ETag","value":"W/\"2f7-IOr2xN1yQ3hwTVWrhzFqR+6Djh8\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":759,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"20eaf6c4dd724378704d55ab87316a47ee838e1f.json"},"headersSize":983,"bodySize":759,"redirectURL":"","_transferSize":1742},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.683,"receive":0.591},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":15025.238,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:35.457Z","time":44.066,"request":{"method":"POST","url":"http://localhost:4000/bookings","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"685"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":885,"bodySize":685,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"73de4d730799e08413be700689d43429c3617ccd.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"3536"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:35 GMT"},{"name":"ETag","value":"W/\"dd0-Zfg4UW1chB/TZDE6g7C67eFeIsk\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":3536,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"65f838516d5c841fd364313a83b0baede15e22c9.json"},"headersSize":989,"bodySize":3536,"redirectURL":"","_transferSize":4525},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":42.734,"receive":1.332},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":15032.582,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:35.603Z","time":8.694999999999999,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=1uobt","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22review%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/review"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"1uobt"}],"headersSize":843,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:35 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":115,"mimeType":"text/x-component","compression":0,"_sha1":"de07c86cc64bda73e654d27a199f6610c0e4ebad.htc"},"headersSize":734,"bodySize":116,"redirectURL":"","_transferSize":850},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.027,"receive":0.668},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":15177.735,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:35.614Z","time":7.603,"request":{"method":"GET","url":"http://localhost:5174/booking/payment?_rsc=rvb09","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22payment%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"rvb09"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:35 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.603,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":15187.943,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:35.623Z","time":27.296,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/payment/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/review"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":574,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:35 GMT"},{"name":"ETag","value":"W/\"1c5af1-19f83770767\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:23 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":435498,"redirectURL":"","_transferSize":435869},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.762,"receive":25.534},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":15196.803,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:35.698Z","time":4.825,"request":{"method":"GET","url":"http://localhost:4000/payments/methods","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":839,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"593"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:35 GMT"},{"name":"ETag","value":"W/\"251-3VCsoZvPhbU4RuXVmXJs5DTsliI\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":593,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"dd50aca19bcf85b53846e5d599726ce434ec9622.json"},"headersSize":983,"bodySize":593,"redirectURL":"","_transferSize":1576},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.456,"receive":1.369},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":15294.242,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:36.545Z","time":5.26,"request":{"method":"GET","url":"http://localhost:4000/payments/booking-amount?bookingId=2133d122-fa06-4e53-a213-7afb4a986a8b¤cy=ETB","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"bookingId","value":"2133d122-fa06-4e53-a213-7afb4a986a8b"},{"name":"currency","value":"ETB"}],"headersSize":846,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"146"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:36 GMT"},{"name":"ETag","value":"W/\"92-rM8/rnyPI/To+LAMA3M0Y88aIl4\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":146,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"accf3fae7c8f23f4e8f8b00c03733463cf1a225e.json"},"headersSize":982,"bodySize":146,"redirectURL":"","_transferSize":1128},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":3.784,"receive":1.476},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":16120.609,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:36.578Z","time":53.821,"request":{"method":"POST","url":"http://localhost:4000/payments/initiate","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"144"},{"name":"Content-Type","value":"application/json"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":894,"bodySize":144,"postData":{"mimeType":"application/json","text":"","params":[],"_sha1":"eb0ba22546b8b07928b5d4c10730c645df6be8b4.json"}},"response":{"status":201,"statusText":"Created","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"135"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:36 GMT"},{"name":"ETag","value":"W/\"87-K5R4u+oqQ0jcm02VOm+gD1dsFJ4\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":135,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"2b9478bbea2a4348dc9b4d953a6fa00f576c149e.json"},"headersSize":987,"bodySize":135,"redirectURL":"","_transferSize":1122},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":52.516,"receive":1.305},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":16153.528,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:38.634Z","time":9.194,"request":{"method":"GET","url":"http://localhost:5174/booking/confirmation?_rsc=gwlg9","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-Prefetch","value":"1"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22payment%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%2Ctrue%5D"},{"name":"Next-Url","value":"/booking/payment"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"gwlg9"}],"headersSize":851,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:38 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":125,"mimeType":"text/x-component","compression":0,"_sha1":"a072c05619b7cf3cbedc053f6c992794b91fee45.htc"},"headersSize":734,"bodySize":126,"redirectURL":"","_transferSize":860},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":8.432,"receive":0.762},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":18211.047,"_resourceType":"fetch","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:38.645Z","time":7.709,"request":{"method":"GET","url":"http://localhost:5174/booking/confirmation?_rsc=180sd","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Next-Router-State-Tree","value":"%5B%22%22%2C%7B%22children%22%3A%5B%22booking%22%2C%7B%22children%22%3A%5B%22confirmation%22%2C%7B%22children%22%3A%5B%22__PAGE__%22%2C%7B%7D%2Cnull%2Cnull%5D%7D%2Cnull%2C%22refetch%22%5D%7D%2Cnull%2Cnull%5D%7D%2Cnull%2Cnull%5D"},{"name":"RSC","value":"1"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[{"name":"_rsc","value":"180sd"}],"headersSize":-1,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"text/x-component"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:38 GMT"},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"RSC, Next-Router-State-Tree, Next-Router-Prefetch, Accept-Encoding"},{"name":"content-security-policy","value":"default-src 'self'; base-uri 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http://localhost:4000; font-src 'self' data:; connect-src 'self' http://localhost:4000 ws: wss:; worker-src 'self' blob:; frame-src 'self'; object-src 'none'; form-action 'self'; frame-ancestors 'none'"},{"name":"x-frame-options","value":"DENY"},{"name":"x-robots-tag","value":"noindex, nofollow"}],"content":{"size":-1,"mimeType":"text/x-component"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1,"_failureText":"net::ERR_ABORTED"},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":7.709,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":18219.138,"_resourceType":"fetch"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:38.654Z","time":27.437,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/app/booking/confirmation/page.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/payment"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":580,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:38 GMT"},{"name":"ETag","value":"W/\"1b9b35-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":425290,"redirectURL":"","_transferSize":425661},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1.704,"receive":25.733},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":18227.86,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:38.728Z","time":19.673,"request":{"method":"GET","url":"http://localhost:4000/bookings/2133d122-fa06-4e53-a213-7afb4a986a8b","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"application/json, text/plain, */*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:4000"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Referer","value":"http://localhost:5174/"},{"name":"Sec-Fetch-Dest","value":"empty"},{"name":"Sec-Fetch-Mode","value":"cors"},{"name":"Sec-Fetch-Site","value":"same-site"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"X-Frontend-Base-URL","value":"http://localhost:5174"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":868,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Length","value":"6312"},{"name":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"name":"Content-Type","value":"application/json; charset=utf-8"},{"name":"Cross-Origin-Opener-Policy","value":"same-origin"},{"name":"Cross-Origin-Resource-Policy","value":"same-origin"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:38 GMT"},{"name":"ETag","value":"W/\"18a8-q7zFKFV/0An9gOTUCaSqzkhb93I\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Origin-Agent-Cluster","value":"?1"},{"name":"Referrer-Policy","value":"no-referrer"},{"name":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"name":"Vary","value":"Origin"},{"name":"X-Content-Type-Options","value":"nosniff"},{"name":"X-DNS-Prefetch-Control","value":"off"},{"name":"X-Download-Options","value":"noopen"},{"name":"X-Frame-Options","value":"SAMEORIGIN"},{"name":"X-Permitted-Cross-Domain-Policies","value":"none"},{"name":"X-XSS-Protection","value":"0"}],"content":{"size":6312,"mimeType":"application/json; charset=utf-8","compression":0,"_sha1":"abbcc528557fd009fd80e4d409a4aace485bf772.json"},"headersSize":985,"bodySize":6312,"redirectURL":"","_transferSize":7297},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":18.526,"receive":1.147},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":18332.981,"_resourceType":"xhr","serverIPAddress":"[::1]","_serverPort":4000,"_securityDetails":{}}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.378Z","time":6788.417236328125,"request":{"method":"GET","url":"ws://localhost:5174/_next/webpack-hmr","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"jOKfAM/tnlUpvTF2LFMlBw=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:5174"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[],"headersSize":483,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Sec-WebSocket-Accept","value":"rLwbK5px1Ln8vFYq9+Kx35HjL3I="},{"name":"Connection","value":"Upgrade"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"99694df4d8192d4cf2b606377fb350eb.jsonl"},"headersSize":129,"bodySize":-1,"redirectURL":"","_transferSize":291},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":10975.049,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:31.435Z","time":1.0048828125,"request":{"method":"GET","url":"ws://localhost:4000/socket.io/?EIO=4&transport=websocket","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Origin","value":"http://localhost:5174"},{"name":"Cache-Control","value":"no-cache"},{"name":"Pragma","value":"no-cache"},{"name":"Connection","value":"Upgrade"},{"name":"Sec-WebSocket-Key","value":"Dnn0SfA9A3FHWkEARwdubQ=="},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"Sec-WebSocket-Version","value":"13"},{"name":"Host","value":"localhost:4000"},{"name":"Sec-WebSocket-Extensions","value":"permessage-deflate; client_max_window_bits"}],"queryString":[{"name":"EIO","value":"4"},{"name":"transport","value":"websocket"}],"headersSize":476,"bodySize":-1},"response":{"status":101,"statusText":"Switching Protocols","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Upgrade","value":"websocket"},{"name":"Access-Control-Allow-Origin","value":"http://localhost:5174"},{"name":"Sec-WebSocket-Accept","value":"X1t70D7+GYBV9K+a7VKtK43akgY="},{"name":"Connection","value":"Upgrade"},{"name":"Access-Control-Allow-Credentials","value":"true"},{"name":"Vary","value":"Origin"}],"content":{"size":-1,"mimeType":"x-unknown","_sha1":"d8ec3ffa63ee04acad19ca0b861c8e47.jsonl"},"headersSize":235,"bodySize":-1,"redirectURL":"","_transferSize":410},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":11026.701,"_resourceType":"websocket"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:38.727Z","time":-1,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_lib_generate-voucher_ts.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"sec-ch-ua-platform","value":"\"Windows\""},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"Accept-Language","value":"en-US"},{"name":"sec-ch-ua-mobile","value":"?0"}],"queryString":[],"headersSize":-1,"bodySize":0},"response":{"status":-1,"statusText":"","httpVersion":"HTTP/1.1","cookies":[],"headers":[],"content":{"size":-1,"mimeType":"x-unknown"},"headersSize":-1,"bodySize":-1,"redirectURL":"","_transferSize":-1},"cache":{},"timings":{"send":-1,"wait":-1,"receive":-1},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":18332.939,"_resourceType":"script"}} +{"type":"resource-snapshot","snapshot":{"pageref":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","startedDateTime":"2026-07-21T10:44:38.727Z","time":76.594,"request":{"method":"GET","url":"http://localhost:5174/_next/static/chunks/_app-pages-browser_src_lib_generate-voucher_ts.js","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept","value":"*/*"},{"name":"Accept-Encoding","value":"gzip, deflate, br, zstd"},{"name":"Accept-Language","value":"en-US"},{"name":"Connection","value":"keep-alive"},{"name":"Host","value":"localhost:5174"},{"name":"Referer","value":"http://localhost:5174/booking/confirmation"},{"name":"Sec-Fetch-Dest","value":"script"},{"name":"Sec-Fetch-Mode","value":"no-cors"},{"name":"Sec-Fetch-Site","value":"same-origin"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36"},{"name":"sec-ch-ua","value":"\"HeadlessChrome\";v=\"149\", \"Chromium\";v=\"149\", \"Not)A;Brand\";v=\"24\""},{"name":"sec-ch-ua-mobile","value":"?0"},{"name":"sec-ch-ua-platform","value":"\"Windows\""}],"queryString":[],"headersSize":602,"bodySize":0},"response":{"status":200,"statusText":"OK","httpVersion":"HTTP/1.1","cookies":[],"headers":[{"name":"Accept-Ranges","value":"bytes"},{"name":"Cache-Control","value":"no-store, must-revalidate"},{"name":"Connection","value":"keep-alive"},{"name":"Content-Encoding","value":"gzip"},{"name":"Content-Type","value":"application/javascript; charset=UTF-8"},{"name":"Date","value":"Tue, 21 Jul 2026 10:44:38 GMT"},{"name":"ETag","value":"W/\"23425a-19f8377166e\""},{"name":"Keep-Alive","value":"timeout=5"},{"name":"Last-Modified","value":"Tue, 21 Jul 2026 06:57:27 GMT"},{"name":"Transfer-Encoding","value":"chunked"},{"name":"Vary","value":"Accept-Encoding"}],"content":{"size":-1,"mimeType":"application/javascript; charset=UTF-8","compression":0},"headersSize":371,"bodySize":653430,"redirectURL":"","_transferSize":653801},"cache":{},"timings":{"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":2.732,"receive":73.862},"_frameref":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","_monotonicTime":18332.939,"_resourceType":"script","serverIPAddress":"[::1]","_serverPort":5174,"_securityDetails":{}}} diff --git a/test-results/.playwright-artifacts-0/traces/c54002b584d14da4d6c8-f116b3b714fcbae86436-recording1.trace b/test-results/.playwright-artifacts-0/traces/c54002b584d14da4d6c8-f116b3b714fcbae86436-recording1.trace new file mode 100644 index 000000000..320421940 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/c54002b584d14da4d6c8-f116b3b714fcbae86436-recording1.trace @@ -0,0 +1,920 @@ +{"version":8,"type":"context-options","origin":"library","browserName":"chromium","playwrightVersion":"1.61.1","options":{"noDefaultViewport":false,"viewport":{"width":1280,"height":720},"ignoreHTTPSErrors":false,"javaScriptEnabled":true,"bypassCSP":false,"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.7827.55 Safari/537.36","locale":"en-US","offline":false,"deviceScaleFactor":1,"isMobile":false,"hasTouch":false,"colorScheme":"light","acceptDownloads":"accept","baseURL":"http://localhost:5174","serviceWorkers":"allow","selectorEngines":[],"testIdAttributeName":"data-testid","storageState":{"cookies":[],"origins":[{"origin":"http://localhost:5174","localStorage":[{"name":"auth_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExMTExMTExLTAwMDAtNDAwMC04MDAwLTAwMDAwMDAwMDAwMiIsImlhdCI6MTc4NDYzMDY2MCwiZXhwIjoxNzg1MjM1NDYwfQ.1ksaEdrxg9U-xIfTflTYECWEmV18CrT5NJcIBWrAdd8"},{"name":"auth_user","value":"{\"iamUserId\":\"11111111-0000-4000-8000-000000000001\",\"passengerId\":\"11111111-0000-4000-8000-000000000001\",\"email\":\"test.passenger@edr.local\",\"phone\":null,\"fullName\":\"Test Passenger\",\"nationality\":null,\"faydaVerified\":false,\"preferredCurrency\":\"USD\",\"createdAt\":\"2026-07-21T10:44:20.904Z\",\"passenger\":{\"id\":\"11111111-0000-4000-8000-000000000001\",\"preferredLanguage\":null,\"loyalty\":{\"tier\":\"BRONZE\",\"pointsBalance\":500,\"lifetimePoints\":0},\"wallet\":{\"balanceMinor\":100000000,\"currency\":\"ETB\"}}}"}]}]}},"platform":"darwin","wallTime":1784630670847,"monotonicTime":10420.426,"sdkLanguage":"javascript","testIdAttributeName":"data-testid","contextId":"browser-context@9ba4d5ef8c0e147ff80626c3ebff2e2e","title":"portal/ua11-expired-promo.spec.ts:16 › UA-11: an expired promo code is ignored — full fare is booked"} +{"type":"before","callId":"call@131","startTime":10421.548,"class":"BrowserContext","method":"newPage","params":{},"stepId":"pw:api@24"} +{"type":"event","time":10453.489,"class":"BrowserContext","method":"page","params":{"pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"}} +{"type":"after","callId":"call@131","endTime":10453.573,"result":{"page":""}} +{"type":"before","callId":"call@133","startTime":10455.194,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"3df87e58a140cdbea8e08f19ade4a340","phase":"before","event":"response"},"stepId":"pw:api@25","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"before","callId":"call@136","startTime":10455.245,"class":"Frame","method":"goto","params":{"url":"/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","timeout":0,"waitUntil":"load"},"stepId":"pw:api@26","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@136"} +{"type":"frame-snapshot","snapshot":{"callId":"call@136","snapshotName":"before@call@136","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"about:blank","html":["HTML",{},["HEAD",{},["BASE",{"href":"about:blank"}]],["BODY"]],"viewport":{"width":1280,"height":720},"timestamp":10456.315,"wallTime":1784630670882,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@136","time":10456.546,"message":"navigating to \"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50\", waiting until \"load\""} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670884.jpeg","width":1280,"height":720,"timestamp":10458.311,"frameSwapWallTime":1784630670883.56} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670915.jpeg","width":1280,"height":720,"timestamp":10489.033,"frameSwapWallTime":1784630670913.824} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670940.jpeg","width":1280,"height":720,"timestamp":10513.904,"frameSwapWallTime":1784630670938.901} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670951.jpeg","width":1280,"height":720,"timestamp":10524.717,"frameSwapWallTime":1784630670949.7769} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670961.jpeg","width":1280,"height":720,"timestamp":10534.44,"frameSwapWallTime":1784630670959.456} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671014.jpeg","width":1280,"height":720,"timestamp":10587.434,"frameSwapWallTime":1784630671006.4658} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671014.jpeg","width":1280,"height":720,"timestamp":10587.489,"frameSwapWallTime":1784630671007.144} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671014.jpeg","width":1280,"height":720,"timestamp":10587.531,"frameSwapWallTime":1784630671007.581} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671017.jpeg","width":1280,"height":720,"timestamp":10591.25,"frameSwapWallTime":1784630671016.06} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671027.jpeg","width":1280,"height":720,"timestamp":10600.343,"frameSwapWallTime":1784630671025.434} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671044.jpeg","width":1280,"height":720,"timestamp":10617.687,"frameSwapWallTime":1784630671042.4958} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671053.jpeg","width":1280,"height":720,"timestamp":10626.95,"frameSwapWallTime":1784630671051.814} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671094.jpeg","width":1280,"height":720,"timestamp":10667.744,"frameSwapWallTime":1784630671086.957} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671094.jpeg","width":1280,"height":720,"timestamp":10667.801,"frameSwapWallTime":1784630671087.3179} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671094.jpeg","width":1280,"height":720,"timestamp":10667.838,"frameSwapWallTime":1784630671087.74} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671099.jpeg","width":1280,"height":720,"timestamp":10672.395,"frameSwapWallTime":1784630671096.7122} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671108.jpeg","width":1280,"height":720,"timestamp":10681.742,"frameSwapWallTime":1784630671106.49} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671124.jpeg","width":1280,"height":720,"timestamp":10698.21,"frameSwapWallTime":1784630671122.94} +{"type":"console","messageType":"info","text":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold","args":[{"preview":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools","value":"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools"},{"preview":"font-weight:bold","value":"font-weight:bold"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":38559,"columnNumber":16},"time":10706.84,"pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671134.jpeg","width":1280,"height":720,"timestamp":10707.591,"frameSwapWallTime":1784630671132.581} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671143.jpeg","width":1280,"height":720,"timestamp":10716.766,"frameSwapWallTime":1784630671141.663} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671152.jpeg","width":1280,"height":720,"timestamp":10725.845,"frameSwapWallTime":1784630671150.687} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671161.jpeg","width":1280,"height":720,"timestamp":10734.866,"frameSwapWallTime":1784630671159.786} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671178.jpeg","width":1280,"height":720,"timestamp":10751.412,"frameSwapWallTime":1784630671176.24} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671187.jpeg","width":1280,"height":720,"timestamp":10760.594,"frameSwapWallTime":1784630671185.497} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671196.jpeg","width":1280,"height":720,"timestamp":10770.101,"frameSwapWallTime":1784630671194.8818} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671206.jpeg","width":1280,"height":720,"timestamp":10779.579,"frameSwapWallTime":1784630671204.288} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671222.jpeg","width":1280,"height":720,"timestamp":10795.713,"frameSwapWallTime":1784630671220.605} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671231.jpeg","width":1280,"height":720,"timestamp":10804.646,"frameSwapWallTime":1784630671229.5671} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671240.jpeg","width":1280,"height":720,"timestamp":10813.883,"frameSwapWallTime":1784630671238.769} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671257.jpeg","width":1280,"height":720,"timestamp":10830.401,"frameSwapWallTime":1784630671255.258} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671265.jpeg","width":1280,"height":720,"timestamp":10839.313,"frameSwapWallTime":1784630671264.2788} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671274.jpeg","width":1280,"height":720,"timestamp":10848.173,"frameSwapWallTime":1784630671273.078} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671283.jpeg","width":1280,"height":720,"timestamp":10857.34,"frameSwapWallTime":1784630671282.158} +{"type":"after","callId":"call@136","endTime":10972.207,"result":{"response":""},"afterSnapshot":"after@call@136"} +{"type":"console","messageType":"error","text":"Warning: Prop `%s` did not match. Server: %s Client: %s%s nonce \"\" \"NTMzNjIzYTItNmQwOS00NTBhLThhY2QtMjBiMDcwYjUxYjJk\" \n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","args":[{"preview":"Warning: Prop `%s` did not match. Server: %s Client: %s%s","value":"Warning: Prop `%s` did not match. Server: %s Client: %s%s"},{"preview":"nonce","value":"nonce"},{"preview":"\"\"","value":"\"\""},{"preview":"\"NTMzNjIzYTItNmQwOS00NTBhLThhY2QtMjBiMDcwYjUxYjJk\"","value":"\"NTMzNjIzYTItNmQwOS00NTBhLThhY2QtMjBiMDcwYjUxYjJk\""},{"preview":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)","value":"\n at script\n at body\n at html\n at RootLayout (Server)\n at RedirectErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:74:9)\n at RedirectBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/redirect-boundary.js:82:11)\n at NotFoundErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:76:9)\n at NotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js:84:11)\n at DevRootNotFoundBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/dev-root-not-found-boundary.js:33:11)\n at ReactDevOverlay (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js:87:9)\n at HotReload (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js:321:11)\n at Router (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:207:11)\n at ErrorBoundaryHandler (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:113:9)\n at ErrorBoundary (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js:160:11)\n at AppRouter (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js:585:13)\n at ServerRoot (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:112:27)\n at Root (webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js:117:11)"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/app-index.js","lineNumber":32,"columnNumber":21},"time":10972.648,"pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"console","messageType":"error","text":"Failed to load resource: the server responded with a status of 404 (Not Found)","args":[],"location":{"url":"http://localhost:4000/promos/validate","lineNumber":0,"columnNumber":0},"time":10973.661,"pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671400.jpeg","width":1280,"height":720,"timestamp":10973.694,"frameSwapWallTime":1784630671373.409} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671400.jpeg","width":1280,"height":720,"timestamp":10973.837,"frameSwapWallTime":1784630671374.531} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671401.jpeg","width":1280,"height":720,"timestamp":10974.385,"frameSwapWallTime":1784630671374.933} +{"type":"console","messageType":"error","text":"Failed to load resource: the server responded with a status of 404 (Not Found)","args":[],"location":{"url":"http://localhost:4000/promos/validate","lineNumber":0,"columnNumber":0},"time":10975.265,"pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"after","callId":"call@133","endTime":10976.162} +{"type":"console","messageType":"warning","text":"WebSocket connection to 'ws://localhost:4000/socket.io/?EIO=4&transport=websocket' failed: WebSocket is closed before the connection is established.","args":[],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/engine.io-client@6.6.5/node_modules/engine.io-client/build/esm/transports/websocket.js","lineNumber":89,"columnNumber":0},"time":10982.047,"pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671413.jpeg","width":1280,"height":720,"timestamp":10986.365,"frameSwapWallTime":1784630671410.503} +{"type":"frame-snapshot","snapshot":{"callId":"call@136","snapshotName":"after@call@136","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},["HEAD",{},["BASE",{"href":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50"}],["META",{"charset":"utf-8"}],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["LINK",{"rel":"stylesheet","href":"/_next/static/css/app/layout.css?v=1784630670890","data-precedence":"next_static/css/app/layout.css"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},["A",{"class":"flex items-center px-5 h-20 flex-shrink-0 hover:opacity-80 transition-opacity","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-16 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-house w-5 h-5","aria-hidden":"true"},["path",{"d":"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{"d":"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]],"Home"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/booking/lookup"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-ticket w-5 h-5","aria-hidden":"true"},["path",{"d":"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{"d":"M13 5v2"}],["path",{"d":"M13 17v2"}],["path",{"d":"M13 11v2"}]],"My Bookings"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/contact"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-phone w-5 h-5","aria-hidden":"true"},["path",{"d":"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]],"Contact"],["A",{"class":"flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-colors text-gray-100 hover:bg-white/10 hover:text-white","href":"/help"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-question-mark w-5 h-5","aria-hidden":"true"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{"d":"M12 17h.01"}]],"Help"],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},["P",{"class":"px-3 pb-2 text-xs font-semibold uppercase tracking-wide text-gray-200/80"},"Your booking"],["OL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},"Search"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},"2"],["SPAN",{"class":"text-sm text-white font-semibold"},"Results"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"3"],["SPAN",{"class":"text-sm text-white/50"},"Passengers"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"4"],["SPAN",{"class":"text-sm text-white/50"},"Seats"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"5"],["SPAN",{"class":"text-sm text-white/50"},"Review"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"6"],["SPAN",{"class":"text-sm text-white/50"},"Payment"]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border border-white/30 text-white/50"},"7"],["SPAN",{"class":"text-sm text-white/50"},"Done"]]]]],["DIV",{"class":"flex-shrink-0 border-t border-white/15 p-3 space-y-1"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium text-gray-100 hover:bg-white/10 hover:text-white transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-moon w-5 h-5","aria-hidden":"true"},["path",{"d":"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]],"Dark mode"],["DIV",{"class":"relative"},["BUTTON",{"class":"flex w-full items-center gap-3 px-3 py-2 rounded-lg hover:bg-white/10 transition-colors"},["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full bg-white text-[rgb(20_113_76)] font-semibold text-sm"},"T"],["SPAN",{"class":"flex-1 text-left text-sm font-medium text-white truncate"},"Test Passenger"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-200 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]]]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},["DIV",{"class":"lg:hidden relative bg-[rgb(20_113_76)] dark:bg-gray-900 border-b border-[rgb(16_89_60)] dark:border-gray-800 px-4 h-16 flex items-center flex-shrink-0"},["A",{"class":"flex items-center hover:opacity-80 transition-opacity","aria-label":"Go to home","href":"/"},["IMG",{"__playwright_current_src__":"http://localhost:5174/_next/image?url=%2Fedr-logo.png&w=256&q=75","alt":"Ethio-Djibouti Railway","fetchpriority":"high","width":"140","height":"48","decoding":"async","data-nimg":"1","class":"h-14 w-auto","style":"color:transparent","srcset":"/_next/image?url=%2Fedr-logo.png&w=256&q=75 1x, /_next/image?url=%2Fedr-logo.png&w=384&q=75 2x","src":"/_next/image?url=%2Fedr-logo.png&w=384&q=75"}]],["DIV",{"class":"ml-auto"},["BUTTON",{"class":"p-2 rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors","title":"Current theme: Light. Click to cycle."},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-sun w-5 h-5"},["circle",{"cx":"12","cy":"12","r":"4"}],["path",{"d":"M12 2v2"}],["path",{"d":"M12 20v2"}],["path",{"d":"m4.93 4.93 1.41 1.41"}],["path",{"d":"m17.66 17.66 1.41 1.41"}],["path",{"d":"M2 12h2"}],["path",{"d":"M20 12h2"}],["path",{"d":"m6.34 17.66-1.41 1.41"}],["path",{"d":"m19.07 4.93-1.41 1.41"}]]]]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 invisible"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white","aria-hidden":"true"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},"Search"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},"2"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},"Results"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"3"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Passengers"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"4"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Seats"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"5"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Review"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"6"]],["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Payment"]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-gray-200 dark:bg-gray-700"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-2 border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800"},["SPAN",{"class":"text-xs font-bold text-gray-400 dark:text-gray-500"},"7"]],["DIV",{"class":"flex-1 h-0.5 invisible"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-400 dark:text-gray-500"},"Done"]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"mb-8"},["BUTTON",{"class":"btn-ghost px-0 py-4 flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Modify search"],["H1",{"class":"section-title"},"Available schedules"],["DIV",{"class":"hidden sm:flex flex-wrap items-center gap-4 text-gray-600 dark:text-gray-400 mt-3"},["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar w-4 h-4"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}]],["SPAN",{},"Thursday, July 23, 2026"]],["DIV",{"class":"flex items-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-users w-4 h-4"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["path",{"d":"M22 21v-2a4 4 0 0 0-3-3.87"}],["path",{"d":"M16 3.13a4 4 0 0 1 0 7.75"}]],["SPAN",{},"1"," adult(s), ","0"," ","child(ren)"]],["DIV",{"class":"flex items-center gap-2 bg-green-50 dark:bg-green-900/30 text-green-700 dark:text-green-300 px-3 py-1 rounded-full text-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-gift w-4 h-4"},["rect",{"x":"3","y":"8","width":"18","height":"4","rx":"1"}],["path",{"d":"M12 8v13"}],["path",{"d":"M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7"}],["path",{"d":"M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5"}]],["SPAN",{},"EXPIRED50"]]]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},["DIV",{"class":"flex-1"},["DIV",{"class":"flex items-center gap-3 mb-4"},["DIV",{"class":"w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg flex items-center justify-center flex-shrink-0"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-5 h-5 text-primary"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]]],["DIV",{},["DIV",{"class":"font-bold text-lg text-gray-900 dark:text-gray-100"},"UI-100"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400"},"UI Test Express"]]],["DIV",{"class":"flex items-center gap-2 md:gap-4"},["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"Jul 23 · Morning"],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Alpha"]],["DIV",{"class":"flex-1 min-w-0 flex flex-col items-center"},["DIV",{"class":"flex items-center gap-1 md:gap-2 mb-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-clock w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["circle",{"cx":"12","cy":"12","r":"10"}],["polyline",{"points":"12 6 12 12 16 14"}]],["SPAN",{},"4h 0m"]],["DIV",{"class":"w-full h-0.5 bg-gray-200 dark:bg-gray-700 relative"},["DIV",{"class":"absolute left-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}],["DIV",{"class":"absolute right-0 top-1/2 -translate-y-1/2 w-2 h-2 bg-primary rounded-full"}]],["DIV",{"class":"flex items-center gap-1 mt-2 text-xs md:text-sm text-gray-600 dark:text-gray-400 whitespace-nowrap"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-map-pin w-3.5 h-3.5 md:w-4 md:h-4 flex-shrink-0"},["path",{"d":"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"}],["circle",{"cx":"12","cy":"10","r":"3"}]],["SPAN",{},"1"," stops"]]],["DIV",{"class":"text-center"},["DIV",{"class":"text-xl md:text-3xl font-bold text-gray-900 dark:text-gray-100 whitespace-nowrap"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5 flex items-center justify-center gap-1"},["SPAN",{},"Jul 23 · Afternoon"]],["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mt-1"},"Charlie"]]]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},["DIV",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-1"},"Starting from"],["DIV",{"class":"text-3xl font-bold text-primary"},"ETB 750.00"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 mb-4"},"per adult"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Select"]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-100 dark:border-gray-800 flex flex-wrap gap-2"},["SPAN",{"class":"inline-flex items-center gap-1.5 text-xs font-medium px-2.5 py-1 rounded-full bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 flex-shrink-0"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],"Standard Coach",["SPAN",{"class":"font-semibold"},"47 left"]]]]]]]]]]]]],["NEXT-ROUTE-ANNOUNCER",{"style":"position: absolute;"},["template",{"__playwright_shadow_root_":"open"},["DIV",{"aria-live":"assertive","id":"__next-route-announcer__","role":"alert","style":"position: absolute; border: 0px; height: 1px; margin: -1px; padding: 0px; width: 1px; clip: rect(0px, 0px, 0px, 0px); overflow: hidden; white-space: nowrap; overflow-wrap: normal;"}]]],["DIV",{"class":"fixed bottom-6 right-6 z-40 flex flex-col items-end gap-3"},["BUTTON",{"aria-label":"Open support chat","class":"group relative flex items-center gap-2.5 rounded-full p-2 pr-2 text-white transition-transform duration-150 hover:-translate-y-0.5 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-[3px] focus-visible:outline-primary active:translate-y-0 motion-reduce:transition-none motion-reduce:hover:translate-y-0 sm:pr-5","style":"background: linear-gradient(135deg, rgb(20, 113, 76), rgb(30, 140, 96)); box-shadow: rgba(20, 113, 76, 0.4) 0px 10px 28px;"},["SPAN",{"class":"pointer-events-none absolute -inset-1 animate-pulse rounded-full ring-2 ring-primary/50 motion-reduce:animate-none"}],["SPAN",{"class":"relative grid h-[42px] w-[42px] shrink-0 place-items-center rounded-full bg-white/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"22","height":"22","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-headset"},["path",{"d":"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{"d":"M21 16v2a4 4 0 0 1-4 4h-5"}]]],["SPAN",{"class":"relative hidden text-left leading-tight sm:block"},["SPAN",{"class":"block whitespace-nowrap text-sm font-semibold"},"👋 Need help?"],["SPAN",{"class":"block whitespace-nowrap text-[11px] opacity-85"},"Chat with our team"]]]]]],"viewport":{"width":1280,"height":720},"timestamp":10987.907,"wallTime":1784630671413,"collectionTime":4.100000001490116,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@141","startTime":10988.982,"class":"Response","method":"body","params":{},"stepId":"pw:api@27","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"after","callId":"call@141","endTime":10989.081,"result":{"binary":""}} +{"type":"before","callId":"call@143","startTime":10990.238,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"result-select-btn\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@29","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@143"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671419.jpeg","width":1280,"height":720,"timestamp":10992.871,"frameSwapWallTime":1784630671417.645} +{"type":"frame-snapshot","snapshot":{"callId":"call@143","snapshotName":"before@call@143","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":[[1,318]],"viewport":{"width":1280,"height":720},"timestamp":11025.562,"wallTime":1784630671434,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@143","time":11025.677,"message":"waiting for getByTestId('result-select-btn').first()"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671453.jpeg","width":1280,"height":720,"timestamp":11026.816,"frameSwapWallTime":1784630671447.9211} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671453.jpeg","width":1280,"height":720,"timestamp":11026.862,"frameSwapWallTime":1784630671448.29} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671453.jpeg","width":1280,"height":720,"timestamp":11027.048,"frameSwapWallTime":1784630671450.2039} +{"type":"log","callId":"call@143","time":11035.907,"message":" locator resolved to "} +{"type":"log","callId":"call@143","time":11036.32,"message":"attempting click action"} +{"type":"log","callId":"call@143","time":11036.334,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671468.jpeg","width":1280,"height":720,"timestamp":11041.578,"frameSwapWallTime":1784630671466.356} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671477.jpeg","width":1280,"height":720,"timestamp":11050.486,"frameSwapWallTime":1784630671475.2568} +{"type":"log","callId":"call@143","time":11054.275,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@143","time":11054.282,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@143","time":11054.485,"message":" done scrolling"} +{"type":"input","callId":"call@143","point":{"x":1141.5,"y":344},"inputSnapshot":"input@call@143"} +{"type":"frame-snapshot","snapshot":{"callId":"call@143","snapshotName":"input@call@143","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[2,29]],["BODY",{"class":"font-sans antialiased"},[[2,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[2,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,226]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[2,270]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[2,272]],[[2,274]],[[2,276]],["BUTTON",{"__playwright_target__":"","data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[2,277]]]]]],[[2,291]]]]]]]]]]]],[[2,304]],[[2,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11055.62,"wallTime":1784630671482,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@143","time":11056.375,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671485.jpeg","width":1280,"height":720,"timestamp":11059.028,"frameSwapWallTime":1784630671483.881} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671500.jpeg","width":1280,"height":720,"timestamp":11074.28,"frameSwapWallTime":1784630671499.1528} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671517.jpeg","width":1280,"height":720,"timestamp":11091.035,"frameSwapWallTime":1784630671515.73} +{"type":"log","callId":"call@143","time":11094.398,"message":" click action done"} +{"type":"log","callId":"call@143","time":11094.405,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@143","time":11094.685,"message":" navigations have finished"} +{"type":"after","callId":"call@143","endTime":11094.725,"afterSnapshot":"after@call@143"} +{"type":"frame-snapshot","snapshot":{"callId":"call@143","snapshotName":"after@call@143","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[3,29]],["BODY",{"class":"font-sans antialiased"},[[3,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[3,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[3,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"fixed inset-0 z-[99] bg-black/50 backdrop-blur-sm"}],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},["DIV",{"class":"flex items-center justify-between px-6 py-5 border-b border-gray-100 dark:border-gray-800 flex-shrink-0"},["DIV",{},["H2",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"Choose Your Coach"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-1 flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-3.5 h-3.5"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],["SPAN",{"class":"font-medium"},"UI-100"],["SPAN",{"class":"text-gray-400"},"·"],["SPAN",{},"Alpha"," → ","Charlie"]]],["BUTTON",{"type":"button","class":"w-10 h-10 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800 transition-all","aria-label":"Close"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-gray-300 dark:border-gray-600 group-hover:border-primary/50"}],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-gray-100 dark:bg-gray-700 group-hover:bg-primary/10"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-gray-600 dark:text-gray-400 group-hover:text-primary"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]],["DIV",{"class":"flex-1 min-w-0"},["DIV",{"class":"flex items-start justify-between gap-2 mb-2"},["DIV",{},["H3",{"class":"font-bold text-base text-gray-900 dark:text-white leading-tight"},"Standard Coach"]]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"From"],["SPAN",{"class":"text-2xl font-bold tracking-tight text-gray-900 dark:text-white"},"ETB 750.00"]]]]],["DIV",{"class":"mt-4 pt-4 border-t border-gray-200/60 dark:border-gray-700/60"},["DIV",{"class":"flex items-center justify-between mb-3"},["P",{"class":"text-xs font-bold text-gray-700 dark:text-gray-300 uppercase tracking-wider"},"Class Options"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium"},"47"," seats left"]],["DIV",{"class":"space-y-2.5"},["DIV",{"class":"flex items-center justify-between py-2 px-3 rounded-lg bg-gray-50/80 dark:bg-gray-800/40"},["DIV",{"class":"flex items-center gap-2.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-3.5 h-3.5 text-gray-500 dark:text-gray-400"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]],["DIV",{"class":"flex flex-col"},["SPAN",{"class":"text-sm font-medium text-gray-700 dark:text-gray-300"},"Economy Regular"],["SPAN",{"class":"text-[11px] font-medium text-gray-400 dark:text-gray-500"},"47 seats left"]]],["DIV",{"class":"flex items-baseline gap-1"},["SPAN",{"class":"text-base font-bold tabular-nums text-gray-900 dark:text-white"},"750.00"],["SPAN",{"class":"text-xs text-gray-500 dark:text-gray-400 font-medium ml-1"},"ETB"]]]]],["P",{"class":"mt-4 pt-3 border-t border-gray-200/60 dark:border-gray-700/60 text-xs text-gray-400 dark:text-gray-500 italic text-center"},"Click to select this coach"]]]]]],["STYLE",{},"\n @keyframes drawer-slide-in{from{transform:translateX(100%)}to{transform:translateX(0)}}\n @keyframes fade-in-up{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}\n @keyframes scale-in{from{transform:scale(0)}to{transform:scale(1)}}\n "],[[3,226]],[[1,6]]]]]]]]],[[3,304]],[[3,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11095.895,"wallTime":1784630671522,"collectionTime":0.7000000029802322,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@145","startTime":11096.678,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"coach-option\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@30","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@145"} +{"type":"frame-snapshot","snapshot":{"callId":"call@145","snapshotName":"before@call@145","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[4,29]],["BODY",{"class":"font-sans antialiased"},[[4,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[4,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,0]],[[1,76]],[[1,78]],[[4,226]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[4,270]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[4,272]],[[4,274]],[[4,276]],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},[[4,277]]]]]],[[4,291]]]]]]]]]]]],[[4,304]],[[4,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11097.748,"wallTime":1784630671523,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@145","time":11097.874,"message":"waiting for getByTestId('coach-option').first()"} +{"type":"log","callId":"call@145","time":11098.856,"message":" locator resolved to
"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671525.jpeg","width":1280,"height":720,"timestamp":11099.13,"frameSwapWallTime":1784630671523.9648} +{"type":"log","callId":"call@145","time":11099.505,"message":"attempting click action"} +{"type":"log","callId":"call@145","time":11099.522,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@145","time":11118.59,"message":" element is not stable"} +{"type":"log","callId":"call@145","time":11118.599,"message":"retrying click action"} +{"type":"log","callId":"call@145","time":11118.618,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671545.jpeg","width":1280,"height":720,"timestamp":11119.208,"frameSwapWallTime":1784630671544.2551} +{"type":"log","callId":"call@145","time":11129.061,"message":" element is not stable"} +{"type":"log","callId":"call@145","time":11129.07,"message":"retrying click action"} +{"type":"log","callId":"call@145","time":11129.072,"message":" waiting 20ms"} +{"type":"log","callId":"call@145","time":11150.078,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671577.jpeg","width":1280,"height":720,"timestamp":11151.193,"frameSwapWallTime":1784630671576.0342} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671599.jpeg","width":1280,"height":720,"timestamp":11173.124,"frameSwapWallTime":1784630671598.0908} +{"type":"log","callId":"call@145","time":11192.255,"message":" element is not stable"} +{"type":"log","callId":"call@145","time":11192.266,"message":"retrying click action"} +{"type":"log","callId":"call@145","time":11192.267,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671619.jpeg","width":1280,"height":720,"timestamp":11193.337,"frameSwapWallTime":1784630671618.277} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671640.jpeg","width":1280,"height":720,"timestamp":11213.755,"frameSwapWallTime":1784630671638.9102} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671661.jpeg","width":1280,"height":720,"timestamp":11234.903,"frameSwapWallTime":1784630671659.809} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671682.jpeg","width":1280,"height":720,"timestamp":11255.772,"frameSwapWallTime":1784630671680.775} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671703.jpeg","width":1280,"height":720,"timestamp":11276.508,"frameSwapWallTime":1784630671701.4648} +{"type":"log","callId":"call@145","time":11294.244,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671724.jpeg","width":1280,"height":720,"timestamp":11297.438,"frameSwapWallTime":1784630671722.5298} +{"type":"log","callId":"call@145","time":11317.619,"message":" element is not stable"} +{"type":"log","callId":"call@145","time":11317.623,"message":"retrying click action"} +{"type":"log","callId":"call@145","time":11317.624,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671745.jpeg","width":1280,"height":720,"timestamp":11318.625,"frameSwapWallTime":1784630671743.7651} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671766.jpeg","width":1280,"height":720,"timestamp":11340.04,"frameSwapWallTime":1784630671764.953} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671787.jpeg","width":1280,"height":720,"timestamp":11360.583,"frameSwapWallTime":1784630671785.524} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671808.jpeg","width":1280,"height":720,"timestamp":11381.869,"frameSwapWallTime":1784630671806.887} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671830.jpeg","width":1280,"height":720,"timestamp":11403.828,"frameSwapWallTime":1784630671828.791} +{"type":"log","callId":"call@145","time":11419.627,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671853.jpeg","width":1280,"height":720,"timestamp":11426.398,"frameSwapWallTime":1784630671851.3132} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671872.jpeg","width":1280,"height":720,"timestamp":11446.294,"frameSwapWallTime":1784630671871.268} +{"type":"log","callId":"call@145","time":11465.098,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@145","time":11465.114,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@145","time":11465.397,"message":" done scrolling"} +{"type":"input","callId":"call@145","point":{"x":330.66,"y":246.25},"inputSnapshot":"input@call@145"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671892.jpeg","width":1280,"height":720,"timestamp":11466.256,"frameSwapWallTime":1784630671891.013} +{"type":"frame-snapshot","snapshot":{"callId":"call@145","snapshotName":"input@call@145","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[5,29]],["BODY",{"class":"font-sans antialiased"},[[5,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[5,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[2,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-gray-200 dark:border-gray-700 shadow-sm hover:border-primary/40 hover:shadow-md hover:scale-[1.01] bg-white dark:bg-gray-800/50","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,26]],[[2,72]]]]]],[[2,78]],[[5,226]],[[1,6]]]]]]]]],[[5,304]],[[5,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11466.999,"wallTime":1784630671893,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@145","time":11467.867,"message":" performing click action"} +{"type":"log","callId":"call@145","time":11473.51,"message":" click action done"} +{"type":"log","callId":"call@145","time":11473.516,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@145","time":11473.736,"message":" navigations have finished"} +{"type":"after","callId":"call@145","endTime":11473.8,"afterSnapshot":"after@call@145"} +{"type":"frame-snapshot","snapshot":{"callId":"call@145","snapshotName":"after@call@145","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[6,29]],["BODY",{"class":"font-sans antialiased"},[[6,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[6,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[6,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[3,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[3,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"__playwright_target__":"","data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},["SPAN",{"class":"absolute top-4 right-4 w-5 h-5 rounded-full border-2 flex items-center justify-center flex-shrink-0 transition-all border-primary"},["SPAN",{"class":"w-2.5 h-2.5 rounded-full bg-primary animate-scale-in"}]],["DIV",{"class":"flex flex-col"},["DIV",{"class":"flex items-start gap-4 pr-2"},["DIV",{"class":"w-12 h-12 rounded-xl flex items-center justify-center flex-shrink-0 transition-all bg-primary/15 dark:bg-primary/25 shadow-inner"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-6 h-6 transition-colors text-primary"},[[3,27]],[[3,28]],[[3,29]],[[3,30]]]],["DIV",{"class":"flex-1 min-w-0"},[[3,36]],["DIV",{"class":"mt-3"},["DIV",{"class":"flex items-baseline gap-1"},[[3,38]],["SPAN",{"class":"text-2xl font-bold tracking-tight text-primary"},[[3,39]]]]]]],[[3,69]],["BUTTON",{"type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},["SPAN",{},"Continue to Passenger Details"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-arrow-right w-4 h-4"},["path",{"d":"M5 12h14"}],["path",{"d":"m12 5 7 7-7 7"}]]]]]]]],[[3,78]],[[6,226]],["DIV",{"class":"space-y-8"},["DIV",{"class":"space-y-4"},["DIV",{"class":"card "},["DIV",{"class":"flex flex-col lg:flex-row lg:items-center gap-6"},[[6,270]],["DIV",{"class":"lg:border-l dark:border-gray-700 lg:pl-6 lg:min-w-[220px]"},["DIV",{"class":"text-center lg:text-right"},[[6,272]],[[6,274]],[[6,276]],["P",{"class":"text-xs text-primary font-semibold mb-2"},"Standard Coach"," selected"],["BUTTON",{"data-testid":"result-select-btn","class":"btn-secondary w-full flex items-center justify-center gap-2 disabled:opacity-50 disabled:cursor-not-allowed"},"Change"]]]],[[6,291]]]]]]]]]]]],[[6,304]],[[6,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11474.704,"wallTime":1784630671901,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@147","startTime":11475.391,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"continue-passenger-details\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@31","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@147"} +{"type":"frame-snapshot","snapshot":{"callId":"call@147","snapshotName":"before@call@147","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[7,29]],["BODY",{"class":"font-sans antialiased"},[[7,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[7,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[7,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[4,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[1,1]],[[1,15]]]]]],[[4,78]],[[7,226]],[[1,30]]]]]]]]],[[7,304]],[[7,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11476.181,"wallTime":1784630671902,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@147","time":11476.355,"message":"waiting for getByTestId('continue-passenger-details').first()"} +{"type":"log","callId":"call@147","time":11477.33,"message":" locator resolved to "} +{"type":"log","callId":"call@147","time":11477.628,"message":"attempting click action"} +{"type":"log","callId":"call@147","time":11477.641,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671913.jpeg","width":1280,"height":720,"timestamp":11487.167,"frameSwapWallTime":1784630671912.222} +{"type":"log","callId":"call@147","time":11508.27,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@147","time":11508.305,"message":" scrolling into view if needed"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671935.jpeg","width":1280,"height":720,"timestamp":11508.38,"frameSwapWallTime":1784630671932.953} +{"type":"log","callId":"call@147","time":11508.616,"message":" done scrolling"} +{"type":"input","callId":"call@147","point":{"x":330.66,"y":346.5},"inputSnapshot":"input@call@147"} +{"type":"frame-snapshot","snapshot":{"callId":"call@147","snapshotName":"input@call@147","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light"},[[8,29]],["BODY",{"class":"font-sans antialiased"},[[8,108]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[8,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[8,190]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,0]],["DIV",{"class":"fixed inset-y-0 right-0 z-[100] w-full sm:w-[680px] lg:w-[95vw] xl:w-[90vw] 2xl:w-[85vw] max-w-[1400px] bg-white dark:bg-gray-900 shadow-2xl flex flex-col","style":"animation: 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running drawer-slide-in;"},[[5,25]],["DIV",{"class":"flex-1 overflow-y-auto px-6 py-4"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-4 pt-2"},["DIV",{"data-testid":"coach-option","role":"button","tabindex":"0","class":"group relative w-full p-5 rounded-2xl border-2 text-left transition-all duration-200 cursor-pointer border-primary bg-gradient-to-br from-primary/8 to-primary/3 dark:from-primary/15 dark:to-primary/5 shadow-lg shadow-primary/20 scale-[1.02]","style":"animation: 0.3s ease-out 0s 1 normal both running fade-in-up;"},[[2,1]],["DIV",{"class":"flex flex-col"},[[2,8]],[[5,69]],["BUTTON",{"__playwright_target__":"","type":"button","data-testid":"continue-passenger-details","class":"btn-primary w-full mt-3 text-sm active:scale-[0.98]"},[[2,10]],[[2,13]]]]]]]],[[5,78]],[[8,226]],[[2,30]]]]]]]]],[[8,304]],[[8,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11509.859,"wallTime":1784630671936,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@147","time":11510.523,"message":" performing click action"} +{"type":"log","callId":"call@147","time":11516.039,"message":" click action done"} +{"type":"log","callId":"call@147","time":11516.045,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@147","time":11516.316,"message":" navigations have finished"} +{"type":"after","callId":"call@147","endTime":11516.387,"afterSnapshot":"after@call@147"} +{"type":"frame-snapshot","snapshot":{"callId":"call@147","snapshotName":"after@call@147","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/results?origin=00000000-0000-4000-8000-000000000020&destination=00000000-0000-4000-8000-000000000022&date=2026-07-23&tripType=ONE_WAY&adults=1&children=0&nationality=ETHIOPIAN&promoCode=EXPIRED50","doctype":"html","html":[[1,14]],"viewport":{"width":1280,"height":720},"timestamp":11516.994,"wallTime":1784630671943,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@149","startTime":11517.892,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"3ef872809e82c6869f1291b40064a89a","phase":"before","event":""},"stepId":"pw:api@32","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"log","callId":"call@149","time":11517.92,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671955.jpeg","width":1280,"height":720,"timestamp":11529.312,"frameSwapWallTime":1784630671954.206} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671975.jpeg","width":1280,"height":720,"timestamp":11549.257,"frameSwapWallTime":1784630671974.221} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671997.jpeg","width":1280,"height":720,"timestamp":11570.716,"frameSwapWallTime":1784630671995.7122} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672018.jpeg","width":1280,"height":720,"timestamp":11591.776,"frameSwapWallTime":1784630672016.372} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672045.jpeg","width":1280,"height":720,"timestamp":11619.193,"frameSwapWallTime":1784630672038.1082} +{"type":"log","callId":"call@149","time":11619.331,"message":" navigated to \"http://localhost:5174/booking/auth-check\""} +{"type":"after","callId":"call@149","endTime":11619.342} +{"type":"before","callId":"call@154","startTime":11619.389,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"c798e89519b56e9d2b631fe6dc6a05ec","phase":"before","event":""},"stepId":"pw:api@33","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"log","callId":"call@154","time":11619.403,"message":"waiting for navigation until \"load\""} +{"type":"before","callId":"call@157","startTime":11619.428,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue as guest/i]","strict":true,"timeout":15000},"stepId":"pw:api@34","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@157"} +{"type":"frame-snapshot","snapshot":{"callId":"call@157","snapshotName":"before@call@157","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/auth-check","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[10,0]],[[10,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[10,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[10,36]],[[10,43]],[[10,47]],[[10,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[10,55]],["OL",{"class":"space-y-1"},[[10,61]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[10,64]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[10,67]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[10,69]]]],[[10,76]],[[10,81]],[[10,86]],[[10,91]]]]],[[10,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[10,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[10,132]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[10,139]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[10,142]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[10,143]]]],[[10,146]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[10,148]]]],[[10,159]],[[10,168]],[[10,177]],[[10,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center px-4"},["DIV",{"class":"w-full max-w-sm"},["H1",{"class":"text-2xl font-bold text-center text-gray-900 dark:text-gray-100 mb-1"},"Continue your booking"],["P",{"class":"text-sm text-center text-gray-500 dark:text-gray-400 mb-8"},"Choose how you'd like to proceed"],["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"relative"},["BUTTON",{"class":"w-full flex items-center justify-center gap-2.5 px-5 py-3.5 bg-primary hover:bg-primary/90 active:scale-[0.98] text-white font-semibold rounded-xl transition-all shadow-md shadow-primary/20"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-user-plus w-5 h-5 flex-shrink-0"},["path",{"d":"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{"cx":"9","cy":"7","r":"4"}],["line",{"x1":"19","x2":"19","y1":"8","y2":"14"}],["line",{"x1":"22","x2":"16","y1":"11","y2":"11"}]],"Continue as guest"],["DIV",{"role":"tooltip","class":"absolute bottom-[calc(100%+8px)] left-1/2 -translate-x-1/2 w-52 bg-gray-900 dark:bg-gray-700 text-white text-xs rounded-lg px-3 py-2.5 shadow-xl pointer-events-none transition-all duration-150 z-50 opacity-0 translate-y-1"},["UL",{"class":"space-y-1"},["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"No account required"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Quick checkout"],["LI",{"class":"flex items-center gap-1.5"},["SPAN",{"class":"text-green-400 flex-shrink-0"},"✓"],"Create account later (optional)"]],["DIV",{"class":"absolute top-full left-1/2 -translate-x-1/2 border-4 border-transparent border-t-gray-900 dark:border-t-gray-700"}]]]],["DIV",{"class":"mt-8 text-center"},["BUTTON",{"class":"inline-flex items-center gap-1.5 text-sm text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back to results"]]]]]]]],[[10,304]],[[10,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11621.167,"wallTime":1784630672047,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@157","time":11621.354,"message":"waiting for getByRole('button', { name: /continue as guest/i })"} +{"type":"log","callId":"call@157","time":11624.34,"message":" locator resolved to "} +{"type":"log","callId":"call@157","time":11627.128,"message":"attempting click action"} +{"type":"log","callId":"call@157","time":11627.149,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672061.jpeg","width":1280,"height":720,"timestamp":11635.105,"frameSwapWallTime":1784630672060.045} +{"type":"log","callId":"call@157","time":11636.085,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@157","time":11636.096,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@157","time":11637.609,"message":" done scrolling"} +{"type":"input","callId":"call@157","point":{"x":768,"y":385},"inputSnapshot":"input@call@157"} +{"type":"frame-snapshot","snapshot":{"callId":"call@157","snapshotName":"input@call@157","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/auth-check","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[1,27]],["BODY",{"class":"font-sans antialiased"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[11,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center px-4"},["DIV",{"class":"w-full max-w-sm"},[[1,58]],[[1,60]],["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"relative"},["BUTTON",{"__playwright_target__":"","class":"w-full flex items-center justify-center gap-2.5 px-5 py-3.5 bg-primary hover:bg-primary/90 active:scale-[0.98] text-white font-semibold rounded-xl transition-all shadow-md shadow-primary/20"},[[1,65]],[[1,66]]],[[1,82]]]],[[1,89]]]]]]]],[[11,304]],[[11,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11641.247,"wallTime":1784630672067,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@157","time":11642.008,"message":" performing click action"} +{"type":"log","callId":"call@157","time":11644.237,"message":" click action done"} +{"type":"log","callId":"call@157","time":11644.242,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@157","time":11644.541,"message":" navigations have finished"} +{"type":"after","callId":"call@157","endTime":11644.593,"afterSnapshot":"after@call@157"} +{"type":"frame-snapshot","snapshot":{"callId":"call@157","snapshotName":"after@call@157","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/auth-check","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[12,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col items-center justify-center px-4"},["DIV",{"class":"w-full max-w-sm"},[[2,58]],[[2,60]],["DIV",{"class":"flex flex-col gap-3"},["DIV",{"class":"relative"},[[1,0]],["DIV",{"role":"tooltip","class":"absolute bottom-[calc(100%+8px)] left-1/2 -translate-x-1/2 w-52 bg-gray-900 dark:bg-gray-700 text-white text-xs rounded-lg px-3 py-2.5 shadow-xl pointer-events-none transition-all duration-150 z-50 opacity-100 translate-y-0"},[[2,80]],[[2,81]]]]],[[2,89]]]]]]]],[[12,304]],[[12,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11645.167,"wallTime":1784630672071,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@159","startTime":11645.908,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"c3f12045fc636097cc342563b3d37e05","phase":"before","event":""},"stepId":"pw:api@35","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"log","callId":"call@159","time":11645.929,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672083.jpeg","width":1280,"height":720,"timestamp":11656.496,"frameSwapWallTime":1784630672081.48} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672104.jpeg","width":1280,"height":720,"timestamp":11677.4,"frameSwapWallTime":1784630672102.364} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672107.jpeg","width":1280,"height":720,"timestamp":11680.988,"frameSwapWallTime":1784630672106.104} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672111.jpeg","width":1280,"height":720,"timestamp":11685.057,"frameSwapWallTime":1784630672110.142} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672121.jpeg","width":1280,"height":720,"timestamp":11694.892,"frameSwapWallTime":1784630672119.904} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672137.jpeg","width":1280,"height":720,"timestamp":11711.151,"frameSwapWallTime":1784630672135.972} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672146.jpeg","width":1280,"height":720,"timestamp":11719.591,"frameSwapWallTime":1784630672144.4731} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672153.jpeg","width":1280,"height":720,"timestamp":11727.338,"frameSwapWallTime":1784630672152.284} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672195.jpeg","width":1280,"height":720,"timestamp":11769.089,"frameSwapWallTime":1784630672187.284} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672195.jpeg","width":1280,"height":720,"timestamp":11769.139,"frameSwapWallTime":1784630672188.23} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672195.jpeg","width":1280,"height":720,"timestamp":11769.17,"frameSwapWallTime":1784630672188.704} +{"type":"log","callId":"call@154","time":11771.601,"message":" navigated to \"http://localhost:5174/booking/passengers\""} +{"type":"log","callId":"call@159","time":11771.61,"message":" navigated to \"http://localhost:5174/booking/passengers\""} +{"type":"after","callId":"call@154","endTime":11771.615} +{"type":"after","callId":"call@159","endTime":11771.628} +{"type":"before","callId":"call@166","startTime":11771.669,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@36","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@166"} +{"type":"before","callId":"call@168","startTime":11771.862,"class":"Frame","method":"waitForSelector","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@37","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@168"} +{"type":"frame-snapshot","snapshot":{"callId":"call@166","snapshotName":"before@call@166","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[13,0]],[[13,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased"},[[3,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[13,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[3,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Passenger details"],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},["H3",{"class":"text-lg font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passenger ","1"," ","(Primary)"," - Adult",["SPAN",{"class":"ml-2 text-sm font-normal text-gray-600 dark:text-gray-400"},"(","Ethiopian",")"]],["DIV",{"class":"text-center py-8"},["P",{"class":"text-sm text-gray-600 dark:text-gray-400 mb-4"},"Fayda verification is currently unavailable"],["BUTTON",{"type":"button","class":"btn-primary"},"Enter details manually"]]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},"Continue to seat selection"]]]]]]]]]],[[13,304]],[[13,316]]]],"viewport":{"width":1280,"height":720},"timestamp":11772.726,"wallTime":1784630672199,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@166","time":11773.006,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"frame-snapshot","snapshot":{"callId":"call@168","snapshotName":"before@call@168","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,62]],"viewport":{"width":1280,"height":720},"timestamp":11773.75,"wallTime":1784630672199,"collectionTime":0.19999999925494194,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@168","time":11773.916,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first() to be visible"} +{"type":"log","callId":"call@168","time":11777.059,"message":" locator resolved to visible "} +{"type":"after","callId":"call@168","endTime":11777.129,"result":{},"afterSnapshot":"after@call@168"} +{"type":"frame-snapshot","snapshot":{"callId":"call@168","snapshotName":"after@call@168","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,62]],"viewport":{"width":1280,"height":720},"timestamp":11777.828,"wallTime":1784630672204,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@170","startTime":11781.259,"class":"Frame","method":"isVisible","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true},"stepId":"pw:api@38","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@170"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672208.jpeg","width":1280,"height":720,"timestamp":11781.673,"frameSwapWallTime":1784630672202.975} +{"type":"frame-snapshot","snapshot":{"callId":"call@170","snapshotName":"before@call@170","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,62]],"viewport":{"width":1280,"height":720},"timestamp":11782.081,"wallTime":1784630672208,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@170","time":11782.258,"message":" checking visibility of locator('input[name=\"passengers.0.name\"]')"} +{"type":"after","callId":"call@170","endTime":11783.016,"result":{"value":false},"afterSnapshot":"after@call@170"} +{"type":"frame-snapshot","snapshot":{"callId":"call@170","snapshotName":"after@call@170","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[4,62]],"viewport":{"width":1280,"height":720},"timestamp":11783.497,"wallTime":1784630672210,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@172","startTime":11784.06,"class":"Frame","method":"isVisible","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true},"stepId":"pw:api@39","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@172"} +{"type":"frame-snapshot","snapshot":{"callId":"call@172","snapshotName":"before@call@172","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[5,62]],"viewport":{"width":1280,"height":720},"timestamp":11784.736,"wallTime":1784630672211,"collectionTime":0.20000000298023224,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@172","time":11784.927,"message":" checking visibility of locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672212.jpeg","width":1280,"height":720,"timestamp":11785.572,"frameSwapWallTime":1784630672210.54} +{"type":"after","callId":"call@172","endTime":11785.661,"result":{"value":true},"afterSnapshot":"after@call@172"} +{"type":"frame-snapshot","snapshot":{"callId":"call@172","snapshotName":"after@call@172","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[6,62]],"viewport":{"width":1280,"height":720},"timestamp":11786.128,"wallTime":1784630672212,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@174","startTime":11786.858,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/enter details manually|skip for now/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@40","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@174"} +{"type":"frame-snapshot","snapshot":{"callId":"call@174","snapshotName":"before@call@174","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[7,62]],"viewport":{"width":1280,"height":720},"timestamp":11787.495,"wallTime":1784630672213,"collectionTime":0.29999999701976776,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@174","time":11787.651,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /enter details manually|skip for now/i }).first()"} +{"type":"log","callId":"call@174","time":11788.824,"message":" locator resolved to "} +{"type":"log","callId":"call@174","time":11789.251,"message":"attempting click action"} +{"type":"log","callId":"call@174","time":11789.27,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672221.jpeg","width":1280,"height":720,"timestamp":11794.564,"frameSwapWallTime":1784630672219.532} +{"type":"log","callId":"call@174","time":11804.119,"message":" element is not stable"} +{"type":"log","callId":"call@174","time":11804.128,"message":"retrying click action"} +{"type":"log","callId":"call@174","time":11804.142,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672237.jpeg","width":1280,"height":720,"timestamp":11810.93,"frameSwapWallTime":1784630672235.811} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672245.jpeg","width":1280,"height":720,"timestamp":11819.259,"frameSwapWallTime":1784630672244.166} +{"type":"log","callId":"call@174","time":11819.833,"message":" element is not stable"} +{"type":"log","callId":"call@174","time":11819.838,"message":"retrying click action"} +{"type":"log","callId":"call@174","time":11819.84,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672253.jpeg","width":1280,"height":720,"timestamp":11826.835,"frameSwapWallTime":1784630672251.742} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672262.jpeg","width":1280,"height":720,"timestamp":11835.842,"frameSwapWallTime":1784630672260.784} +{"type":"log","callId":"call@174","time":11841.794,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672279.jpeg","width":1280,"height":720,"timestamp":11852.491,"frameSwapWallTime":1784630672277.395} +{"type":"log","callId":"call@174","time":11853.068,"message":" element is not stable"} +{"type":"log","callId":"call@174","time":11853.075,"message":"retrying click action"} +{"type":"log","callId":"call@174","time":11853.077,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672286.jpeg","width":1280,"height":720,"timestamp":11859.767,"frameSwapWallTime":1784630672284.6292} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672295.jpeg","width":1280,"height":720,"timestamp":11868.777,"frameSwapWallTime":1784630672293.756} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672303.jpeg","width":1280,"height":720,"timestamp":11877.01,"frameSwapWallTime":1784630672302.0051} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672320.jpeg","width":1280,"height":720,"timestamp":11893.952,"frameSwapWallTime":1784630672318.879} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672328.jpeg","width":1280,"height":720,"timestamp":11901.364,"frameSwapWallTime":1784630672326.318} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672336.jpeg","width":1280,"height":720,"timestamp":11910.163,"frameSwapWallTime":1784630672335.061} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672345.jpeg","width":1280,"height":720,"timestamp":11918.994,"frameSwapWallTime":1784630672343.889} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672362.jpeg","width":1280,"height":720,"timestamp":11935.626,"frameSwapWallTime":1784630672360.586} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672370.jpeg","width":1280,"height":720,"timestamp":11943.621,"frameSwapWallTime":1784630672368.581} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672378.jpeg","width":1280,"height":720,"timestamp":11952.194,"frameSwapWallTime":1784630672377.126} +{"type":"log","callId":"call@174","time":11953.806,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672395.jpeg","width":1280,"height":720,"timestamp":11968.912,"frameSwapWallTime":1784630672393.76} +{"type":"log","callId":"call@174","time":11970.097,"message":" element is not stable"} +{"type":"log","callId":"call@174","time":11970.169,"message":"retrying click action"} +{"type":"log","callId":"call@174","time":11970.17,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672403.jpeg","width":1280,"height":720,"timestamp":11976.92,"frameSwapWallTime":1784630672401.788} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672412.jpeg","width":1280,"height":720,"timestamp":11986.013,"frameSwapWallTime":1784630672410.805} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672429.jpeg","width":1280,"height":720,"timestamp":12002.462,"frameSwapWallTime":1784630672427.254} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672436.jpeg","width":1280,"height":720,"timestamp":12009.655,"frameSwapWallTime":1784630672434.557} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672446.jpeg","width":1280,"height":720,"timestamp":12019.348,"frameSwapWallTime":1784630672444.211} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672462.jpeg","width":1280,"height":720,"timestamp":12035.465,"frameSwapWallTime":1784630672460.4001} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672470.jpeg","width":1280,"height":720,"timestamp":12043.639,"frameSwapWallTime":1784630672468.57} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672478.jpeg","width":1280,"height":720,"timestamp":12052.186,"frameSwapWallTime":1784630672477.088} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672487.jpeg","width":1280,"height":720,"timestamp":12060.541,"frameSwapWallTime":1784630672485.452} +{"type":"log","callId":"call@174","time":12071.674,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672503.jpeg","width":1280,"height":720,"timestamp":12077.096,"frameSwapWallTime":1784630672501.978} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672511.jpeg","width":1280,"height":720,"timestamp":12084.679,"frameSwapWallTime":1784630672509.529} +{"type":"log","callId":"call@174","time":12087.323,"message":" element is not stable"} +{"type":"log","callId":"call@174","time":12087.329,"message":"retrying click action"} +{"type":"log","callId":"call@174","time":12087.331,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672520.jpeg","width":1280,"height":720,"timestamp":12093.844,"frameSwapWallTime":1784630672518.751} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672535.jpeg","width":1280,"height":720,"timestamp":12108.758,"frameSwapWallTime":1784630672533.4011} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672544.jpeg","width":1280,"height":720,"timestamp":12117.683,"frameSwapWallTime":1784630672542.44} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672551.jpeg","width":1280,"height":720,"timestamp":12125.036,"frameSwapWallTime":1784630672549.8928} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672559.jpeg","width":1280,"height":720,"timestamp":12132.825,"frameSwapWallTime":1784630672557.816} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672575.jpeg","width":1280,"height":720,"timestamp":12149.239,"frameSwapWallTime":1784630672574.044} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672585.jpeg","width":1280,"height":720,"timestamp":12158.618,"frameSwapWallTime":1784630672583.434} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672593.jpeg","width":1280,"height":720,"timestamp":12166.689,"frameSwapWallTime":1784630672591.622} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672603.jpeg","width":1280,"height":720,"timestamp":12176.869,"frameSwapWallTime":1784630672601.891} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672613.jpeg","width":1280,"height":720,"timestamp":12186.437,"frameSwapWallTime":1784630672611.331} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672621.jpeg","width":1280,"height":720,"timestamp":12195.217,"frameSwapWallTime":1784630672620.131} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672638.jpeg","width":1280,"height":720,"timestamp":12212.191,"frameSwapWallTime":1784630672637.124} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672647.jpeg","width":1280,"height":720,"timestamp":12220.493,"frameSwapWallTime":1784630672645.483} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672655.jpeg","width":1280,"height":720,"timestamp":12228.947,"frameSwapWallTime":1784630672653.85} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672664.jpeg","width":1280,"height":720,"timestamp":12237.42,"frameSwapWallTime":1784630672662.2988} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672681.jpeg","width":1280,"height":720,"timestamp":12254.627,"frameSwapWallTime":1784630672679.446} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672689.jpeg","width":1280,"height":720,"timestamp":12262.381,"frameSwapWallTime":1784630672687.1892} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672697.jpeg","width":1280,"height":720,"timestamp":12270.905,"frameSwapWallTime":1784630672695.751} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672714.jpeg","width":1280,"height":720,"timestamp":12287.678,"frameSwapWallTime":1784630672712.476} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672931.jpeg","width":1280,"height":720,"timestamp":12504.36,"frameSwapWallTime":1784630672929.115} +{"type":"log","callId":"call@174","time":12588.636,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@174","time":12599.848,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@174","time":12599.858,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@174","time":12600.39,"message":" done scrolling"} +{"type":"input","callId":"call@174","point":{"x":768,"y":254},"inputSnapshot":"input@call@174"} +{"type":"frame-snapshot","snapshot":{"callId":"call@174","snapshotName":"input@call@174","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[8,27]],["BODY",{"class":"font-sans antialiased"},[[11,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[21,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[11,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[8,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[8,39]],["DIV",{"class":"text-center py-8"},[[8,41]],["BUTTON",{"__playwright_target__":"","type":"button","class":"btn-primary"},[[8,42]]]]],[[8,52]]]]]]]]]],[[21,304]],[[21,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12601.232,"wallTime":1784630673027,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@174","time":12601.689,"message":" performing click action"} +{"type":"log","callId":"call@174","time":12608.59,"message":" click action done"} +{"type":"log","callId":"call@174","time":12608.597,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@174","time":12608.879,"message":" navigations have finished"} +{"type":"after","callId":"call@174","endTime":12608.922,"afterSnapshot":"after@call@174"} +{"type":"frame-snapshot","snapshot":{"callId":"call@174","snapshotName":"after@call@174","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[9,27]],["BODY",{"class":"font-sans antialiased"},[[12,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[22,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[12,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[9,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[9,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Full Name *"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Date of Birth *"],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-400 text-sm"},"Select date of birth"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-calendar-days w-4 h-4 text-gray-400 flex-shrink-0"},["path",{"d":"M8 2v4"}],["path",{"d":"M16 2v4"}],["rect",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["path",{"d":"M3 10h18"}],["path",{"d":"M8 14h.01"}],["path",{"d":"M12 14h.01"}],["path",{"d":"M16 14h.01"}],["path",{"d":"M8 18h.01"}],["path",{"d":"M12 18h.01"}],["path",{"d":"M16 18h.01"}]]]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Gender *"],["SELECT",{"name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"true","value":""},"Select gender"],["OPTION",{"__playwright_selected_":"false","value":"Male"},"Male"],["OPTION",{"__playwright_selected_":"false","value":"Female"},"Female"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Nationality"],["INPUT",{"__playwright_value_":"ETHIOPIAN","class":"input-field bg-gray-100 dark:bg-gray-700 cursor-not-allowed","readonly":"","disabled":"","name":"passengers.0.nationality"}]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Phone Number *"],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},["DIV",{"class":"flex items-center gap-1.5 px-3 py-2.5 bg-gray-50 dark:bg-gray-800 border-r border-gray-300 dark:border-gray-600 select-none flex-shrink-0"},["SPAN",{"class":"text-sm leading-none"},"🇪🇹"],["SPAN",{"class":"text-xs font-semibold text-gray-600 dark:text-gray-300"},"+251"]],["INPUT",{"__playwright_value_":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],["P",{"class":"text-xs text-gray-400 dark:text-gray-500 mt-1"},"Format: ","+251912345678 or 0912345678"]]],["DIV",{},["LABEL",{"class":"block text-sm font-medium mb-1 text-gray-700 dark:text-gray-300"},"Email (optional)"],["INPUT",{"__playwright_value_":"","class":"input-field ","placeholder":"email@example.com","type":"email","name":"passengers.0.email"}]]]]],[[9,52]]]]]]]]]],[[22,304]],[[22,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12609.953,"wallTime":1784630673036,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@176","startTime":12610.837,"class":"Frame","method":"waitForSelector","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"timeout":15000,"state":"visible","omitReturnValue":true},"stepId":"pw:api@41","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@176"} +{"type":"frame-snapshot","snapshot":{"callId":"call@176","snapshotName":"before@call@176","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,66]],"viewport":{"width":1280,"height":720},"timestamp":12611.679,"wallTime":1784630673038,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@176","time":12611.825,"message":"waiting for locator('input[name=\"passengers.0.name\"]') to be visible"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673039.jpeg","width":1280,"height":720,"timestamp":12612.563,"frameSwapWallTime":1784630673037.457} +{"type":"log","callId":"call@176","time":12612.982,"message":" locator resolved to visible "} +{"type":"after","callId":"call@176","endTime":12612.998,"result":{},"afterSnapshot":"after@call@176"} +{"type":"frame-snapshot","snapshot":{"callId":"call@176","snapshotName":"after@call@176","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[2,66]],"viewport":{"width":1280,"height":720},"timestamp":12613.487,"wallTime":1784630673040,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@178","startTime":12614.23,"class":"Frame","method":"fill","params":{"selector":"input[name=\"passengers.0.name\"]","strict":true,"value":"Adult 1","timeout":15000},"stepId":"pw:api@42","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@178"} +{"type":"frame-snapshot","snapshot":{"callId":"call@178","snapshotName":"before@call@178","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[3,66]],"viewport":{"width":1280,"height":720},"timestamp":12614.75,"wallTime":1784630673041,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@178","time":12614.871,"message":"waiting for locator('input[name=\"passengers.0.name\"]')"} +{"type":"log","callId":"call@178","time":12615.606,"message":" locator resolved to "} +{"type":"log","callId":"call@178","time":12615.919,"message":" fill(\"Adult 1\")"} +{"type":"log","callId":"call@178","time":12615.923,"message":"attempting fill action"} +{"type":"input","callId":"call@178","inputSnapshot":"input@call@178"} +{"type":"frame-snapshot","snapshot":{"callId":"call@178","snapshotName":"input@call@178","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[13,27]],["BODY",{"class":"font-sans antialiased"},[[16,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[26,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[16,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[13,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[13,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[4,1]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[4,21]],[[4,31]],[[4,35]],[[4,49]],[[4,53]]]]],[[13,52]]]]]]]]]],[[26,304]],[[26,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12616.568,"wallTime":1784630673043,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@178","time":12616.613,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@178","endTime":12621.252,"afterSnapshot":"after@call@178"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673048.jpeg","width":1280,"height":720,"timestamp":12621.835,"frameSwapWallTime":1784630673046.593} +{"type":"frame-snapshot","snapshot":{"callId":"call@178","snapshotName":"after@call@178","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[14,27]],["BODY",{"class":"font-sans antialiased"},[[17,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[27,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[17,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[14,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[14,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[5,1]],["INPUT",{"__playwright_value_":"Adult 1","__playwright_target__":"","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[5,21]],[[5,31]],[[5,35]],[[5,49]],[[5,53]]]]],[[14,52]]]]]]]]]],[[27,304]],[[27,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12621.967,"wallTime":1784630673048,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@180","startTime":12622.689,"class":"Frame","method":"selectOption","params":{"selector":"select[name=\"passengers.0.gender\"]","strict":true,"options":[{"valueOrLabel":"Male"}],"timeout":15000},"stepId":"pw:api@43","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@180"} +{"type":"frame-snapshot","snapshot":{"callId":"call@180","snapshotName":"before@call@180","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[15,27]],["BODY",{"class":"font-sans antialiased"},[[18,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[28,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[18,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[15,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[15,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},["DIV",{},[[6,1]],["INPUT",{"__playwright_value_":"Adult 1","class":"input-field ","placeholder":"Full name as per ID","name":"passengers.0.name"}]],[[6,21]],[[6,31]],[[6,35]],[[6,49]],[[6,53]]]]],[[15,52]]]]]]]]]],[[28,304]],[[28,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12623.276,"wallTime":1784630673049,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@180","time":12623.459,"message":"waiting for locator('select[name=\"passengers.0.gender\"]')"} +{"type":"log","callId":"call@180","time":12624.202,"message":" locator resolved to "} +{"type":"log","callId":"call@180","time":12624.569,"message":"attempting select option action"} +{"type":"input","callId":"call@180","inputSnapshot":"input@call@180"} +{"type":"frame-snapshot","snapshot":{"callId":"call@180","snapshotName":"input@call@180","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[16,27]],["BODY",{"class":"font-sans antialiased"},[[19,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[29,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[19,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[16,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[16,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[1,1]],[[7,21]],["DIV",{},[[7,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},[[7,25]],[[7,27]],[[7,29]]]],[[7,35]],[[7,49]],[[7,53]]]]],[[16,52]]]]]]]]]],[[29,304]],[[29,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12625.564,"wallTime":1784630673052,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@180","time":12625.613,"message":" waiting for element to be visible and enabled"} +{"type":"log","callId":"call@180","time":12627.593,"message":" selected specified option(s)"} +{"type":"after","callId":"call@180","endTime":12627.679,"result":{"values":["Male"]},"afterSnapshot":"after@call@180"} +{"type":"frame-snapshot","snapshot":{"callId":"call@180","snapshotName":"after@call@180","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[17,27]],["BODY",{"class":"font-sans antialiased"},[[20,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[30,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[20,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[17,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[17,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[2,1]],[[8,21]],["DIV",{},[[8,23]],["SELECT",{"__playwright_target__":"","name":"passengers.0.gender","class":"input-field "},["OPTION",{"__playwright_selected_":"false","value":""},[[8,24]]],["OPTION",{"__playwright_selected_":"true","value":"Male"},[[8,26]]],[[8,29]]]],[[8,35]],[[8,49]],[[8,53]]]]],[[17,52]]]]]]]]]],[[30,304]],[[30,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12628.573,"wallTime":1784630673055,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@182","startTime":12629.339,"class":"Frame","method":"fill","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> input[type=\"tel\"] >> nth=0","strict":true,"value":"912345678","timeout":15000},"stepId":"pw:api@44","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@182"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673056.jpeg","width":1280,"height":720,"timestamp":12629.719,"frameSwapWallTime":1784630673054.43} +{"type":"frame-snapshot","snapshot":{"callId":"call@182","snapshotName":"before@call@182","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[18,27]],["BODY",{"class":"font-sans antialiased"},[[21,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[31,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[21,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[18,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[18,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[3,1]],[[9,21]],["DIV",{},[[9,23]],["SELECT",{"name":"passengers.0.gender","class":"input-field "},[[1,0]],[[1,1]],[[9,29]]]],[[9,35]],[[9,49]],[[9,53]]]]],[[18,52]]]]]]]]]],[[31,304]],[[31,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12630.186,"wallTime":1784630673056,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@182","time":12630.346,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).locator('input[type=\"tel\"]').first()"} +{"type":"log","callId":"call@182","time":12631.412,"message":" locator resolved to "} +{"type":"log","callId":"call@182","time":12631.657,"message":" fill(\"912345678\")"} +{"type":"log","callId":"call@182","time":12631.66,"message":"attempting fill action"} +{"type":"input","callId":"call@182","inputSnapshot":"input@call@182"} +{"type":"frame-snapshot","snapshot":{"callId":"call@182","snapshotName":"input@call@182","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[19,27]],["BODY",{"class":"font-sans antialiased"},[[22,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[32,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[22,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[19,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[19,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[4,1]],[[10,21]],[[1,1]],[[10,35]],["DIV",{},[[10,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[10,42]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":""}]],[[10,47]]]],[[10,53]]]]],[[19,52]]]]]]]]]],[[32,304]],[[32,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12632.239,"wallTime":1784630673058,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@182","time":12632.303,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@182","endTime":12635.142,"afterSnapshot":"after@call@182"} +{"type":"frame-snapshot","snapshot":{"callId":"call@182","snapshotName":"after@call@182","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[20,27]],["BODY",{"class":"font-sans antialiased"},[[23,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[33,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[23,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[20,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[20,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[5,1]],[[11,21]],[[2,1]],[[11,35]],["DIV",{},[[11,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[11,42]],["INPUT",{"__playwright_value_":"912345678","__playwright_target__":"","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[11,47]]]],[[11,53]]]]],[[20,52]]]]]]]]]],[[33,304]],[[33,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12635.798,"wallTime":1784630673062,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@184","startTime":12636.526,"class":"Frame","method":"click","params":{"selector":"div.card >> internal:has-text=/Passenger 1\\b/ >> internal:role=button[name=/select date of birth/i]","strict":true,"timeout":15000},"stepId":"pw:api@45","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@184"} +{"type":"frame-snapshot","snapshot":{"callId":"call@184","snapshotName":"before@call@184","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[21,27]],["BODY",{"class":"font-sans antialiased"},[[24,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[34,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[24,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[21,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[21,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[6,1]],[[12,21]],[[3,1]],[[12,35]],["DIV",{},[[12,37]],["DIV",{},["DIV",{"class":"flex rounded-lg overflow-hidden border transition-colors focus-within:ring-1 border-gray-300 dark:border-gray-600 focus-within:border-primary focus-within:ring-primary"},[[12,42]],["INPUT",{"__playwright_value_":"912345678","placeholder":"912345678","autocomplete":"tel","class":"flex-1 px-3 py-2.5 text-sm text-gray-900 dark:text-white outline-none min-w-0 bg-white dark:bg-gray-900","type":"tel","value":"912345678"}]],[[12,47]]]],[[12,53]]]]],[[21,52]]]]]]]]]],[[34,304]],[[34,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12637.13,"wallTime":1784630673063,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@184","time":12637.293,"message":"waiting for locator('div.card').filter({ hasText: /Passenger 1\\b/ }).getByRole('button', { name: /select date of birth/i })"} +{"type":"log","callId":"call@184","time":12638.424,"message":" locator resolved to "} +{"type":"log","callId":"call@184","time":12638.705,"message":"attempting click action"} +{"type":"log","callId":"call@184","time":12638.721,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673072.jpeg","width":1280,"height":720,"timestamp":12645.772,"frameSwapWallTime":1784630673070.442} +{"type":"log","callId":"call@184","time":12649.013,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@184","time":12649.015,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@184","time":12649.364,"message":" done scrolling"} +{"type":"input","callId":"call@184","point":{"x":1007.5,"y":210},"inputSnapshot":"input@call@184"} +{"type":"frame-snapshot","snapshot":{"callId":"call@184","snapshotName":"input@call@184","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[22,27]],["BODY",{"class":"font-sans antialiased"},[[25,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[35,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[25,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[22,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[22,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[7,1]],["DIV",{},[[13,5]],["DIV",{},["BUTTON",{"__playwright_target__":"","type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[13,7]],[[13,18]]]]],[[4,1]],[[13,35]],[[1,3]],[[13,53]]]]],[[22,52]]]]]]]]]],[[35,304]],[[35,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12650.492,"wallTime":1784630673076,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@184","time":12651.073,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673080.jpeg","width":1280,"height":720,"timestamp":12654.188,"frameSwapWallTime":1784630673078.909} +{"type":"log","callId":"call@184","time":12659.954,"message":" click action done"} +{"type":"log","callId":"call@184","time":12659.958,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@184","time":12660.254,"message":" navigations have finished"} +{"type":"after","callId":"call@184","endTime":12660.305,"afterSnapshot":"after@call@184"} +{"type":"frame-snapshot","snapshot":{"callId":"call@184","snapshotName":"after@call@184","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[23,27]],["BODY",{"class":"font-sans antialiased"},[[26,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[36,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[26,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[23,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[23,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[8,1]],["DIV",{},[[14,5]],["DIV",{},[[1,0]],["DIV",{"class":"fixed inset-0 z-[99] bg-black/50"}],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Date of Birth"],["BUTTON",{"type":"button","class":"flex items-center gap-1 text-xs font-semibold px-2.5 py-1 rounded-lg bg-primary/10 text-primary hover:bg-primary/20 transition-colors"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-globe w-3 h-3"},["circle",{"cx":"12","cy":"12","r":"10"}],["path",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{"d":"M2 12h20"}]],"ET"],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Enter manually"]],["BUTTON",{"type":"button","class":"w-9 h-9 flex items-center justify-center rounded-full hover:bg-gray-100 dark:hover:bg-gray-800"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-x w-5 h-5 text-gray-500"},["path",{"d":"M18 6 6 18"}],["path",{"d":"m6 6 12 12"}]]]],["DIV",{"class":"px-5 pt-2 pb-0"},["P",{"class":"text-xs text-gray-400"},"Gregorian Calendar"]],["DIV",{"class":"flex px-5 pt-2 pb-1"},["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Day"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Month"],["DIV",{"class":"flex-1 text-center text-xs font-semibold text-gray-400 uppercase tracking-wide"},"Year"]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},["DIV",{"class":"absolute left-5 right-5 pointer-events-none rounded-xl border border-primary/30 bg-primary/5 dark:bg-primary/10","style":"top: 96px; height: 48px;"}],["DIV",{"class":"flex gap-2 h-full"},["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"3"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"4"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"5"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"6"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"7"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"8"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"9"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"10"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"11"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"12"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"13"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"14"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"15"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"16"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"17"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"18"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"19"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"20"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"21"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"22"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"23"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"24"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"25"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"26"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"27"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"28"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"29"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"30"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"31"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"January"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"February"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"March"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"April"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"May"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"June"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"July"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"August"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"September"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"October"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"November"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"December"],["DIV",{"style":"height: 96px;"}]]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"4","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},["DIV",{"style":"height: 96px;"}],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2020"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2019"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2018"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2017"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2016"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2015"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2014"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2013"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2012"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2011"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2010"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2009"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2008"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2007"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2006"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2005"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2004"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2003"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2002"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2001"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-primary font-bold text-base","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"2000"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1999"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1998"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1997"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1996"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1995"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1994"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1993"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1992"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1991"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1990"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1989"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1988"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1987"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1986"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1985"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1984"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1983"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1982"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1981"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1980"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1979"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1978"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1977"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1976"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1975"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1974"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1973"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1972"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1971"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1970"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1969"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1968"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1967"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1966"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1965"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1964"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1963"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1962"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1961"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1960"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1959"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1958"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1957"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1956"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1955"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1954"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1953"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1952"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1951"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1950"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1949"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1948"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1947"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1946"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1945"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1944"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1943"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1942"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1941"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1940"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1939"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1938"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1937"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1936"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1935"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1934"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1933"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1932"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1931"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1930"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1929"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1928"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1927"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1926"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1925"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1924"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1923"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1922"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1921"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1920"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1919"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1918"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1917"],["DIV",{"class":"flex items-center justify-center text-sm font-medium transition-all select-none text-gray-400 dark:text-gray-500","style":"height: 48px; scroll-snap-align: center; cursor: pointer;"},"1916"],["DIV",{"style":"height: 96px;"}]]]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — January 1, 2000"]]],["STYLE",{},"@keyframes dob-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}"]]],[[5,1]],[[14,35]],[[2,3]],[[14,53]]]]],[[23,52]]]]]]]]]],[[36,304]],[[36,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12662.654,"wallTime":1784630673088,"collectionTime":1.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@186","startTime":12663.94,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/enter manually/i]","strict":true,"timeout":15000},"stepId":"pw:api@46","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@186"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673090.jpeg","width":1280,"height":720,"timestamp":12664.179,"frameSwapWallTime":1784630673088.331} +{"type":"frame-snapshot","snapshot":{"callId":"call@186","snapshotName":"before@call@186","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[24,27]],["BODY",{"class":"font-sans antialiased"},[[27,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[37,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[27,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[24,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[24,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[9,1]],["DIV",{},[[15,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},[[15,7]],[[15,18]]],[[1,0]],[[1,341]],[[1,343]]]],[[6,1]],[[15,35]],[[3,3]],[[15,53]]]]],[[24,52]]]]]]]]]],[[37,304]],[[37,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12664.97,"wallTime":1784630673091,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@186","time":12665.102,"message":"waiting for getByRole('button', { name: /enter manually/i })"} +{"type":"log","callId":"call@186","time":12667.244,"message":" locator resolved to "} +{"type":"log","callId":"call@186","time":12667.619,"message":"attempting click action"} +{"type":"log","callId":"call@186","time":12667.631,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673099.jpeg","width":1280,"height":720,"timestamp":12672.889,"frameSwapWallTime":1784630673097.559} +{"type":"log","callId":"call@186","time":12683.159,"message":" element is not stable"} +{"type":"log","callId":"call@186","time":12683.163,"message":"retrying click action"} +{"type":"log","callId":"call@186","time":12683.172,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673116.jpeg","width":1280,"height":720,"timestamp":12689.793,"frameSwapWallTime":1784630673114.521} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673124.jpeg","width":1280,"height":720,"timestamp":12697.869,"frameSwapWallTime":1784630673122.656} +{"type":"log","callId":"call@186","time":12699.888,"message":" element is not stable"} +{"type":"log","callId":"call@186","time":12699.894,"message":"retrying click action"} +{"type":"log","callId":"call@186","time":12699.896,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673134.jpeg","width":1280,"height":720,"timestamp":12707.429,"frameSwapWallTime":1784630673132.247} +{"type":"log","callId":"call@186","time":12721.617,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673151.jpeg","width":1280,"height":720,"timestamp":12725.307,"frameSwapWallTime":1784630673150.028} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673160.jpeg","width":1280,"height":720,"timestamp":12733.509,"frameSwapWallTime":1784630673158.34} +{"type":"log","callId":"call@186","time":12733.582,"message":" element is not stable"} +{"type":"log","callId":"call@186","time":12733.584,"message":"retrying click action"} +{"type":"log","callId":"call@186","time":12733.585,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673169.jpeg","width":1280,"height":720,"timestamp":12742.577,"frameSwapWallTime":1784630673167.261} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673185.jpeg","width":1280,"height":720,"timestamp":12759.238,"frameSwapWallTime":1784630673183.814} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673194.jpeg","width":1280,"height":720,"timestamp":12767.548,"frameSwapWallTime":1784630673192.358} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673202.jpeg","width":1280,"height":720,"timestamp":12775.926,"frameSwapWallTime":1784630673200.659} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673211.jpeg","width":1280,"height":720,"timestamp":12784.809,"frameSwapWallTime":1784630673209.5972} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673227.jpeg","width":1280,"height":720,"timestamp":12800.898,"frameSwapWallTime":1784630673225.7349} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673236.jpeg","width":1280,"height":720,"timestamp":12809.414,"frameSwapWallTime":1784630673234.342} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673244.jpeg","width":1280,"height":720,"timestamp":12817.777,"frameSwapWallTime":1784630673242.667} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673252.jpeg","width":1280,"height":720,"timestamp":12826.155,"frameSwapWallTime":1784630673251.048} +{"type":"log","callId":"call@186","time":12834.915,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673269.jpeg","width":1280,"height":720,"timestamp":12842.784,"frameSwapWallTime":1784630673267.509} +{"type":"log","callId":"call@186","time":12849.882,"message":" element is not stable"} +{"type":"log","callId":"call@186","time":12849.89,"message":"retrying click action"} +{"type":"log","callId":"call@186","time":12849.892,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673277.jpeg","width":1280,"height":720,"timestamp":12851.043,"frameSwapWallTime":1784630673275.972} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673285.jpeg","width":1280,"height":720,"timestamp":12859.277,"frameSwapWallTime":1784630673284.09} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673294.jpeg","width":1280,"height":720,"timestamp":12867.647,"frameSwapWallTime":1784630673292.5789} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673310.jpeg","width":1280,"height":720,"timestamp":12884.046,"frameSwapWallTime":1784630673308.906} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673319.jpeg","width":1280,"height":720,"timestamp":12892.473,"frameSwapWallTime":1784630673317.28} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673327.jpeg","width":1280,"height":720,"timestamp":12900.947,"frameSwapWallTime":1784630673325.8108} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673335.jpeg","width":1280,"height":720,"timestamp":12909.323,"frameSwapWallTime":1784630673334.166} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673350.jpeg","width":1280,"height":720,"timestamp":12923.486,"frameSwapWallTime":1784630673348.434} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673357.jpeg","width":1280,"height":720,"timestamp":12930.343,"frameSwapWallTime":1784630673355.357} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673365.jpeg","width":1280,"height":720,"timestamp":12939.016,"frameSwapWallTime":1784630673364.032} +{"type":"log","callId":"call@186","time":12951.049,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673382.jpeg","width":1280,"height":720,"timestamp":12955.755,"frameSwapWallTime":1784630673380.7322} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673390.jpeg","width":1280,"height":720,"timestamp":12964.032,"frameSwapWallTime":1784630673389.0469} +{"type":"log","callId":"call@186","time":12966.565,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@186","time":12966.571,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@186","time":12966.841,"message":" done scrolling"} +{"type":"input","callId":"call@186","point":{"x":235.72,"y":309},"inputSnapshot":"input@call@186"} +{"type":"frame-snapshot","snapshot":{"callId":"call@186","snapshotName":"input@call@186","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[25,27]],["BODY",{"class":"font-sans antialiased"},[[28,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[38,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[28,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[25,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[25,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[10,1]],["DIV",{},[[16,5]],["DIV",{},[[1,0]],[[2,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[2,2]],[[2,8]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[2,9]]]],[[2,15]]],[[2,19]],[[2,26]],["DIV",{"class":"relative px-5 pb-2","style":"height: 240px;"},[[2,27]],["DIV",{"class":"flex gap-2 h-full"},[[2,93]],[[2,121]],["DIV",{"class":"flex-1 flex flex-col items-center"},["DIV",{"__playwright_scroll_top_":"805","class":"h-full overflow-y-auto scrollbar-hide","style":"scroll-snap-type: y mandatory;"},[[2,122]],[[2,124]],[[2,126]],[[2,128]],[[2,130]],[[2,132]],[[2,134]],[[2,136]],[[2,138]],[[2,140]],[[2,142]],[[2,144]],[[2,146]],[[2,148]],[[2,150]],[[2,152]],[[2,154]],[[2,156]],[[2,158]],[[2,160]],[[2,162]],[[2,164]],[[2,166]],[[2,168]],[[2,170]],[[2,172]],[[2,174]],[[2,176]],[[2,178]],[[2,180]],[[2,182]],[[2,184]],[[2,186]],[[2,188]],[[2,190]],[[2,192]],[[2,194]],[[2,196]],[[2,198]],[[2,200]],[[2,202]],[[2,204]],[[2,206]],[[2,208]],[[2,210]],[[2,212]],[[2,214]],[[2,216]],[[2,218]],[[2,220]],[[2,222]],[[2,224]],[[2,226]],[[2,228]],[[2,230]],[[2,232]],[[2,234]],[[2,236]],[[2,238]],[[2,240]],[[2,242]],[[2,244]],[[2,246]],[[2,248]],[[2,250]],[[2,252]],[[2,254]],[[2,256]],[[2,258]],[[2,260]],[[2,262]],[[2,264]],[[2,266]],[[2,268]],[[2,270]],[[2,272]],[[2,274]],[[2,276]],[[2,278]],[[2,280]],[[2,282]],[[2,284]],[[2,286]],[[2,288]],[[2,290]],[[2,292]],[[2,294]],[[2,296]],[[2,298]],[[2,300]],[[2,302]],[[2,304]],[[2,306]],[[2,308]],[[2,310]],[[2,312]],[[2,314]],[[2,316]],[[2,318]],[[2,320]],[[2,322]],[[2,324]],[[2,326]],[[2,328]],[[2,330]],[[2,332]],[[2,333]]]]]],[[2,340]]],[[2,343]]]],[[7,1]],[[16,35]],[[4,3]],[[16,53]]]]],[[25,52]]]]]]]]]],[[38,304]],[[38,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12968.299,"wallTime":1784630673394,"collectionTime":0.9000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@186","time":12968.938,"message":" performing click action"} +{"type":"log","callId":"call@186","time":12972.073,"message":" click action done"} +{"type":"log","callId":"call@186","time":12972.079,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@186","time":12972.229,"message":" navigations have finished"} +{"type":"after","callId":"call@186","endTime":12972.266,"afterSnapshot":"after@call@186"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673399.jpeg","width":1280,"height":720,"timestamp":12972.619,"frameSwapWallTime":1784630673397.651} +{"type":"frame-snapshot","snapshot":{"callId":"call@186","snapshotName":"after@call@186","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[26,27]],["BODY",{"class":"font-sans antialiased"},[[29,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[39,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[29,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[26,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[26,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[11,1]],["DIV",{},[[17,5]],["DIV",{},[[2,0]],[[3,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[3,2]],["BUTTON",{"__playwright_target__":"","type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},"Use scroll"]],[[3,15]]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Day"],["INPUT",{"__playwright_value_":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Month"],["INPUT",{"__playwright_value_":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],["DIV",{},["LABEL",{"class":"block text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1.5"},"Year"],["INPUT",{"__playwright_value_":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],["P",{"class":"text-xs text-gray-400"},"Valid years: ","1916"," – ","2020"]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed","disabled":""},"Confirm"]]],[[3,343]]]],[[8,1]],[[17,35]],[[5,3]],[[17,53]]]]],[[26,52]]]]]]]]]],[[39,304]],[[39,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12973.097,"wallTime":1784630673399,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@188","startTime":12974.058,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"DD\"i]","strict":true,"value":"15","timeout":15000},"stepId":"pw:api@47","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@188"} +{"type":"frame-snapshot","snapshot":{"callId":"call@188","snapshotName":"before@call@188","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[27,27]],["BODY",{"class":"font-sans antialiased"},[[30,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[40,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[30,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[27,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[27,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[12,1]],["DIV",{},[[18,5]],["DIV",{},[[3,0]],[[4,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},["DIV",{"class":"flex items-center justify-between px-5 py-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"flex items-center gap-3"},[[4,2]],["BUTTON",{"type":"button","class":"text-xs text-gray-500 font-medium hover:underline"},[[1,0]]]],[[4,15]]],[[1,22]],[[1,25]]],[[4,343]]]],[[9,1]],[[18,35]],[[6,3]],[[18,53]]]]],[[27,52]]]]]]]]]],[[40,304]],[[40,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12974.978,"wallTime":1784630673401,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@188","time":12975.12,"message":"waiting for getByPlaceholder('DD')"} +{"type":"log","callId":"call@188","time":12975.866,"message":" locator resolved to "} +{"type":"log","callId":"call@188","time":12976.116,"message":" fill(\"15\")"} +{"type":"log","callId":"call@188","time":12976.118,"message":"attempting fill action"} +{"type":"input","callId":"call@188","inputSnapshot":"input@call@188"} +{"type":"frame-snapshot","snapshot":{"callId":"call@188","snapshotName":"input@call@188","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[28,27]],["BODY",{"class":"font-sans antialiased"},[[31,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[41,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[31,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[28,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[28,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[13,1]],["DIV",{},[[19,5]],["DIV",{},[[4,0]],[[5,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[1,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[2,5]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[2,11]],[[2,15]]],[[2,21]]],[[2,25]]],[[5,343]]]],[[10,1]],[[19,35]],[[7,3]],[[19,53]]]]],[[28,52]]]]]]]]]],[[41,304]],[[41,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12976.802,"wallTime":1784630673403,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@188","time":12976.882,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@188","endTime":12979.781,"afterSnapshot":"after@call@188"} +{"type":"frame-snapshot","snapshot":{"callId":"call@188","snapshotName":"after@call@188","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[29,27]],["BODY",{"class":"font-sans antialiased"},[[32,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[42,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[32,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[29,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[29,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[14,1]],["DIV",{},[[20,5]],["DIV",{},[[5,0]],[[6,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[2,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[3,5]],["INPUT",{"__playwright_value_":"15","__playwright_target__":"","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[3,11]],[[3,15]]],[[3,21]]],[[3,25]]],[[6,343]]]],[[11,1]],[[20,35]],[[8,3]],[[20,53]]]]],[[29,52]]]]]]]]]],[[42,304]],[[42,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12980.54,"wallTime":1784630673407,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@190","startTime":12981.241,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"MM\"i]","strict":true,"value":"6","timeout":15000},"stepId":"pw:api@48","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@190"} +{"type":"frame-snapshot","snapshot":{"callId":"call@190","snapshotName":"before@call@190","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[30,27]],["BODY",{"class":"font-sans antialiased"},[[33,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[43,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[33,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[30,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[30,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[15,1]],["DIV",{},[[21,5]],["DIV",{},[[6,0]],[[7,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[3,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[4,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[4,11]],[[4,15]]],[[4,21]]],[[4,25]]],[[7,343]]]],[[12,1]],[[21,35]],[[9,3]],[[21,53]]]]],[[30,52]]]]]]]]]],[[43,304]],[[43,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12981.828,"wallTime":1784630673408,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@190","time":12981.928,"message":"waiting for getByPlaceholder('MM')"} +{"type":"log","callId":"call@190","time":12982.562,"message":" locator resolved to "} +{"type":"log","callId":"call@190","time":12982.848,"message":" fill(\"6\")"} +{"type":"log","callId":"call@190","time":12982.851,"message":"attempting fill action"} +{"type":"input","callId":"call@190","inputSnapshot":"input@call@190"} +{"type":"frame-snapshot","snapshot":{"callId":"call@190","snapshotName":"input@call@190","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[31,27]],["BODY",{"class":"font-sans antialiased"},[[34,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[44,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[34,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[31,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[31,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[16,1]],["DIV",{},[[22,5]],["DIV",{},[[7,0]],[[8,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[4,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[5,9]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[5,15]]],[[5,21]]],[[5,25]]],[[8,343]]]],[[13,1]],[[22,35]],[[10,3]],[[22,53]]]]],[[31,52]]]]]]]]]],[[44,304]],[[44,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12984.152,"wallTime":1784630673410,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@190","time":12984.199,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@190","endTime":12986.156,"afterSnapshot":"after@call@190"} +{"type":"frame-snapshot","snapshot":{"callId":"call@190","snapshotName":"after@call@190","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[32,27]],["BODY",{"class":"font-sans antialiased"},[[35,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[45,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[35,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[32,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[32,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[17,1]],["DIV",{},[[23,5]],["DIV",{},[[8,0]],[[9,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[5,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},["DIV",{},[[6,5]],["INPUT",{"__playwright_value_":"15","min":"1","max":"31","placeholder":"DD","class":"input-field text-center text-lg font-semibold","type":"number","value":"15"}]],["DIV",{},[[6,9]],["INPUT",{"__playwright_value_":"6","__playwright_target__":"","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[6,15]]],[[6,21]]],[[6,25]]],[[9,343]]]],[[14,1]],[[23,35]],[[11,3]],[[23,53]]]]],[[32,52]]]]]]]]]],[[45,304]],[[45,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12986.938,"wallTime":1784630673413,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@192","startTime":12987.755,"class":"Frame","method":"fill","params":{"selector":"internal:attr=[placeholder=\"YYYY\"i]","strict":true,"value":"1990","timeout":15000},"stepId":"pw:api@49","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@192"} +{"type":"frame-snapshot","snapshot":{"callId":"call@192","snapshotName":"before@call@192","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[33,27]],["BODY",{"class":"font-sans antialiased"},[[36,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[46,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[36,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[33,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[33,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[18,1]],["DIV",{},[[24,5]],["DIV",{},[[9,0]],[[10,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[6,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[1,1]],["DIV",{},[[7,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]],[[7,15]]],[[7,21]]],[[7,25]]],[[10,343]]]],[[15,1]],[[24,35]],[[12,3]],[[24,53]]]]],[[33,52]]]]]]]]]],[[46,304]],[[46,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12988.767,"wallTime":1784630673415,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@192","time":12988.882,"message":"waiting for getByPlaceholder('YYYY')"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673416.jpeg","width":1280,"height":720,"timestamp":12989.855,"frameSwapWallTime":1784630673414.712} +{"type":"log","callId":"call@192","time":12989.953,"message":" locator resolved to "} +{"type":"log","callId":"call@192","time":12990.261,"message":" fill(\"1990\")"} +{"type":"log","callId":"call@192","time":12990.264,"message":"attempting fill action"} +{"type":"input","callId":"call@192","inputSnapshot":"input@call@192"} +{"type":"frame-snapshot","snapshot":{"callId":"call@192","snapshotName":"input@call@192","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[34,27]],["BODY",{"class":"font-sans antialiased"},[[37,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[47,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[37,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[34,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[34,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[19,1]],["DIV",{},[[25,5]],["DIV",{},[[10,0]],[[11,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[7,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[2,1]],[[1,1]],["DIV",{},[[8,13]],["INPUT",{"__playwright_value_":"","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[8,21]]],[[8,25]]],[[11,343]]]],[[16,1]],[[25,35]],[[13,3]],[[25,53]]]]],[[34,52]]]]]]]]]],[[47,304]],[[47,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12990.931,"wallTime":1784630673417,"collectionTime":0.4000000022351742,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@192","time":12990.99,"message":" waiting for element to be visible, enabled and editable"} +{"type":"after","callId":"call@192","endTime":12993.709,"afterSnapshot":"after@call@192"} +{"type":"frame-snapshot","snapshot":{"callId":"call@192","snapshotName":"after@call@192","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[35,27]],["BODY",{"class":"font-sans antialiased"},[[38,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[48,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[38,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[35,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[35,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[20,1]],["DIV",{},[[26,5]],["DIV",{},[[11,0]],[[12,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[8,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[3,1]],["DIV",{},[[9,9]],["INPUT",{"__playwright_value_":"6","min":"1","max":"12","placeholder":"MM","class":"input-field text-center text-lg font-semibold","type":"number","value":"6"}]],["DIV",{},[[9,13]],["INPUT",{"__playwright_value_":"1990","__playwright_target__":"","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[9,21]]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},"Confirm — 15/6/1990"]]],[[12,343]]]],[[17,1]],[[26,35]],[[14,3]],[[26,53]]]]],[[35,52]]]]]]]]]],[[48,304]],[[48,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12994.48,"wallTime":1784630673420,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@194","startTime":12995.339,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i]","strict":true,"timeout":15000},"stepId":"pw:api@50","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@194"} +{"type":"frame-snapshot","snapshot":{"callId":"call@194","snapshotName":"before@call@194","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[36,27]],["BODY",{"class":"font-sans antialiased"},[[39,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[49,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[39,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[36,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[36,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[21,1]],["DIV",{},[[27,5]],["DIV",{},[[12,0]],[[13,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[9,2]],["DIV",{"class":"px-5 py-5 space-y-4"},["DIV",{"class":"grid grid-cols-3 gap-3"},[[4,1]],[[1,1]],["DIV",{},[[10,13]],["INPUT",{"__playwright_value_":"1990","min":"1916","max":"2020","placeholder":"YYYY","class":"input-field text-center text-lg font-semibold","type":"number","value":""}]]],[[10,21]]],[[1,8]]],[[13,343]]]],[[18,1]],[[27,35]],[[15,3]],[[27,53]]]]],[[36,52]]]]]]]]]],[[49,304]],[[49,316]]]],"viewport":{"width":1280,"height":720},"timestamp":12996.5,"wallTime":1784630673422,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@194","time":12996.665,"message":"waiting for getByRole('button', { name: /^confirm/i })"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673424.jpeg","width":1280,"height":720,"timestamp":12997.909,"frameSwapWallTime":1784630673422.69} +{"type":"log","callId":"call@194","time":12998.26,"message":" locator resolved to "} +{"type":"log","callId":"call@194","time":12998.528,"message":"attempting click action"} +{"type":"log","callId":"call@194","time":12998.539,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673432.jpeg","width":1280,"height":720,"timestamp":13005.918,"frameSwapWallTime":1784630673430.6619} +{"type":"log","callId":"call@194","time":13008.443,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@194","time":13008.449,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@194","time":13008.942,"message":" done scrolling"} +{"type":"input","callId":"call@194","point":{"x":1163.4,"y":668},"inputSnapshot":"input@call@194"} +{"type":"frame-snapshot","snapshot":{"callId":"call@194","snapshotName":"input@call@194","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[37,27]],["BODY",{"class":"font-sans antialiased"},[[40,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[50,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[40,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[37,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[37,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[22,1]],["DIV",{},[[28,5]],["DIV",{},[[13,0]],[[14,0]],["DIV",{"class":"fixed inset-x-0 bottom-0 z-[100] bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running dob-slide-up;"},[[10,2]],[[1,3]],["DIV",{"class":"px-5 pb-8 pt-3 flex justify-end"},["BUTTON",{"__playwright_target__":"","type":"button","class":"px-6 py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] text-white font-bold text-sm rounded-xl transition-all shadow disabled:opacity-40 disabled:cursor-not-allowed"},[[2,6]]]]],[[14,343]]]],[[19,1]],[[28,35]],[[16,3]],[[28,53]]]]],[[37,52]]]]]]]]]],[[50,304]],[[50,316]]]],"viewport":{"width":1280,"height":720},"timestamp":13010.169,"wallTime":1784630673436,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@194","time":13010.805,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673441.jpeg","width":1280,"height":720,"timestamp":13014.914,"frameSwapWallTime":1784630673439.79} +{"type":"log","callId":"call@194","time":13015.233,"message":" click action done"} +{"type":"log","callId":"call@194","time":13015.236,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@194","time":13015.543,"message":" navigations have finished"} +{"type":"after","callId":"call@194","endTime":13015.595,"afterSnapshot":"after@call@194"} +{"type":"frame-snapshot","snapshot":{"callId":"call@194","snapshotName":"after@call@194","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[38,27]],["BODY",{"class":"font-sans antialiased"},[[41,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[51,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[41,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[38,29]],["FORM",{"class":"space-y-6"},["DIV",{"class":"card"},[[38,39]],["DIV",{"class":"space-y-4"},["DIV",{"class":"grid md:grid-cols-2 gap-4"},[[23,1]],["DIV",{},[[29,5]],["DIV",{},["BUTTON",{"type":"button","class":"input-field w-full text-left flex items-center justify-between "},["SPAN",{"class":"text-gray-900 dark:text-white text-sm"},"June 15, 1990"],[[29,18]]]]],[[20,1]],[[29,35]],[[17,3]],[[29,53]]]]],[[38,52]]]]]]]]]],[[51,304]],[[51,316]]]],"viewport":{"width":1280,"height":720},"timestamp":13016.281,"wallTime":1784630673442,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@196","startTime":13017.043,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/continue to seat selection/i]","strict":true,"timeout":15000},"stepId":"pw:api@51","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@196"} +{"type":"frame-snapshot","snapshot":{"callId":"call@196","snapshotName":"before@call@196","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":[[1,17]],"viewport":{"width":1280,"height":720},"timestamp":13017.729,"wallTime":1784630673444,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@196","time":13017.872,"message":"waiting for getByRole('button', { name: /continue to seat selection/i })"} +{"type":"log","callId":"call@196","time":13019.075,"message":" locator resolved to "} +{"type":"log","callId":"call@196","time":13019.348,"message":"attempting click action"} +{"type":"log","callId":"call@196","time":13019.361,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673456.jpeg","width":1280,"height":720,"timestamp":13030.295,"frameSwapWallTime":1784630673454.924} +{"type":"log","callId":"call@196","time":13033.107,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@196","time":13033.113,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@196","time":13033.378,"message":" done scrolling"} +{"type":"input","callId":"call@196","point":{"x":1021,"y":507},"inputSnapshot":"input@call@196"} +{"type":"frame-snapshot","snapshot":{"callId":"call@196","snapshotName":"input@call@196","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[40,27]],["BODY",{"class":"font-sans antialiased"},[[43,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[53,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[43,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[40,29]],["FORM",{"class":"space-y-6"},[[2,7]],["DIV",{"class":"flex gap-4"},[[40,49]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},[[40,50]]]]]]]]]]]],[[53,304]],[[53,316]]]],"viewport":{"width":1280,"height":720},"timestamp":13034.412,"wallTime":1784630673460,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@196","time":13034.951,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673465.jpeg","width":1280,"height":720,"timestamp":13038.392,"frameSwapWallTime":1784630673462.98} +{"type":"log","callId":"call@196","time":13038.96,"message":" click action done"} +{"type":"log","callId":"call@196","time":13038.963,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@196","time":13039.332,"message":" navigations have finished"} +{"type":"after","callId":"call@196","endTime":13039.393,"afterSnapshot":"after@call@196"} +{"type":"frame-snapshot","snapshot":{"callId":"call@196","snapshotName":"after@call@196","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[41,27]],["BODY",{"class":"font-sans antialiased"},[[44,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[54,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[44,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[41,29]],["FORM",{"class":"space-y-6"},[[3,7]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2","disabled":""},[[41,47]],[[41,48]]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2","disabled":""},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]]]]]]]]],[[54,304]],[[54,316]]]],"viewport":{"width":1280,"height":720},"timestamp":13040.077,"wallTime":1784630673466,"collectionTime":0.3999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@198","startTime":13040.856,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"8c66d0fed95a2c2b4163cfa36058e4b8","phase":"before","event":""},"stepId":"pw:api@52","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"log","callId":"call@198","time":13040.899,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673473.jpeg","width":1280,"height":720,"timestamp":13046.57,"frameSwapWallTime":1784630673471.176} +{"type":"log","callId":"call@166","time":13054.93,"message":" locator resolved to visible "} +{"type":"after","callId":"call@166","endTime":13054.983,"result":{},"afterSnapshot":"after@call@166"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673482.jpeg","width":1280,"height":720,"timestamp":13055.411,"frameSwapWallTime":1784630673480.009} +{"type":"frame-snapshot","snapshot":{"callId":"call@166","snapshotName":"after@call@166","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/passengers","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[42,27]],["BODY",{"class":"font-sans antialiased"},[[45,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[55,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[45,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900 py-12"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[42,29]],["FORM",{"class":"space-y-6"},[[4,7]],["DIV",{"class":"flex gap-4"},["BUTTON",{"type":"button","class":"btn-secondary flex-1 flex items-center justify-center gap-2"},[[42,47]],[[42,48]]],["BUTTON",{"__playwright_target__":"","type":"submit","class":"btn-primary flex-1 flex items-center justify-center gap-2"},"Continue to seat selection"]]]]]]]]]],[[55,304]],[[55,316]]]],"viewport":{"width":1280,"height":720},"timestamp":13056.937,"wallTime":1784630673483,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673497.jpeg","width":1280,"height":720,"timestamp":13070.889,"frameSwapWallTime":1784630673495.562} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673506.jpeg","width":1280,"height":720,"timestamp":13079.994,"frameSwapWallTime":1784630673504.709} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673514.jpeg","width":1280,"height":720,"timestamp":13087.956,"frameSwapWallTime":1784630673512.627} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673523.jpeg","width":1280,"height":720,"timestamp":13096.553,"frameSwapWallTime":1784630673521.2769} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673539.jpeg","width":1280,"height":720,"timestamp":13113.06,"frameSwapWallTime":1784630673537.745} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673547.jpeg","width":1280,"height":720,"timestamp":13120.456,"frameSwapWallTime":1784630673545.187} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673556.jpeg","width":1280,"height":720,"timestamp":13129.753,"frameSwapWallTime":1784630673554.455} +{"type":"console","messageType":"warning","text":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element: JSHandle@node","args":[{"preview":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:","value":"Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element:"},{"preview":"JSHandle@node"}],"location":{"url":"webpack-internal:///(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js","lineNumber":109,"columnNumber":20},"time":13191.628,"pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673621.jpeg","width":1280,"height":720,"timestamp":13194.399,"frameSwapWallTime":1784630673597.782} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673621.jpeg","width":1280,"height":720,"timestamp":13194.479,"frameSwapWallTime":1784630673599.55} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673621.jpeg","width":1280,"height":720,"timestamp":13194.528,"frameSwapWallTime":1784630673599.173} +{"type":"log","callId":"call@198","time":13194.668,"message":" navigated to \"http://localhost:5174/booking/seats\""} +{"type":"after","callId":"call@198","endTime":13194.682} +{"type":"before","callId":"call@203","startTime":13194.743,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"516f0405ee76e984c8f4c95f168bfa3e","phase":"before","event":"response"},"stepId":"pw:api@53","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"before","callId":"call@206","startTime":13194.886,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/auto assign seats/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@54","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@206"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673628.jpeg","width":1280,"height":720,"timestamp":13201.873,"frameSwapWallTime":1784630673626.742} +{"type":"frame-snapshot","snapshot":{"callId":"call@206","snapshotName":"before@call@206","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[56,0]],[[56,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[56,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[56,36]],[[56,43]],[[56,47]],[[56,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[56,55]],["OL",{"class":"space-y-1"},[[56,61]],[[46,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[56,69]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[56,72]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[56,74]]]],[[56,81]],[[56,86]],[[56,91]]]]],[[56,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[56,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[56,132]],[[46,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[56,148]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[56,151]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[56,152]]]],[[56,155]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[56,157]]]],[[56,168]],[[56,177]],[[56,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"0","/","1"," seats selected"],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 text-gray-400 transition-transform "},["path",{"d":"m6 9 6 6 6-6"}]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"]]],["STYLE",{},"@keyframes seats-slide-up{from{transform:translateY(100%)}to{transform:translateY(0)}}"],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},["BUTTON",{"class":"flex items-center gap-1.5 text-sm text-gray-600 dark:text-gray-400 hover:text-primary transition-colors font-medium"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["DIV",{"class":"text-center"},["H1",{"class":"text-base font-bold text-gray-900 dark:text-white"},"Select Seats"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Now selecting: ","Adult 1"]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"0","/","1"]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"flex justify-end"},["BUTTON",{"type":"button","class":"flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 text-sm font-semibold text-gray-700 dark:text-gray-300 hover:border-primary hover:text-primary transition-colors shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-tram-front w-4 h-4"},["rect",{"width":"16","height":"16","x":"4","y":"3","rx":"2"}],["path",{"d":"M4 11h16"}],["path",{"d":"M12 3v8"}],["path",{"d":"m8 19-2 3"}],["path",{"d":"m18 22-2-3"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M16 15h.01"}]],"Preview Train Coach"]],["DIV",{"class":"flex flex-col items-stretch"},["DIV",{"class":"px-4"},["DIV",{"class":"relative bg-[rgb(20,113,76)] rounded-t-2xl px-5 pt-4 pb-3 text-white overflow-hidden"},["DIV",{"class":"absolute top-0 left-0 right-0 h-1 bg-white/20"}],["DIV",{"class":"flex items-center justify-between"},["DIV",{},["P",{"class":"text-[10px] font-bold uppercase tracking-widest text-white/60"},"EDR Express"],["P",{"class":"text-sm font-bold mt-0.5"},"1"," Coach"]],["DIV",{"class":"flex gap-2"},["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}],["DIV",{"class":"w-8 h-5 bg-white/15 border border-white/30 rounded-sm"}]]],["DIV",{"class":"mt-3 flex items-center gap-2"},["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}],["DIV",{"class":"flex-1 h-1 bg-white/20 rounded-full"}],["DIV",{"class":"w-5 h-5 bg-yellow-300/80 rounded-full border-2 border-yellow-200/60 shadow-lg shadow-yellow-300/40"}]]],["DIV",{"class":"h-3 bg-[rgb(15,85,57)] mx-3 rounded-b-lg"}]],["DIV",{},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}],["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}]]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-gray-200 dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-600"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-900/30"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-gray-100 dark:bg-gray-700 text-gray-600 dark:text-gray-300"},"1"],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-gray-900 dark:text-white"},"UI-C1"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400 mt-0.5"},"47"," of ","48"," seats available"]]],["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"hidden sm:flex items-end gap-0.5 h-5"},["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}],["DIV",{"class":"w-1 rounded-sm transition-colors h-full bg-green-400"}]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 text-gray-400"},["path",{"d":"m6 9 6 6 6-6"}]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-gray-200 dark:bg-gray-700"}]]],["DIV",{"class":"px-4"},["DIV",{"class":"flex justify-center py-0.5"},["DIV",{"class":"flex flex-col items-center gap-px"},["DIV",{"class":"w-7 h-2 bg-gray-300 dark:bg-gray-600 rounded-sm"}],["DIV",{"class":"w-3 h-3 bg-gray-400 dark:bg-gray-500 rounded-sm"}]]],["DIV",{"class":"h-4 bg-gray-200 dark:bg-gray-700 rounded-b-2xl"}]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-amber-100 text-amber-700 dark:bg-amber-900/30 dark:text-amber-400"},"0","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"Selecting seat for Adult 1 (1 of 1)"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 0%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)]/20 text-[rgb(20,113,76)] ring-2 ring-[rgb(20,113,76)]"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"],["SPAN",{"class":"text-[10px] font-semibold text-[rgb(20,113,76)] uppercase tracking-wide"},"Now selecting"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-gray-400"},"Not Assigned"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Continue"],["BUTTON",{"class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],["DIV",{"class":"lg:hidden h-24"}]]]]]]]],[[56,304]],[[56,316]]]],"viewport":{"width":1280,"height":720},"timestamp":13205.014,"wallTime":1784630673630,"collectionTime":1.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@206","time":13205.319,"message":"waiting for getByRole('button', { name: /auto assign seats/i }).first()"} +{"type":"log","callId":"call@206","time":13207.89,"message":" locator resolved to "} +{"type":"log","callId":"call@206","time":13208.563,"message":"attempting click action"} +{"type":"log","callId":"call@206","time":13208.581,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673644.jpeg","width":1280,"height":720,"timestamp":13217.848,"frameSwapWallTime":1784630673642.626} +{"type":"log","callId":"call@206","time":13225.437,"message":" element is not stable"} +{"type":"log","callId":"call@206","time":13225.449,"message":"retrying click action"} +{"type":"log","callId":"call@206","time":13225.469,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673653.jpeg","width":1280,"height":720,"timestamp":13226.729,"frameSwapWallTime":1784630673651.238} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673660.jpeg","width":1280,"height":720,"timestamp":13233.917,"frameSwapWallTime":1784630673658.694} +{"type":"log","callId":"call@206","time":13241.016,"message":" element is not stable"} +{"type":"log","callId":"call@206","time":13241.024,"message":"retrying click action"} +{"type":"log","callId":"call@206","time":13241.025,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673676.jpeg","width":1280,"height":720,"timestamp":13249.67,"frameSwapWallTime":1784630673674.339} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673684.jpeg","width":1280,"height":720,"timestamp":13257.755,"frameSwapWallTime":1784630673682.638} +{"type":"log","callId":"call@206","time":13261.938,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673693.jpeg","width":1280,"height":720,"timestamp":13267.018,"frameSwapWallTime":1784630673691.803} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673701.jpeg","width":1280,"height":720,"timestamp":13275.019,"frameSwapWallTime":1784630673699.883} +{"type":"log","callId":"call@206","time":13275.124,"message":" element is not stable"} +{"type":"log","callId":"call@206","time":13275.128,"message":"retrying click action"} +{"type":"log","callId":"call@206","time":13275.162,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673718.jpeg","width":1280,"height":720,"timestamp":13291.72,"frameSwapWallTime":1784630673716.395} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673726.jpeg","width":1280,"height":720,"timestamp":13300.23,"frameSwapWallTime":1784630673724.938} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673735.jpeg","width":1280,"height":720,"timestamp":13308.527,"frameSwapWallTime":1784630673733.083} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673743.jpeg","width":1280,"height":720,"timestamp":13316.838,"frameSwapWallTime":1784630673741.517} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673759.jpeg","width":1280,"height":720,"timestamp":13333.252,"frameSwapWallTime":1784630673758.0718} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673768.jpeg","width":1280,"height":720,"timestamp":13341.45,"frameSwapWallTime":1784630673766.204} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673776.jpeg","width":1280,"height":720,"timestamp":13349.674,"frameSwapWallTime":1784630673774.521} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673792.jpeg","width":1280,"height":720,"timestamp":13366.247,"frameSwapWallTime":1784630673791.029} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673801.jpeg","width":1280,"height":720,"timestamp":13374.567,"frameSwapWallTime":1784630673799.416} +{"type":"log","callId":"call@206","time":13375.816,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673810.jpeg","width":1280,"height":720,"timestamp":13383.502,"frameSwapWallTime":1784630673808.258} +{"type":"log","callId":"call@206","time":13391.581,"message":" element is not stable"} +{"type":"log","callId":"call@206","time":13391.592,"message":"retrying click action"} +{"type":"log","callId":"call@206","time":13391.593,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673827.jpeg","width":1280,"height":720,"timestamp":13400.37,"frameSwapWallTime":1784630673824.887} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673835.jpeg","width":1280,"height":720,"timestamp":13408.653,"frameSwapWallTime":1784630673833.525} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673843.jpeg","width":1280,"height":720,"timestamp":13416.526,"frameSwapWallTime":1784630673841.305} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673859.jpeg","width":1280,"height":720,"timestamp":13433.173,"frameSwapWallTime":1784630673857.907} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673868.jpeg","width":1280,"height":720,"timestamp":13441.75,"frameSwapWallTime":1784630673866.3682} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673876.jpeg","width":1280,"height":720,"timestamp":13450.242,"frameSwapWallTime":1784630673874.886} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673885.jpeg","width":1280,"height":720,"timestamp":13458.414,"frameSwapWallTime":1784630673883.129} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673901.jpeg","width":1280,"height":720,"timestamp":13474.62,"frameSwapWallTime":1784630673899.3499} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673910.jpeg","width":1280,"height":720,"timestamp":13483.452,"frameSwapWallTime":1784630673908.133} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673918.jpeg","width":1280,"height":720,"timestamp":13491.781,"frameSwapWallTime":1784630673916.416} +{"type":"log","callId":"call@206","time":13492.789,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673927.jpeg","width":1280,"height":720,"timestamp":13500.384,"frameSwapWallTime":1784630673925.015} +{"type":"log","callId":"call@206","time":13508.241,"message":" element is not stable"} +{"type":"log","callId":"call@206","time":13508.245,"message":"retrying click action"} +{"type":"log","callId":"call@206","time":13508.246,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673943.jpeg","width":1280,"height":720,"timestamp":13516.979,"frameSwapWallTime":1784630673941.585} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673951.jpeg","width":1280,"height":720,"timestamp":13525.304,"frameSwapWallTime":1784630673949.839} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673956.jpeg","width":1280,"height":720,"timestamp":13530.275,"frameSwapWallTime":1784630673954.988} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673972.jpeg","width":1280,"height":720,"timestamp":13546.056,"frameSwapWallTime":1784630673970.929} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673980.jpeg","width":1280,"height":720,"timestamp":13553.707,"frameSwapWallTime":1784630673978.5918} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673989.jpeg","width":1280,"height":720,"timestamp":13562.677,"frameSwapWallTime":1784630673987.453} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673999.jpeg","width":1280,"height":720,"timestamp":13573.051,"frameSwapWallTime":1784630673997.905} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674009.jpeg","width":1280,"height":720,"timestamp":13582.504,"frameSwapWallTime":1784630674007.262} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674017.jpeg","width":1280,"height":720,"timestamp":13591.219,"frameSwapWallTime":1784630674016.0261} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674034.jpeg","width":1280,"height":720,"timestamp":13608.231,"frameSwapWallTime":1784630674033.021} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674043.jpeg","width":1280,"height":720,"timestamp":13616.626,"frameSwapWallTime":1784630674041.452} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674051.jpeg","width":1280,"height":720,"timestamp":13624.913,"frameSwapWallTime":1784630674049.772} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674060.jpeg","width":1280,"height":720,"timestamp":13633.377,"frameSwapWallTime":1784630674058.1418} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674076.jpeg","width":1280,"height":720,"timestamp":13650.057,"frameSwapWallTime":1784630674074.868} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674085.jpeg","width":1280,"height":720,"timestamp":13658.341,"frameSwapWallTime":1784630674083.1611} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674093.jpeg","width":1280,"height":720,"timestamp":13667.113,"frameSwapWallTime":1784630674091.78} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674101.jpeg","width":1280,"height":720,"timestamp":13675.264,"frameSwapWallTime":1784630674100.028} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674118.jpeg","width":1280,"height":720,"timestamp":13691.905,"frameSwapWallTime":1784630674116.6338} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674126.jpeg","width":1280,"height":720,"timestamp":13700.215,"frameSwapWallTime":1784630674124.9958} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674335.jpeg","width":1280,"height":720,"timestamp":13908.752,"frameSwapWallTime":1784630674333.2761} +{"type":"log","callId":"call@206","time":14009.203,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@206","time":14020.628,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@206","time":14020.635,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@206","time":14021.157,"message":" done scrolling"} +{"type":"input","callId":"call@206","point":{"x":1105.32,"y":333},"inputSnapshot":"input@call@206"} +{"type":"frame-snapshot","snapshot":{"callId":"call@206","snapshotName":"input@call@206","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[1,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[57,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},[[1,68]],[[1,70]],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},[[1,87]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},[[1,162]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},[[1,170]],[[1,172]],[[1,174]],[[1,187]],[[1,189]],["BUTTON",{"__playwright_target__":"","class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},[[1,190]]]]]],[[1,195]]]]]]]]],[[57,304]],[[57,316]]]],"viewport":{"width":1280,"height":720},"timestamp":14022.399,"wallTime":1784630674448,"collectionTime":0.5999999977648258,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@206","time":14023.297,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674452.jpeg","width":1280,"height":720,"timestamp":14025.435,"frameSwapWallTime":1784630674450.104} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674460.jpeg","width":1280,"height":720,"timestamp":14033.569,"frameSwapWallTime":1784630674458.211} +{"type":"log","callId":"call@206","time":14040.074,"message":" click action done"} +{"type":"log","callId":"call@206","time":14040.083,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@206","time":14040.782,"message":" navigations have finished"} +{"type":"after","callId":"call@206","endTime":14040.869,"afterSnapshot":"after@call@206"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674468.jpeg","width":1280,"height":720,"timestamp":14042.189,"frameSwapWallTime":1784630674466.926} +{"type":"frame-snapshot","snapshot":{"callId":"call@206","snapshotName":"after@call@206","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/seats","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[58,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"fixed inset-x-0 bottom-0 z-50 lg:hidden bg-white dark:bg-gray-900 rounded-t-2xl shadow-2xl overflow-hidden flex flex-col ","style":"animation: 0.25s cubic-bezier(0.32, 0.72, 0, 1) 0s 1 normal none running seats-slide-up;"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between px-5 py-2.5 flex-shrink-0","aria-label":"Expand seat selection summary"},["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-white"},"1",[[2,58]],[[2,59]],[[2,60]]],[[2,63]]],["DIV",{"class":"px-5 pb-4 pt-2 flex-shrink-0 border-t border-gray-100 dark:border-gray-800"},["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."]]],[[2,70]],["DIV",{"class":"min-h-screen bg-gray-50 dark:bg-gray-900"},["DIV",{"class":"bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-800 sticky top-0 z-30"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto flex items-center justify-between h-14"},[[2,74]],["DIV",{"class":"text-center"},[[2,76]]],["DIV",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"1",[[2,82]],[[2,83]]]]]],["DIV",{"class":"container mx-auto px-4 py-5"},["DIV",{"class":"max-w-6xl mx-auto"},["DIV",{"class":"grid grid-cols-1 lg:grid-cols-3 gap-5"},["DIV",{"class":"lg:col-span-2 space-y-4"},[[2,98]],["DIV",{"class":"flex flex-col items-stretch"},[[2,117]],["DIV",{},[[2,122]],["DIV",{"class":"mx-4 border-2 overflow-hidden transition-all duration-200 border-[rgb(20,113,76)] shadow-lg shadow-[rgb(20,113,76)]/10"},["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}],["BUTTON",{"class":"w-full flex items-center justify-between px-4 py-3 transition-colors bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10"},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-9 h-9 rounded-lg flex items-center justify-center flex-shrink-0 font-bold text-sm transition-colors bg-[rgb(20,113,76)] text-white"},[[2,124]]],["DIV",{"class":"text-left"},["DIV",{"class":"font-semibold text-sm text-[rgb(20,113,76)]"},[[2,126]]],[[2,132]]]],["DIV",{"class":"flex items-center gap-3"},[[2,147]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-down w-4 h-4 transition-transform duration-200 flex-shrink-0 rotate-180 text-[rgb(20,113,76)]"},[[2,148]]]]],["DIV",{"class":"border-t border-gray-100 dark:border-gray-800 bg-white dark:bg-gray-800 p-4"},["DIV",{"class":"flex flex-wrap gap-3 mb-4"},["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-green-50 border border-green-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Available"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-blue-50 border-2 border-blue-500 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Selected"]],["DIV",{"class":"flex items-center gap-1.5"},["DIV",{"class":"w-4 h-4 bg-red-50 border border-red-300 rounded"}],["SPAN",{"class":"text-xs text-gray-600 dark:text-gray-400"},"Booked"]]],["DIV",{"class":"overflow-x-auto"},["DIV",{"class":"inline-block bg-gray-50 dark:bg-gray-700/30 rounded-xl p-4 border border-gray-200 dark:border-gray-700"},["DIV",{"class":"space-y-0"},["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"disabled":"","class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-gray-500 text-white cursor-not-allowed opacity-60","title":"Seat 1A - BOOKED - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-[rgb(20_113_76)] text-white shadow-md scale-105","title":"Seat 1B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 1C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 1D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"1D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"2D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 2D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 3D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"3D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"4D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 4D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 5D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"5D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"6D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 6D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 7D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"7D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"8D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 8D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 9D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"9D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"10D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 10D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11A - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11B - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11C - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 11D - AVAILABLE - Economy Regular"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"11D"]]]],["DIV",{},["DIV",{"class":"flex gap-3 justify-start text-xs text-muted-foreground mb-1"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12A"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12B"]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12C"],["DIV",{"class":"w-10 h-4 flex items-center justify-center text-xs font-bold leading-3 text-foreground"},"12D"]]],["DIV",{"class":"flex gap-3 justify-start"},["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12A - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12B - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]],["DIV",{"class":"flex gap-0.5"},["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12C - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]],["DIV",{"class":"flex flex-col items-center"},["BUTTON",{"class":"w-10 h-11 rounded flex items-center justify-center transition-all bg-green-500 hover:bg-green-600 text-white cursor-pointer hover:shadow-md","title":"Seat 12D - AVAILABLE - Economy Regular","style":"transform: scaleY(-1);"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-armchair w-7 h-7"},["path",{"d":"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{"d":"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{"d":"M5 18v2"}],["path",{"d":"M19 18v2"}]]]]]],["DIV",{"class":"h-3 border-b border-gray-200 dark:border-gray-700"}]]]]]],["DIV",{"class":"h-1.5 transition-colors duration-200 bg-[rgb(20,113,76)]"}]]],[[2,160]]]],["DIV",{"class":"hidden lg:block lg:col-span-1"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-2xl p-5 border border-gray-100 dark:border-gray-700 sticky top-20"},["DIV",{"class":"flex items-center justify-between mb-1"},["H3",{"class":"font-bold text-gray-900 dark:text-white"},"Selection Summary"],["SPAN",{"class":"text-xs font-semibold px-2 py-0.5 rounded-full bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400"},"1","/","1"," selected"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 mb-4"},"All seats selected — ready to continue"],["DIV",{"class":"h-1.5 bg-gray-100 dark:bg-gray-700 rounded-full mb-4 overflow-hidden"},["DIV",{"class":"h-full bg-[rgb(20,113,76)] rounded-full transition-all duration-300","style":"width: 100%;"}]],["DIV",{"class":"space-y-2 mb-5"},["BUTTON",{"type":"button","class":"w-full flex items-center justify-between py-2 px-2 rounded-lg border text-left transition-all border-[rgb(20,113,76)] bg-[rgb(20,113,76)]/5 dark:bg-[rgb(20,113,76)]/10 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/60"},["DIV",{"class":"flex items-center gap-2 min-w-0"},["DIV",{"class":"w-6 h-6 rounded-full flex items-center justify-center text-xs font-bold flex-shrink-0 bg-[rgb(20,113,76)] text-white"},"1"],["DIV",{"class":"min-w-0"},["SPAN",{"class":"text-sm text-gray-700 dark:text-gray-300 truncate block max-w-[120px]"},"Adult 1"]]],["DIV",{"class":"flex flex-col items-end flex-shrink-0"},["SPAN",{"class":"text-sm font-semibold text-[rgb(20,113,76)]"},"Seat 1B"]]]],["BUTTON",{"disabled":"","class":"w-full py-2.5 bg-[rgb(20,113,76)] hover:bg-[rgb(16,89,60)] disabled:opacity-40 disabled:cursor-not-allowed text-white font-bold text-sm rounded-xl transition-all shadow-lg"},"Holding seats..."],["BUTTON",{"disabled":"","class":"w-full mt-2 py-2.5 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 disabled:opacity-40 text-gray-700 dark:text-gray-300 font-semibold text-sm rounded-xl transition-all"},"Auto Assign Seats"]]]],[[2,195]]]]]]]]],[[58,304]],[[58,316]]]],"viewport":{"width":1280,"height":720},"timestamp":14044.272,"wallTime":1784630674469,"collectionTime":1.699999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@208","startTime":14045.575,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"5104a83f6edb94ebebe485b131d51795","phase":"before","event":""},"stepId":"pw:api@55","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"log","callId":"call@208","time":14045.605,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674478.jpeg","width":1280,"height":720,"timestamp":14051.386,"frameSwapWallTime":1784630674475.846} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674494.jpeg","width":1280,"height":720,"timestamp":14067.995,"frameSwapWallTime":1784630674492.4368} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674502.jpeg","width":1280,"height":720,"timestamp":14076.145,"frameSwapWallTime":1784630674500.655} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674510.jpeg","width":1280,"height":720,"timestamp":14084.145,"frameSwapWallTime":1784630674508.676} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674519.jpeg","width":1280,"height":720,"timestamp":14092.861,"frameSwapWallTime":1784630674517.3298} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674535.jpeg","width":1280,"height":720,"timestamp":14108.879,"frameSwapWallTime":1784630674533.37} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674544.jpeg","width":1280,"height":720,"timestamp":14117.683,"frameSwapWallTime":1784630674542.296} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674552.jpeg","width":1280,"height":720,"timestamp":14125.879,"frameSwapWallTime":1784630674550.3582} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674560.jpeg","width":1280,"height":720,"timestamp":14133.984,"frameSwapWallTime":1784630674558.568} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674606.jpeg","width":1280,"height":720,"timestamp":14180.195,"frameSwapWallTime":1784630674599.165} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674607.jpeg","width":1280,"height":720,"timestamp":14180.812,"frameSwapWallTime":1784630674600.2842} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674607.jpeg","width":1280,"height":720,"timestamp":14180.894,"frameSwapWallTime":1784630674600.686} +{"type":"log","callId":"call@208","time":14181.599,"message":" navigated to \"http://localhost:5174/booking/review\""} +{"type":"after","callId":"call@208","endTime":14181.619} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674623.jpeg","width":1280,"height":720,"timestamp":14196.859,"frameSwapWallTime":1784630674621.614} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674632.jpeg","width":1280,"height":720,"timestamp":14205.695,"frameSwapWallTime":1784630674629.605} +{"type":"after","callId":"call@203","endTime":14205.831} +{"type":"before","callId":"call@216","startTime":14205.872,"class":"Response","method":"body","params":{},"stepId":"pw:api@56","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"after","callId":"call@216","endTime":14206.229,"result":{"binary":""}} +{"type":"before","callId":"call@218","startTime":14207.01,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"860e31b74fb3a4e462298a9611309bea","phase":"before","event":"response"},"stepId":"pw:api@57","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"before","callId":"call@221","startTime":14207.053,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^confirm/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@58","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@221"} +{"type":"frame-snapshot","snapshot":{"callId":"call@221","snapshotName":"before@call@221","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[59,0]],[[59,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[59,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[59,36]],[[59,43]],[[59,47]],[[59,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[59,55]],["OL",{"class":"space-y-1"},[[59,61]],[[49,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[59,74]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[59,77]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[59,79]]]],[[59,86]],[[59,91]]]]],[[59,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[59,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[59,132]],[[49,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[59,157]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[59,160]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[59,161]]]],[[59,164]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[59,166]]]],[[59,177]],[[59,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-28 lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Review your booking"],["DIV",{"class":"bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-3 mb-4 flex items-center gap-2"},["SPAN",{"class":"text-yellow-800 dark:text-yellow-200 text-sm"},"⏱️ Seats held for: ",["SPAN",{"class":"font-bold"}]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card overflow-hidden"},["DIV",{"class":"flex items-center gap-2 mb-6 pb-4 border-b border-gray-100 dark:border-gray-800"},["DIV",{"class":"w-2 h-2 bg-primary rounded-full"}],["H2",{"class":"text-lg font-bold text-gray-900 dark:text-gray-100"},"Trip Details"],["SPAN",{"class":"ml-auto text-xs px-2.5 py-1 bg-primary/10 text-primary rounded-full font-semibold"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-8 flex-shrink-0"},["DIV",{"class":"w-4 h-4 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 dark:to-gray-700 my-2"}],["DIV",{"class":"w-4 h-4 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col"},["DIV",{"class":"pb-8"},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Alpha"]],["DIV",{"class":"pb-8"},["DIV",{"class":"flex items-center gap-6 text-sm text-gray-600 dark:text-gray-400"},["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"}]],["SPAN",{"class":"font-medium"},"4h 0m"]],["DIV",{"class":"flex items-center gap-1.5"},["svg",{"class":"w-4 h-4","fill":"none","viewBox":"0 0 24 24","stroke":"currentColor"},["path",{"stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2","d":"M13 10V3L4 14h7v7l9-11h-7z"}]],["SPAN",{"class":"font-medium"},"Train ","UI-100"]]]],["DIV",{},["DIV",{"class":"text-2xl font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-sm text-gray-500 dark:text-gray-400 mt-0.5"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-base font-semibold text-gray-900 dark:text-white mt-2"},"Charlie"]]]]],["DIV",{"class":"card"},["H2",{"class":"text-xl font-semibold mb-4 text-gray-900 dark:text-gray-100"},"Passengers"],["DIV",{"class":"space-y-3"},["DIV",{"class":"border-b border-gray-200 dark:border-gray-700 pb-3 last:border-0"},["DIV",{"class":"flex items-center justify-between gap-4"},["DIV",{"class":"min-w-0"},["P",{"class":"font-medium text-gray-900 dark:text-gray-100 truncate"},"Adult 1"],["P",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Jun 15, 1990"," • ","ETHIOPIAN"]],["DIV",{"class":"bg-gray-50 dark:bg-gray-800 rounded-lg px-3 py-2 text-right flex-shrink-0"},["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Seat"],["P",{"class":"font-semibold text-sm text-gray-900 dark:text-gray-100"},["SPAN",{"class":"text-gray-500 dark:text-gray-400"},"UI-C1"," — "],"1B"],["P",{"class":"text-[10px] text-gray-400 dark:text-gray-500 mt-0.5"},"Economy Regular"]]]]]],["DIV",{"class":"lg:hidden mt-4"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-3"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]],["DIV",{"class":"flex justify-between items-center pt-1 border-t border-gray-200 dark:border-gray-700"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"class":"btn-primary w-full"},"Confirm "],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 py-3 z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary"},"ETB 750.00"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"class":"btn-primary flex-1 py-2.5"},"Confirm "]]]]]]]],[[59,304]],[[59,316]]]],"viewport":{"width":1280,"height":720},"timestamp":14208.785,"wallTime":1784630674634,"collectionTime":0.8999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@221","time":14208.987,"message":"waiting for getByRole('button', { name: /^confirm/i }).first()"} +{"type":"log","callId":"call@221","time":14210.583,"message":" locator resolved to "} +{"type":"log","callId":"call@221","time":14210.886,"message":"attempting click action"} +{"type":"log","callId":"call@221","time":14210.897,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674639.jpeg","width":1280,"height":720,"timestamp":14212.941,"frameSwapWallTime":1784630674637.848} +{"type":"log","callId":"call@221","time":14220.729,"message":" element is not stable"} +{"type":"log","callId":"call@221","time":14220.732,"message":"retrying click action"} +{"type":"log","callId":"call@221","time":14220.74,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674648.jpeg","width":1280,"height":720,"timestamp":14221.65,"frameSwapWallTime":1784630674646.606} +{"type":"log","callId":"call@221","time":14237.492,"message":" element is not stable"} +{"type":"log","callId":"call@221","time":14237.505,"message":"retrying click action"} +{"type":"log","callId":"call@221","time":14237.506,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674664.jpeg","width":1280,"height":720,"timestamp":14238.312,"frameSwapWallTime":1784630674663.159} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674673.jpeg","width":1280,"height":720,"timestamp":14246.785,"frameSwapWallTime":1784630674671.466} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674681.jpeg","width":1280,"height":720,"timestamp":14255.14,"frameSwapWallTime":1784630674679.841} +{"type":"log","callId":"call@221","time":14259.003,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674689.jpeg","width":1280,"height":720,"timestamp":14263.324,"frameSwapWallTime":1784630674688.0342} +{"type":"log","callId":"call@221","time":14270.879,"message":" element is not stable"} +{"type":"log","callId":"call@221","time":14270.891,"message":"retrying click action"} +{"type":"log","callId":"call@221","time":14270.893,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674707.jpeg","width":1280,"height":720,"timestamp":14280.387,"frameSwapWallTime":1784630674705.095} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674714.jpeg","width":1280,"height":720,"timestamp":14288.331,"frameSwapWallTime":1784630674713.016} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674723.jpeg","width":1280,"height":720,"timestamp":14296.815,"frameSwapWallTime":1784630674721.549} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674731.jpeg","width":1280,"height":720,"timestamp":14305.33,"frameSwapWallTime":1784630674730.054} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674748.jpeg","width":1280,"height":720,"timestamp":14322.033,"frameSwapWallTime":1784630674746.578} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674756.jpeg","width":1280,"height":720,"timestamp":14330.124,"frameSwapWallTime":1784630674754.668} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674765.jpeg","width":1280,"height":720,"timestamp":14338.454,"frameSwapWallTime":1784630674763.103} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674781.jpeg","width":1280,"height":720,"timestamp":14354.862,"frameSwapWallTime":1784630674779.649} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674789.jpeg","width":1280,"height":720,"timestamp":14363.039,"frameSwapWallTime":1784630674787.655} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674798.jpeg","width":1280,"height":720,"timestamp":14371.669,"frameSwapWallTime":1784630674796.326} +{"type":"log","callId":"call@221","time":14371.961,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@221","time":14387.492,"message":" element is not stable"} +{"type":"log","callId":"call@221","time":14387.503,"message":"retrying click action"} +{"type":"log","callId":"call@221","time":14387.504,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674814.jpeg","width":1280,"height":720,"timestamp":14388.229,"frameSwapWallTime":1784630674812.9202} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674823.jpeg","width":1280,"height":720,"timestamp":14396.684,"frameSwapWallTime":1784630674821.286} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674831.jpeg","width":1280,"height":720,"timestamp":14404.801,"frameSwapWallTime":1784630674829.467} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674848.jpeg","width":1280,"height":720,"timestamp":14421.534,"frameSwapWallTime":1784630674846.179} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674856.jpeg","width":1280,"height":720,"timestamp":14429.943,"frameSwapWallTime":1784630674854.647} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674865.jpeg","width":1280,"height":720,"timestamp":14438.431,"frameSwapWallTime":1784630674863.158} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674881.jpeg","width":1280,"height":720,"timestamp":14454.837,"frameSwapWallTime":1784630674879.509} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674889.jpeg","width":1280,"height":720,"timestamp":14463.128,"frameSwapWallTime":1784630674887.75} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674898.jpeg","width":1280,"height":720,"timestamp":14471.706,"frameSwapWallTime":1784630674896.3909} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674914.jpeg","width":1280,"height":720,"timestamp":14488.089,"frameSwapWallTime":1784630674912.663} +{"type":"log","callId":"call@221","time":14488.612,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674923.jpeg","width":1280,"height":720,"timestamp":14496.812,"frameSwapWallTime":1784630674921.3408} +{"type":"log","callId":"call@221","time":14504.09,"message":" element is not stable"} +{"type":"log","callId":"call@221","time":14504.1,"message":"retrying click action"} +{"type":"log","callId":"call@221","time":14504.101,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674931.jpeg","width":1280,"height":720,"timestamp":14504.837,"frameSwapWallTime":1784630674929.435} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674939.jpeg","width":1280,"height":720,"timestamp":14512.974,"frameSwapWallTime":1784630674937.5469} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674953.jpeg","width":1280,"height":720,"timestamp":14526.34,"frameSwapWallTime":1784630674951.043} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674961.jpeg","width":1280,"height":720,"timestamp":14534.397,"frameSwapWallTime":1784630674959.058} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674968.jpeg","width":1280,"height":720,"timestamp":14541.875,"frameSwapWallTime":1784630674966.657} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674976.jpeg","width":1280,"height":720,"timestamp":14550.074,"frameSwapWallTime":1784630674974.794} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674993.jpeg","width":1280,"height":720,"timestamp":14566.981,"frameSwapWallTime":1784630674991.6091} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675001.jpeg","width":1280,"height":720,"timestamp":14575.139,"frameSwapWallTime":1784630674999.854} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675010.jpeg","width":1280,"height":720,"timestamp":14583.586,"frameSwapWallTime":1784630675008.299} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675026.jpeg","width":1280,"height":720,"timestamp":14600.258,"frameSwapWallTime":1784630675024.942} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675035.jpeg","width":1280,"height":720,"timestamp":14608.584,"frameSwapWallTime":1784630675033.301} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675043.jpeg","width":1280,"height":720,"timestamp":14616.781,"frameSwapWallTime":1784630675041.562} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675051.jpeg","width":1280,"height":720,"timestamp":14625.037,"frameSwapWallTime":1784630675049.877} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675067.jpeg","width":1280,"height":720,"timestamp":14641.011,"frameSwapWallTime":1784630675065.722} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675077.jpeg","width":1280,"height":720,"timestamp":14650.349,"frameSwapWallTime":1784630675075.094} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675085.jpeg","width":1280,"height":720,"timestamp":14658.603,"frameSwapWallTime":1784630675083.2979} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675093.jpeg","width":1280,"height":720,"timestamp":14666.973,"frameSwapWallTime":1784630675091.6492} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675110.jpeg","width":1280,"height":720,"timestamp":14683.633,"frameSwapWallTime":1784630675108.32} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675118.jpeg","width":1280,"height":720,"timestamp":14691.908,"frameSwapWallTime":1784630675116.658} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675125.jpeg","width":1280,"height":720,"timestamp":14699.233,"frameSwapWallTime":1784630675124.0488} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675135.jpeg","width":1280,"height":720,"timestamp":14708.615,"frameSwapWallTime":1784630675133.369} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675352.jpeg","width":1280,"height":720,"timestamp":14925.553,"frameSwapWallTime":1784630675350.239} +{"type":"log","callId":"call@221","time":15005.159,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@221","time":15020.746,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@221","time":15020.76,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@221","time":15021.195,"message":" done scrolling"} +{"type":"input","callId":"call@221","point":{"x":1106.65,"y":327},"inputSnapshot":"input@call@221"} +{"type":"frame-snapshot","snapshot":{"callId":"call@221","snapshotName":"input@call@221","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[1,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[60,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-28 lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,58]],[[1,62]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},[[1,148]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-3"},[[1,150]],[[1,156]],[[1,161]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-2"},["BUTTON",{"__playwright_target__":"","class":"btn-primary w-full"},[[1,162]]],[[1,167]]]]]]]]],[[1,187]]]]]]],[[60,304]],[[60,316]]]],"viewport":{"width":1280,"height":720},"timestamp":15022.725,"wallTime":1784630675449,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@221","time":15023.339,"message":" performing click action"} +{"type":"log","callId":"call@221","time":15025.328,"message":" click action done"} +{"type":"log","callId":"call@221","time":15025.333,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@221","time":15025.614,"message":" navigations have finished"} +{"type":"after","callId":"call@221","endTime":15025.649,"afterSnapshot":"after@call@221"} +{"type":"frame-snapshot","snapshot":{"callId":"call@221","snapshotName":"after@call@221","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/review","doctype":"html","html":[[1,14]],"viewport":{"width":1280,"height":720},"timestamp":15026.309,"wallTime":1784630675452,"collectionTime":0.30000000074505806,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675460.jpeg","width":1280,"height":720,"timestamp":15034.092,"frameSwapWallTime":1784630675458.763} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675468.jpeg","width":1280,"height":720,"timestamp":15042.28,"frameSwapWallTime":1784630675466.971} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675477.jpeg","width":1280,"height":720,"timestamp":15050.83,"frameSwapWallTime":1784630675475.493} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675493.jpeg","width":1280,"height":720,"timestamp":15066.724,"frameSwapWallTime":1784630675491.321} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675502.jpeg","width":1280,"height":720,"timestamp":15075.478,"frameSwapWallTime":1784630675500.071} +{"type":"after","callId":"call@218","endTime":15077.126} +{"type":"before","callId":"call@226","startTime":15077.173,"class":"Response","method":"body","params":{},"stepId":"pw:api@59","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"after","callId":"call@226","endTime":15080.14,"result":{"binary":""}} +{"type":"before","callId":"call@228","startTime":15081.32,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"8a5b0e7379af9b326024c5f40f112069","phase":"before","event":""},"stepId":"pw:api@61","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"log","callId":"call@228","time":15081.341,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675510.jpeg","width":1280,"height":720,"timestamp":15083.476,"frameSwapWallTime":1784630675508.059} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675518.jpeg","width":1280,"height":720,"timestamp":15092.226,"frameSwapWallTime":1784630675516.949} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675534.jpeg","width":1280,"height":720,"timestamp":15108.251,"frameSwapWallTime":1784630675532.878} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675543.jpeg","width":1280,"height":720,"timestamp":15117.214,"frameSwapWallTime":1784630675541.934} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675551.jpeg","width":1280,"height":720,"timestamp":15125.336,"frameSwapWallTime":1784630675550.039} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675559.jpeg","width":1280,"height":720,"timestamp":15132.992,"frameSwapWallTime":1784630675557.816} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675577.jpeg","width":1280,"height":720,"timestamp":15150.661,"frameSwapWallTime":1784630675575.314} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675585.jpeg","width":1280,"height":720,"timestamp":15158.884,"frameSwapWallTime":1784630675583.55} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675593.jpeg","width":1280,"height":720,"timestamp":15167.273,"frameSwapWallTime":1784630675591.957} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675610.jpeg","width":1280,"height":720,"timestamp":15183.726,"frameSwapWallTime":1784630675608.395} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675619.jpeg","width":1280,"height":720,"timestamp":15192.411,"frameSwapWallTime":1784630675617.0918} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675627.jpeg","width":1280,"height":720,"timestamp":15200.727,"frameSwapWallTime":1784630675625.4028} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675635.jpeg","width":1280,"height":720,"timestamp":15208.872,"frameSwapWallTime":1784630675633.554} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675652.jpeg","width":1280,"height":720,"timestamp":15225.867,"frameSwapWallTime":1784630675650.351} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675660.jpeg","width":1280,"height":720,"timestamp":15233.847,"frameSwapWallTime":1784630675658.48} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675668.jpeg","width":1280,"height":720,"timestamp":15242.1,"frameSwapWallTime":1784630675666.785} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675685.jpeg","width":1280,"height":720,"timestamp":15259.243,"frameSwapWallTime":1784630675683.604} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675721.jpeg","width":1280,"height":720,"timestamp":15294.471,"frameSwapWallTime":1784630675713.5789} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675723.jpeg","width":1280,"height":720,"timestamp":15296.886,"frameSwapWallTime":1784630675714.542} +{"type":"log","callId":"call@228","time":15297.231,"message":" navigated to \"http://localhost:5174/booking/payment\""} +{"type":"after","callId":"call@228","endTime":15297.245} +{"type":"before","callId":"call@233","startTime":15297.332,"title":"Wait for event \"response\"","class":"Page","method":"__waitInfo__","params":{"waitId":"018530ac2a74e7d4fb3a44f5cf8468b2","phase":"before","event":"response"},"stepId":"pw:api@62","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"before","callId":"call@236","startTime":15297.399,"class":"Frame","method":"click","params":{"selector":"internal:testid=[data-testid=\"pay-method-WALLET\"s] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@63","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@236"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675724.jpeg","width":1280,"height":720,"timestamp":15297.65,"frameSwapWallTime":1784630675714.917} +{"type":"frame-snapshot","snapshot":{"callId":"call@236","snapshotName":"before@call@236","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},["HEAD",{},[[62,0]],[[62,3]],["META",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["META",{"charset":"utf-8"}],["TITLE",{},"EDR Passenger Portal – Book Train Tickets Online"],["META",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["META",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["META",{"name":"robots","content":"index, follow"}],["META",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["META",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"property":"og:url","content":"https://passenger.edrsc.com"}],["META",{"property":"og:site_name","content":"EDR Passenger Portal"}],["META",{"property":"og:locale","content":"en_US"}],["META",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["META",{"property":"og:image:width","content":"1200"}],["META",{"property":"og:image:height","content":"630"}],["META",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["META",{"property":"og:type","content":"website"}],["META",{"name":"twitter:card","content":"summary_large_image"}],["META",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["META",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["META",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["LINK",{"rel":"shortcut icon","href":"/edr-logo.png"}],["LINK",{"rel":"icon","href":"/edr-logo.png"}],["LINK",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},["ASIDE",{"class":"hidden lg:flex w-64 fixed inset-y-0 left-0 z-40 flex-col bg-[rgb(20_113_76)] dark:bg-gray-900 border-r border-[rgb(16_89_60)] dark:border-gray-800"},[[62,31]],["NAV",{"class":"flex-1 overflow-y-auto px-3 py-4 space-y-1"},[[62,36]],[[62,43]],[[62,47]],[[62,53]],["DIV",{"class":"mt-6 pt-4 border-t border-white/15"},[[62,55]],["OL",{"class":"space-y-1"},[[62,61]],[[52,32]],[[6,32]],[[3,32]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors bg-white text-[rgb(20,113,76)]"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check w-3 h-3"},["path",{"d":"M20 6 9 17l-5-5"}]]],["SPAN",{"class":"text-sm text-gray-100"},[[62,79]]]],["LI",{"class":"flex items-center gap-2.5 px-3 py-1.5"},["SPAN",{"class":"flex h-5 w-5 flex-shrink-0 items-center justify-center rounded-full text-[10px] font-bold transition-colors border-2 border-white text-white"},[[62,82]]],["SPAN",{"class":"text-sm text-white font-semibold"},[[62,84]]]],[[62,91]]]]],[[62,107]]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[62,123]],["MAIN",{"class":"flex-1"},["DIV",{},["DIV",{"class":"bg-white dark:bg-gray-800 border-b dark:border-gray-700"},["NAV",{"aria-label":"Progress","class":"lg:hidden"},["DIV",{"class":"overflow-x-auto scrollbar-hide px-4 py-3"},["OL",{"class":"flex items-start min-w-full"},[[62,132]],[[52,47]],[[6,47]],[[3,47]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},["DIV",{"class":"flex-1 h-0.5 bg-primary"}],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 bg-primary shadow-sm"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-check h-4 w-4 text-white"},["path",{"d":"M20 6 9 17l-5-5"}]]],["DIV",{"class":"flex-1 h-0.5 bg-primary"}]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-gray-600 dark:text-gray-300"},[[62,166]]]],["LI",{"class":"flex flex-col items-center flex-shrink-0 w-[4.5rem] md:flex-1"},["DIV",{"class":"flex items-center w-full"},[[62,169]],["DIV",{"class":"flex h-8 w-8 flex-shrink-0 items-center justify-center rounded-full transition-all duration-300 border-[3px] border-primary bg-white dark:bg-gray-800 shadow-sm"},["SPAN",{"class":"text-xs font-bold text-primary"},[[62,170]]]],[[62,173]]],["P",{"class":"mt-1.5 text-[10px] md:text-xs font-medium text-center leading-tight whitespace-nowrap text-primary font-bold"},[[62,175]]]],[[62,186]]]]]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},["H1",{"class":"section-title"},"Complete payment"],["DIV",{"class":"card bg-green-50 dark:bg-green-900/20 border border-green-200 dark:border-green-800 mb-4 flex items-start gap-3"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-check-big w-6 h-6 text-green-600 dark:text-green-400 flex-shrink-0 mt-0.5"},["path",{"d":"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{"d":"m9 11 3 3L22 4"}]],["DIV",{},["P",{"class":"text-sm font-semibold text-green-800 dark:text-green-300"},"Your booking is successfully reserved"],["P",{"class":"text-sm text-green-700 dark:text-green-400 mt-0.5"},"Booking Reference: ",["SPAN",{"class":"font-bold"},"MFXCQN"]],["P",{"class":"text-xs text-green-700/80 dark:text-green-400/80 mt-1"},"Please complete the payment below to confirm your booking. Your seats are held temporarily until payment is completed."]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 mb-4"},"Select payment method"],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-wallet w-5 h-5 text-primary"},["path",{"d":"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{"d":"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"Wallet"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]],["BUTTON",{"data-testid":"pay-method-TELEBIRR","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-gray-100 dark:bg-gray-700"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-smartphone w-5 h-5 text-primary"},["rect",{"width":"14","height":"20","x":"5","y":"2","rx":"2","ry":"2"}],["path",{"d":"M12 18h.01"}]]],["DIV",{"class":"flex-1 min-w-0"},["P",{"class":"font-semibold text-gray-900 dark:text-gray-100"},"telebirr"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400"},"GLOBAL"," · ","ETB"]]]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"MFXCQN"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"MFXCQN"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},["SPAN",{"class":"text-sm text-gray-600 dark:text-gray-400"},"Total"],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["BUTTON",{"disabled":"","class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"]]]]]]]],[[62,304]],[[62,316]]]],"viewport":{"width":1280,"height":720},"timestamp":15299.253,"wallTime":1784630675725,"collectionTime":0.8999999985098839,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@236","time":15299.531,"message":"waiting for getByTestId('pay-method-WALLET').first()"} +{"type":"log","callId":"call@236","time":15300.718,"message":" locator resolved to "} +{"type":"log","callId":"call@236","time":15301.166,"message":"attempting click action"} +{"type":"log","callId":"call@236","time":15301.182,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675732.jpeg","width":1280,"height":720,"timestamp":15305.959,"frameSwapWallTime":1784630675730.0688} +{"type":"log","callId":"call@236","time":15312.497,"message":" element is not stable"} +{"type":"log","callId":"call@236","time":15312.509,"message":"retrying click action"} +{"type":"log","callId":"call@236","time":15312.528,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675739.jpeg","width":1280,"height":720,"timestamp":15313.094,"frameSwapWallTime":1784630675737.895} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675747.jpeg","width":1280,"height":720,"timestamp":15321.292,"frameSwapWallTime":1784630675746.072} +{"type":"log","callId":"call@236","time":15328.265,"message":" element is not stable"} +{"type":"log","callId":"call@236","time":15328.274,"message":"retrying click action"} +{"type":"log","callId":"call@236","time":15328.276,"message":" waiting 20ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675763.jpeg","width":1280,"height":720,"timestamp":15337.068,"frameSwapWallTime":1784630675761.817} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675773.jpeg","width":1280,"height":720,"timestamp":15346.369,"frameSwapWallTime":1784630675771.1438} +{"type":"log","callId":"call@236","time":15349.481,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675781.jpeg","width":1280,"height":720,"timestamp":15354.72,"frameSwapWallTime":1784630675779.492} +{"type":"log","callId":"call@236","time":15361.473,"message":" element is not stable"} +{"type":"log","callId":"call@236","time":15361.482,"message":"retrying click action"} +{"type":"log","callId":"call@236","time":15361.484,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675796.jpeg","width":1280,"height":720,"timestamp":15370.293,"frameSwapWallTime":1784630675794.963} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675805.jpeg","width":1280,"height":720,"timestamp":15378.802,"frameSwapWallTime":1784630675803.503} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675814.jpeg","width":1280,"height":720,"timestamp":15387.688,"frameSwapWallTime":1784630675812.276} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675822.jpeg","width":1280,"height":720,"timestamp":15396.332,"frameSwapWallTime":1784630675820.973} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675838.jpeg","width":1280,"height":720,"timestamp":15412.201,"frameSwapWallTime":1784630675836.859} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675848.jpeg","width":1280,"height":720,"timestamp":15421.432,"frameSwapWallTime":1784630675846.067} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675856.jpeg","width":1280,"height":720,"timestamp":15429.682,"frameSwapWallTime":1784630675854.385} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675864.jpeg","width":1280,"height":720,"timestamp":15438.153,"frameSwapWallTime":1784630675862.733} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675881.jpeg","width":1280,"height":720,"timestamp":15454.436,"frameSwapWallTime":1784630675878.9858} +{"type":"log","callId":"call@236","time":15462.202,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675889.jpeg","width":1280,"height":720,"timestamp":15462.986,"frameSwapWallTime":1784630675887.644} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675897.jpeg","width":1280,"height":720,"timestamp":15471.228,"frameSwapWallTime":1784630675895.906} +{"type":"log","callId":"call@236","time":15478.488,"message":" element is not stable"} +{"type":"log","callId":"call@236","time":15478.5,"message":"retrying click action"} +{"type":"log","callId":"call@236","time":15478.502,"message":" waiting 100ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675906.jpeg","width":1280,"height":720,"timestamp":15479.716,"frameSwapWallTime":1784630675904.42} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675922.jpeg","width":1280,"height":720,"timestamp":15496.294,"frameSwapWallTime":1784630675920.9758} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675930.jpeg","width":1280,"height":720,"timestamp":15504.144,"frameSwapWallTime":1784630675928.8188} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675939.jpeg","width":1280,"height":720,"timestamp":15512.933,"frameSwapWallTime":1784630675937.587} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675956.jpeg","width":1280,"height":720,"timestamp":15529.657,"frameSwapWallTime":1784630675954.182} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675963.jpeg","width":1280,"height":720,"timestamp":15537.275,"frameSwapWallTime":1784630675961.7988} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675972.jpeg","width":1280,"height":720,"timestamp":15546.212,"frameSwapWallTime":1784630675970.864} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675981.jpeg","width":1280,"height":720,"timestamp":15554.705,"frameSwapWallTime":1784630675979.362} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675997.jpeg","width":1280,"height":720,"timestamp":15571.237,"frameSwapWallTime":1784630675995.77} +{"type":"log","callId":"call@236","time":15579.247,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676006.jpeg","width":1280,"height":720,"timestamp":15579.584,"frameSwapWallTime":1784630676004.225} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676013.jpeg","width":1280,"height":720,"timestamp":15586.922,"frameSwapWallTime":1784630676011.5408} +{"type":"log","callId":"call@236","time":15595.713,"message":" element is not stable"} +{"type":"log","callId":"call@236","time":15595.72,"message":"retrying click action"} +{"type":"log","callId":"call@236","time":15595.722,"message":" waiting 500ms"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676023.jpeg","width":1280,"height":720,"timestamp":15596.584,"frameSwapWallTime":1784630676021.198} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676038.jpeg","width":1280,"height":720,"timestamp":15612.307,"frameSwapWallTime":1784630676036.772} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676048.jpeg","width":1280,"height":720,"timestamp":15621.624,"frameSwapWallTime":1784630676046.156} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676056.jpeg","width":1280,"height":720,"timestamp":15629.926,"frameSwapWallTime":1784630676054.386} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676061.jpeg","width":1280,"height":720,"timestamp":15634.418,"frameSwapWallTime":1784630676059.082} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676077.jpeg","width":1280,"height":720,"timestamp":15650.452,"frameSwapWallTime":1784630676075.0789} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676084.jpeg","width":1280,"height":720,"timestamp":15657.98,"frameSwapWallTime":1784630676082.491} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676094.jpeg","width":1280,"height":720,"timestamp":15667.717,"frameSwapWallTime":1784630676092.204} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676102.jpeg","width":1280,"height":720,"timestamp":15675.734,"frameSwapWallTime":1784630676100.21} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676119.jpeg","width":1280,"height":720,"timestamp":15692.477,"frameSwapWallTime":1784630676116.994} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676127.jpeg","width":1280,"height":720,"timestamp":15700.639,"frameSwapWallTime":1784630676125.297} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676135.jpeg","width":1280,"height":720,"timestamp":15708.954,"frameSwapWallTime":1784630676133.545} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676152.jpeg","width":1280,"height":720,"timestamp":15725.612,"frameSwapWallTime":1784630676150.219} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676160.jpeg","width":1280,"height":720,"timestamp":15733.699,"frameSwapWallTime":1784630676158.3508} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676168.jpeg","width":1280,"height":720,"timestamp":15742.212,"frameSwapWallTime":1784630676166.872} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676177.jpeg","width":1280,"height":720,"timestamp":15750.501,"frameSwapWallTime":1784630676175.138} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676193.jpeg","width":1280,"height":720,"timestamp":15767.173,"frameSwapWallTime":1784630676191.7678} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676201.jpeg","width":1280,"height":720,"timestamp":15775.216,"frameSwapWallTime":1784630676199.837} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676210.jpeg","width":1280,"height":720,"timestamp":15783.964,"frameSwapWallTime":1784630676208.555} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676218.jpeg","width":1280,"height":720,"timestamp":15791.928,"frameSwapWallTime":1784630676216.636} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676235.jpeg","width":1280,"height":720,"timestamp":15808.968,"frameSwapWallTime":1784630676233.498} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676452.jpeg","width":1280,"height":720,"timestamp":16025.653,"frameSwapWallTime":1784630676450.25} +{"type":"log","callId":"call@236","time":16096.694,"message":" waiting for element to be visible, enabled and stable"} +{"type":"log","callId":"call@236","time":16112.252,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@236","time":16112.261,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@236","time":16112.73,"message":" done scrolling"} +{"type":"input","callId":"call@236","point":{"x":598.66,"y":310},"inputSnapshot":"input@call@236"} +{"type":"frame-snapshot","snapshot":{"callId":"call@236","snapshotName":"input@call@236","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[1,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[1,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[63,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[1,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[1,58]],[[1,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[1,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"__playwright_target__":"","data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 "},[[1,85]]],[[1,99]]]],[[1,168]]],[[1,237]]]]],[[1,255]]]]]]],[[63,304]],[[63,316]]]],"viewport":{"width":1280,"height":720},"timestamp":16114.188,"wallTime":1784630676540,"collectionTime":0.6000000014901161,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@236","time":16114.852,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676543.jpeg","width":1280,"height":720,"timestamp":16117.333,"frameSwapWallTime":1784630676541.842} +{"type":"log","callId":"call@236","time":16120.752,"message":" click action done"} +{"type":"log","callId":"call@236","time":16120.761,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@236","time":16121.109,"message":" navigations have finished"} +{"type":"after","callId":"call@236","endTime":16121.151,"afterSnapshot":"after@call@236"} +{"type":"frame-snapshot","snapshot":{"callId":"call@236","snapshotName":"after@call@236","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[2,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[2,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[64,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[2,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[2,58]],[[2,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[2,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"__playwright_target__":"","data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-primary bg-primary/8 dark:bg-primary/15 shadow-md "},["DIV",{"class":"flex items-center gap-3"},["DIV",{"class":"w-11 h-11 rounded-lg flex items-center justify-center flex-shrink-0 bg-primary"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-wallet w-5 h-5 text-white"},[[2,74]],[[2,75]]]],[[2,84]],["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-circle-check-big w-5 h-5 text-primary flex-shrink-0"},["path",{"d":"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{"d":"m9 11 3 3L22 4"}]]]],[[2,99]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"MFXCQN"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin text-primary"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating amount..."]],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"MFXCQN"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin text-primary"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating amount..."]],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},[[2,242]],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-3.5 h-3.5 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]]],["DIV",{"class":"flex gap-3"},[[2,251]],["BUTTON",{"disabled":"","class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Calculating..."]]]]]]]]],[[64,304]],[[64,316]]]],"viewport":{"width":1280,"height":720},"timestamp":16123.608,"wallTime":1784630676548,"collectionTime":0.8000000007450581,"resourceOverrides":[],"isMainFrame":true}} +{"type":"before","callId":"call@238","startTime":16124.673,"class":"Frame","method":"click","params":{"selector":"internal:role=button[name=/^pay\\b/i] >> nth=0","strict":true,"timeout":15000},"stepId":"pw:api@64","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","beforeSnapshot":"before@call@238"} +{"type":"frame-snapshot","snapshot":{"callId":"call@238","snapshotName":"before@call@238","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"lang":"en","dir":"ltr","class":"light","style":""},[[3,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[3,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[65,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[3,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[3,58]],[[3,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[3,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-primary bg-primary/8 dark:bg-primary/15 shadow-md "},[[1,5]]],[[3,99]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"MFXCQN"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","750.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"MFXCQN"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","750.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"],["BUTTON",{"class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},["DIV",{"class":"flex items-center justify-between mb-2.5"},[[3,242]],["SPAN",{"class":"text-lg font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["DIV",{"class":"flex gap-3"},[[3,251]],["BUTTON",{"class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed"},"Pay ETB 750.00"]]]]]]]],[[65,304]],[[65,316]]]],"viewport":{"width":1280,"height":720},"timestamp":16130.182,"wallTime":1784630676556,"collectionTime":1.199999999254942,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@238","time":16130.414,"message":"waiting for getByRole('button', { name: /^pay\\b/i }).first()"} +{"type":"log","callId":"call@238","time":16132.172,"message":" locator resolved to "} +{"type":"log","callId":"call@238","time":16132.493,"message":"attempting click action"} +{"type":"log","callId":"call@238","time":16132.507,"message":" waiting for element to be visible, enabled and stable"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676561.jpeg","width":1280,"height":720,"timestamp":16135.121,"frameSwapWallTime":1784630676559.67} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676569.jpeg","width":1280,"height":720,"timestamp":16143.135,"frameSwapWallTime":1784630676567.707} +{"type":"log","callId":"call@238","time":16145.863,"message":" element is visible, enabled and stable"} +{"type":"log","callId":"call@238","time":16145.874,"message":" scrolling into view if needed"} +{"type":"log","callId":"call@238","time":16146.114,"message":" done scrolling"} +{"type":"input","callId":"call@238","point":{"x":1106.65,"y":696},"inputSnapshot":"input@call@238"} +{"type":"frame-snapshot","snapshot":{"callId":"call@238","snapshotName":"input@call@238","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"9","lang":"en","dir":"ltr","class":"light","style":""},[[4,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[4,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[66,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[4,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[4,58]],[[4,71]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},[[1,77]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},[[1,83]],[[1,116]],[[1,125]],[[1,140]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"__playwright_target__":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},[[1,141]]],[[1,146]],[[1,148]]]]]]]]],[[1,164]]]]]]],[[66,304]],[[66,316]]]],"viewport":{"width":1280,"height":720},"timestamp":16147.329,"wallTime":1784630676573,"collectionTime":0.5,"resourceOverrides":[],"isMainFrame":true}} +{"type":"log","callId":"call@238","time":16147.948,"message":" performing click action"} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676577.jpeg","width":1280,"height":720,"timestamp":16151.114,"frameSwapWallTime":1784630676575.717} +{"type":"log","callId":"call@238","time":16154.368,"message":" click action done"} +{"type":"log","callId":"call@238","time":16154.374,"message":" waiting for scheduled navigations to finish"} +{"type":"log","callId":"call@238","time":16154.673,"message":" navigations have finished"} +{"type":"after","callId":"call@238","endTime":16154.731,"afterSnapshot":"after@call@238"} +{"type":"frame-snapshot","snapshot":{"callId":"call@238","snapshotName":"after@call@238","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","frameId":"frame@e02b0fad0a9337bfc0785a8ae3b0ef49","frameUrl":"http://localhost:5174/booking/payment","doctype":"html","html":["HTML",{"__playwright_scroll_top_":"9","lang":"en","dir":"ltr","class":"light","style":""},[[5,27]],["BODY",{"class":"font-sans antialiased","style":"overflow: unset;"},[[5,39]],["DIV",{"class":"lg:pl-64 flex flex-col min-h-screen"},[[67,123]],["MAIN",{"class":"flex-1"},["DIV",{},[[5,56]],["DIV",{"class":"animate-fade-in-up"},["DIV",{"class":"booking-page pb-[calc(7rem+env(safe-area-inset-bottom))] lg:pb-10"},["DIV",{"class":"container mx-auto px-4"},["DIV",{"class":"max-w-6xl mx-auto"},[[5,58]],[[5,71]],["DIV",{"class":"fixed inset-0 bg-black/60 flex items-center justify-center z-50"},["DIV",{"class":"bg-white dark:bg-gray-800 rounded-xl p-8 max-w-sm w-full mx-4 text-center shadow-2xl"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-14 h-14 text-primary animate-spin mx-auto mb-4"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]],["H3",{"class":"text-lg font-bold mb-1 text-gray-900 dark:text-gray-100"},"Processing payment"],["P",{"class":"text-sm text-gray-500 dark:text-gray-400"},"Please wait..."]]],["DIV",{"class":"lg:grid lg:grid-cols-3 lg:gap-6 lg:items-start"},["DIV",{"class":"lg:col-span-2 space-y-4"},["DIV",{"class":"card"},[[5,73]],["DIV",{"class":"space-y-3"},["BUTTON",{"data-testid":"pay-method-WALLET","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-primary bg-primary/8 dark:bg-primary/15 shadow-md opacity-50 cursor-not-allowed","disabled":""},[[3,5]]],["BUTTON",{"data-testid":"pay-method-TELEBIRR","class":"w-full p-4 rounded-xl border-2 transition-all text-left border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 hover:border-primary/50 opacity-50 cursor-not-allowed","disabled":""},[[5,98]]]]],["DIV",{"class":"lg:hidden"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"MFXCQN"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","750.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]],["BUTTON",{"disabled":"","class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]],["DIV",{"class":"hidden lg:block"},["DIV",{"class":"sticky top-6"},["DIV",{"class":"card space-y-4"},["H2",{"class":"text-base font-bold text-gray-900 dark:text-gray-100 pb-2 border-b border-gray-100 dark:border-gray-800"},"Order summary",["SPAN",{"class":"ml-2 text-xs font-normal text-gray-500 dark:text-gray-400"},"Ref: ",["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"MFXCQN"]]],["DIV",{},["DIV",{"class":"flex items-center gap-2 mb-3"},["DIV",{"class":"w-2 h-2 rounded-full bg-primary"}],["SPAN",{"class":"text-sm font-semibold text-gray-700 dark:text-gray-300"},"Your journey"],["SPAN",{"class":"ml-auto text-xs px-2 py-0.5 rounded-full font-medium bg-primary/10 text-primary"},"Standard Coach"]],["DIV",{"class":"flex"},["DIV",{"class":"flex flex-col items-center w-7 flex-shrink-0"},["DIV",{"class":"w-3 h-3 rounded-full border-4 border-primary bg-white dark:bg-gray-900 z-10"}],["DIV",{"class":"w-0.5 flex-1 bg-gradient-to-b from-primary via-gray-300 dark:via-gray-700 to-gray-300 my-1.5"}],["DIV",{"class":"w-3 h-3 rounded-full border-4 border-gray-400 dark:border-gray-600 bg-white dark:bg-gray-900 z-10"}]],["DIV",{"class":"flex-1 flex flex-col pl-2"},["DIV",{"class":"pb-5"},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"9:00 AM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Morning"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Alpha"]],["DIV",{"class":"pb-5 flex items-center gap-4 text-xs text-gray-500 dark:text-gray-400"},["SPAN",{},"4h 0m"],["SPAN",{},"Train ","UI-100"]],["DIV",{},["DIV",{"class":"text-lg font-bold text-gray-900 dark:text-white"},"1:00 PM"],["DIV",{"class":"text-xs text-gray-500 dark:text-gray-400"},"Thu, Jul 23 · Afternoon"],["DIV",{"class":"text-sm font-semibold text-gray-900 dark:text-white mt-1"},"Charlie"]]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700 space-y-2"},["H3",{"class":"text-sm font-bold text-gray-900 dark:text-gray-100"},"Fare breakdown"],["DIV",{"class":"border-b border-gray-100 dark:border-gray-800 pb-2 last:border-0"},["DIV",{"class":"flex justify-between mb-0.5"},["SPAN",{"class":"text-sm font-medium text-gray-900 dark:text-gray-100 truncate max-w-[60%]"},"Adult 1"],["SPAN",{"class":"text-sm font-semibold text-gray-900 dark:text-gray-100"},"ETB 750.00"]]]],["DIV",{"class":"pt-2 border-t-2 border-gray-200 dark:border-gray-700"},["DIV",{"class":"flex justify-between items-center"},["SPAN",{"class":"font-bold text-gray-900 dark:text-gray-100"},"Total"],["SPAN",{"class":"text-xl font-bold text-primary flex items-center gap-1.5"},"ETB"," ","750.00"]],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-right mt-1"},"You will be charged ","ETB"," ","750.00"," via ","Wallet"]],["DIV",{"class":"hidden lg:flex flex-col gap-2 pt-1"},["BUTTON",{"disabled":"","class":"btn-primary w-full py-3 font-semibold disabled:opacity-50 disabled:cursor-not-allowed"},["SPAN",{"class":"flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]],["BUTTON",{"disabled":"","class":"btn-secondary w-full flex items-center justify-center gap-2"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-chevron-left w-4 h-4"},["path",{"d":"m15 18-6-6 6-6"}]],"Back"],["P",{"class":"text-xs text-gray-500 dark:text-gray-400 text-center pt-1"},"🔒 Secure & encrypted payment"]]]]]]]],["DIV",{"class":"lg:hidden fixed bottom-0 inset-x-0 bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700 px-4 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] z-40 shadow-lg"},[[2,160]],["DIV",{"class":"flex gap-3"},["BUTTON",{"class":"btn-secondary flex-1 py-2.5 flex items-center justify-center gap-2","disabled":""},[[5,249]],[[5,250]]],["BUTTON",{"class":"btn-primary flex-1 py-2.5 disabled:opacity-50 disabled:cursor-not-allowed","disabled":""},["SPAN",{"class":"flex items-center justify-center gap-1.5"},["svg",{"xmlns":"http://www.w3.org/2000/svg","width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round","class":"lucide lucide-loader-circle w-4 h-4 animate-spin"},["path",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}]]," Processing..."]]]]]]]]],[[67,304]],[[67,316]]]],"viewport":{"width":1280,"height":720},"timestamp":16156.093,"wallTime":1784630676582,"collectionTime":0.6999999992549419,"resourceOverrides":[],"isMainFrame":true}} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676595.jpeg","width":1280,"height":720,"timestamp":16169.078,"frameSwapWallTime":1784630676593.729} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676602.jpeg","width":1280,"height":720,"timestamp":16176.337,"frameSwapWallTime":1784630676600.952} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676612.jpeg","width":1280,"height":720,"timestamp":16185.366,"frameSwapWallTime":1784630676610.092} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676628.jpeg","width":1280,"height":720,"timestamp":16202.159,"frameSwapWallTime":1784630676626.898} +{"type":"after","callId":"call@233","endTime":16210.881} +{"type":"before","callId":"call@243","startTime":16210.949,"title":"Wait for navigation","class":"Page","method":"__waitInfo__","params":{"waitId":"daa8ee35b69f00b667a67c826fb2d929","phase":"before","event":""},"stepId":"pw:api@65","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc"} +{"type":"log","callId":"call@243","time":16210.964,"message":"waiting for navigation until \"load\""} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676637.jpeg","width":1280,"height":720,"timestamp":16211.072,"frameSwapWallTime":1784630676634.857} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676645.jpeg","width":1280,"height":720,"timestamp":16218.464,"frameSwapWallTime":1784630676643.275} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676661.jpeg","width":1280,"height":720,"timestamp":16234.705,"frameSwapWallTime":1784630676659.548} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676669.jpeg","width":1280,"height":720,"timestamp":16242.782,"frameSwapWallTime":1784630676667.623} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676677.jpeg","width":1280,"height":720,"timestamp":16251.143,"frameSwapWallTime":1784630676675.9739} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676686.jpeg","width":1280,"height":720,"timestamp":16259.925,"frameSwapWallTime":1784630676684.685} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676703.jpeg","width":1280,"height":720,"timestamp":16276.467,"frameSwapWallTime":1784630676701.266} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676711.jpeg","width":1280,"height":720,"timestamp":16284.716,"frameSwapWallTime":1784630676709.545} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676719.jpeg","width":1280,"height":720,"timestamp":16292.945,"frameSwapWallTime":1784630676717.825} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676736.jpeg","width":1280,"height":720,"timestamp":16309.771,"frameSwapWallTime":1784630676734.603} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676744.jpeg","width":1280,"height":720,"timestamp":16318.021,"frameSwapWallTime":1784630676742.856} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676752.jpeg","width":1280,"height":720,"timestamp":16326.165,"frameSwapWallTime":1784630676751.044} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676769.jpeg","width":1280,"height":720,"timestamp":16342.985,"frameSwapWallTime":1784630676767.6748} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676777.jpeg","width":1280,"height":720,"timestamp":16351.334,"frameSwapWallTime":1784630676776.129} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676786.jpeg","width":1280,"height":720,"timestamp":16359.455,"frameSwapWallTime":1784630676784.294} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676802.jpeg","width":1280,"height":720,"timestamp":16376.251,"frameSwapWallTime":1784630676801.081} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676811.jpeg","width":1280,"height":720,"timestamp":16384.554,"frameSwapWallTime":1784630676809.345} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676819.jpeg","width":1280,"height":720,"timestamp":16392.773,"frameSwapWallTime":1784630676817.665} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676836.jpeg","width":1280,"height":720,"timestamp":16409.418,"frameSwapWallTime":1784630676834.2832} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676844.jpeg","width":1280,"height":720,"timestamp":16417.739,"frameSwapWallTime":1784630676842.6199} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676852.jpeg","width":1280,"height":720,"timestamp":16426.204,"frameSwapWallTime":1784630676851.044} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676869.jpeg","width":1280,"height":720,"timestamp":16442.746,"frameSwapWallTime":1784630676867.5972} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676877.jpeg","width":1280,"height":720,"timestamp":16451.04,"frameSwapWallTime":1784630676875.946} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676886.jpeg","width":1280,"height":720,"timestamp":16459.547,"frameSwapWallTime":1784630676884.349} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676894.jpeg","width":1280,"height":720,"timestamp":16467.815,"frameSwapWallTime":1784630676892.629} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676911.jpeg","width":1280,"height":720,"timestamp":16484.846,"frameSwapWallTime":1784630676909.525} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676920.jpeg","width":1280,"height":720,"timestamp":16493.346,"frameSwapWallTime":1784630676918.0342} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676928.jpeg","width":1280,"height":720,"timestamp":16501.607,"frameSwapWallTime":1784630676926.3179} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676936.jpeg","width":1280,"height":720,"timestamp":16509.686,"frameSwapWallTime":1784630676934.4448} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676953.jpeg","width":1280,"height":720,"timestamp":16526.472,"frameSwapWallTime":1784630676951.182} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676961.jpeg","width":1280,"height":720,"timestamp":16534.899,"frameSwapWallTime":1784630676959.5972} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676969.jpeg","width":1280,"height":720,"timestamp":16542.885,"frameSwapWallTime":1784630676967.7788} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676986.jpeg","width":1280,"height":720,"timestamp":16559.497,"frameSwapWallTime":1784630676984.326} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676994.jpeg","width":1280,"height":720,"timestamp":16567.782,"frameSwapWallTime":1784630676992.6409} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677002.jpeg","width":1280,"height":720,"timestamp":16576.239,"frameSwapWallTime":1784630677001.134} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677011.jpeg","width":1280,"height":720,"timestamp":16584.456,"frameSwapWallTime":1784630677009.317} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677027.jpeg","width":1280,"height":720,"timestamp":16601.133,"frameSwapWallTime":1784630677025.982} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677036.jpeg","width":1280,"height":720,"timestamp":16609.456,"frameSwapWallTime":1784630677034.311} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677044.jpeg","width":1280,"height":720,"timestamp":16617.38,"frameSwapWallTime":1784630677042.238} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677052.jpeg","width":1280,"height":720,"timestamp":16626.078,"frameSwapWallTime":1784630677050.978} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677069.jpeg","width":1280,"height":720,"timestamp":16642.895,"frameSwapWallTime":1784630677067.641} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677077.jpeg","width":1280,"height":720,"timestamp":16651.21,"frameSwapWallTime":1784630677076.043} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677086.jpeg","width":1280,"height":720,"timestamp":16659.565,"frameSwapWallTime":1784630677084.268} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677094.jpeg","width":1280,"height":720,"timestamp":16667.961,"frameSwapWallTime":1784630677092.76} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677111.jpeg","width":1280,"height":720,"timestamp":16685.152,"frameSwapWallTime":1784630677109.797} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677119.jpeg","width":1280,"height":720,"timestamp":16693.141,"frameSwapWallTime":1784630677117.848} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677128.jpeg","width":1280,"height":720,"timestamp":16701.504,"frameSwapWallTime":1784630677126.272} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677136.jpeg","width":1280,"height":720,"timestamp":16709.86,"frameSwapWallTime":1784630677134.615} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677152.jpeg","width":1280,"height":720,"timestamp":16726.216,"frameSwapWallTime":1784630677151.0168} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677360.jpeg","width":1280,"height":720,"timestamp":16933.658,"frameSwapWallTime":1784630677358.482} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677569.jpeg","width":1280,"height":720,"timestamp":17142.972,"frameSwapWallTime":1784630677567.737} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677777.jpeg","width":1280,"height":720,"timestamp":17351.087,"frameSwapWallTime":1784630677775.951} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677986.jpeg","width":1280,"height":720,"timestamp":17559.63,"frameSwapWallTime":1784630677984.387} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678194.jpeg","width":1280,"height":720,"timestamp":17768.21,"frameSwapWallTime":1784630678192.896} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678402.jpeg","width":1280,"height":720,"timestamp":17976.229,"frameSwapWallTime":1784630678401.05} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678611.jpeg","width":1280,"height":720,"timestamp":18185.024,"frameSwapWallTime":1784630678609.7788} +{"type":"log","callId":"call@243","time":18338.069,"message":" navigated to \"http://localhost:5174/booking/confirmation\""} +{"type":"after","callId":"call@243","endTime":18338.094} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678771.jpeg","width":1280,"height":720,"timestamp":18344.681,"frameSwapWallTime":1784630678769.5999} +{"type":"screencast-frame","pageId":"page@59b29c2ad5e16b6ffd540b8a9792c8bc","sha1":"page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678791.jpeg","width":1280,"height":720,"timestamp":18365.073,"frameSwapWallTime":1784630678788.395} diff --git a/test-results/.playwright-artifacts-0/traces/resources/00b003075410e308fe75d63ebaa841876e75ca92.htc b/test-results/.playwright-artifacts-0/traces/resources/00b003075410e308fe75d63ebaa841876e75ca92.htc new file mode 100644 index 000000000..19625ac65 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/00b003075410e308fe75d63ebaa841876e75ca92.htc @@ -0,0 +1,11 @@ +2:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/client-page.js",["app-pages-internals","static/chunks/app-pages-internals.js"],"ClientPageRoot"] +3:I["(app-pages-browser)/./src/app/booking/passengers/page.tsx",["app/booking/passengers/page","static/chunks/app/booking/passengers/page.js"],"default",1] +4:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js",["app-pages-internals","static/chunks/app-pages-internals.js"],""] +5:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/render-from-template-context.js",["app-pages-internals","static/chunks/app-pages-internals.js"],""] +1:D{"name":"","env":"Server"} +6:D{"name":"","env":"Server"} +7:D{"name":"r6","env":"Server"} +7:null +0:["development",[["children","booking","children","passengers",["passengers",{"children":["__PAGE__",{}]}],["passengers",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","booking","children","passengers","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null],["$L6","$7"]]]] +6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","3",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["$","meta","4",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","5",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","6",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","7",{"name":"robots","content":"index, follow"}],["$","meta","8",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["$","meta","9",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","10",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["$","meta","11",{"property":"og:url","content":"https://passenger.edrsc.com"}],["$","meta","12",{"property":"og:site_name","content":"EDR Passenger Portal"}],["$","meta","13",{"property":"og:locale","content":"en_US"}],["$","meta","14",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["$","meta","15",{"property":"og:image:width","content":"1200"}],["$","meta","16",{"property":"og:image:height","content":"630"}],["$","meta","17",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["$","meta","18",{"property":"og:type","content":"website"}],["$","meta","19",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","20",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","21",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["$","meta","22",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["$","link","23",{"rel":"shortcut icon","href":"/edr-logo.png"}],["$","link","24",{"rel":"icon","href":"/edr-logo.png"}],["$","link","25",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]] +1:null diff --git a/test-results/.playwright-artifacts-0/traces/resources/04026b7c24c09d00aaa30f5a9650f3b5.jsonl b/test-results/.playwright-artifacts-0/traces/resources/04026b7c24c09d00aaa30f5a9650f3b5.jsonl new file mode 100644 index 000000000..27b2a035d --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/04026b7c24c09d00aaa30f5a9650f3b5.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630679617.921,"opcode":1,"data":"0{\"sid\":\"974Eg1twXN0HdLsaAAAH\",\"upgrades\":[],\"pingInterval\":25000,\"pingTimeout\":20000,\"maxPayload\":1000000}"} +{"type":"send","time":1784630679618.4338,"opcode":1,"data":"40/passenger-support-chat,{\"guestId\":\"da8049a0-a8ee-4db0-8a6f-caf4cd4f27aa\"}"} +{"type":"receive","time":1784630679618.8728,"opcode":1,"data":"40/passenger-support-chat,{\"sid\":\"QlfWAW0sdL1HwA_OAAAI\"}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/053b78e2c1fb321ecddf1a06c660069084eb4f48.json b/test-results/.playwright-artifacts-0/traces/resources/053b78e2c1fb321ecddf1a06c660069084eb4f48.json new file mode 100644 index 000000000..d1b24ba6e --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/053b78e2c1fb321ecddf1a06c660069084eb4f48.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"HELD","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"BOOKED","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"BOOKED","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"BOOKED","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"HELD","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:45:07.340Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/0571c6a0639d67d8dd050bd23b22c6bfd5486b04.html b/test-results/.playwright-artifacts-0/traces/resources/0571c6a0639d67d8dd050bd23b22c6bfd5486b04.html new file mode 100644 index 000000000..6af2001f1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/0571c6a0639d67d8dd050bd23b22c6bfd5486b04.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway

Searching for trains...

Finding the best options for your journey

\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/05fb1a94b8159a5c4555db59ff5818ac.jsonl b/test-results/.playwright-artifacts-0/traces/resources/05fb1a94b8159a5c4555db59ff5818ac.jsonl new file mode 100644 index 000000000..606310974 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/05fb1a94b8159a5c4555db59ff5818ac.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630688751.4602,"opcode":1,"data":"{\"action\":\"sync\",\"hash\":\"27234cfe8de65dd5\",\"errors\":[],\"warnings\":[],\"versionInfo\":{\"staleness\":\"stale-major\",\"expected\":\"16.2.10\",\"installed\":\"14.2.35\"}}"} +{"type":"send","time":1784630688751.663,"opcode":1,"data":"{\"event\":\"client-success\",\"clientId\":1784630688739}"} +{"type":"send","time":1784630691168.3662,"opcode":1,"data":"{\"event\":\"ping\",\"tree\":[\"\",{\"children\":[\"__PAGE__\",{},\"/\",\"refresh\"]},null,null,true],\"appDirRoute\":true}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/065ef44152c1c4345f00d3042543541a.jsonl b/test-results/.playwright-artifacts-0/traces/resources/065ef44152c1c4345f00d3042543541a.jsonl new file mode 100644 index 000000000..92a7d6c2e --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/065ef44152c1c4345f00d3042543541a.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630688859.723,"opcode":1,"data":"0{\"sid\":\"90VHvo23xjypMKuUAAAN\",\"upgrades\":[],\"pingInterval\":25000,\"pingTimeout\":20000,\"maxPayload\":1000000}"} +{"type":"send","time":1784630688859.838,"opcode":1,"data":"40/passenger-support-chat,{\"guestId\":\"09aab790-cd4c-4d72-8055-32efc70297e2\"}"} +{"type":"receive","time":1784630688860.1848,"opcode":1,"data":"40/passenger-support-chat,{\"sid\":\"3kxUs9ITmGOhJdE9AAAO\"}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/06a243f9b40a1e287a420426b86554b28df76491.json b/test-results/.playwright-artifacts-0/traces/resources/06a243f9b40a1e287a420426b86554b28df76491.json new file mode 100644 index 000000000..653ce5382 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/06a243f9b40a1e287a420426b86554b28df76491.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"HELD","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:34.596Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/07b635163977c2b4c00020a8a40cd845072c0a0f.json b/test-results/.playwright-artifacts-0/traces/resources/07b635163977c2b4c00020a8a40cd845072c0a0f.json new file mode 100644 index 000000000..c6353b14a --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/07b635163977c2b4c00020a8a40cd845072c0a0f.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:44:44.158Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/09dfc1a17ebbc0cdea60b7acd5c4d4e29afa6d9b.json b/test-results/.playwright-artifacts-0/traces/resources/09dfc1a17ebbc0cdea60b7acd5c4d4e29afa6d9b.json new file mode 100644 index 000000000..ec9b2d5da --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/09dfc1a17ebbc0cdea60b7acd5c4d4e29afa6d9b.json @@ -0,0 +1 @@ +{"version":1,"eventId":"3a4f3abb-a054-4081-b2dc-00db6086a607","eventType":"payment.succeeded","occurredAt":"2026-07-21T10:44:47.702Z","service":"PASSENGER","intentId":"81d60f30-86b0-41bc-895a-600f29b058aa","referenceType":"BOOKING","referenceId":"a9be972d-c95f-4ef3-b91b-4084df183dc3","merchantOrderId":"e2e-a9be972d-c95f-4ef3-b91b-4084df183dc3","provider":"TELEBIRR","amountMinor":1,"currency":"ETB","providerTxnId":"e2e-txn-a9be972d-c95f-4ef3-b91b-4084df183dc3","paidAt":"2026-07-21T10:44:47.702Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/0ad0a35fd6e6f931ee1cc3c7d2b6e0c33549a465.json b/test-results/.playwright-artifacts-0/traces/resources/0ad0a35fd6e6f931ee1cc3c7d2b6e0c33549a465.json new file mode 100644 index 000000000..2b8f1e8a1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/0ad0a35fd6e6f931ee1cc3c7d2b6e0c33549a465.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":18503,"column":1,"methodName":"beginWork$1","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/0ae05a28b0d054660547e74dc1556dc61289407d.json b/test-results/.playwright-artifacts-0/traces/resources/0ae05a28b0d054660547e74dc1556dc61289407d.json new file mode 100644 index 000000000..4d02af27d --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/0ae05a28b0d054660547e74dc1556dc61289407d.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:49.307Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/0b1877e26070994559d37a96807b5620.jsonl b/test-results/.playwright-artifacts-0/traces/resources/0b1877e26070994559d37a96807b5620.jsonl new file mode 100644 index 000000000..12f9e7342 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/0b1877e26070994559d37a96807b5620.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630694200.534,"opcode":1,"data":"0{\"sid\":\"jTouOKCJKCPkHH4JAAAP\",\"upgrades\":[],\"pingInterval\":25000,\"pingTimeout\":20000,\"maxPayload\":1000000}"} +{"type":"send","time":1784630694200.924,"opcode":1,"data":"40/passenger-support-chat,{\"guestId\":\"ab005297-5933-4402-9d94-cc4f13fab1af\"}"} +{"type":"receive","time":1784630694201.652,"opcode":1,"data":"40/passenger-support-chat,{\"sid\":\"V4R4fsQ9I1yups6tAAAQ\"}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/0bb88ae2bd6698f692a00823d0a939b1be71f3ee.json b/test-results/.playwright-artifacts-0/traces/resources/0bb88ae2bd6698f692a00823d0a939b1be71f3ee.json new file mode 100644 index 000000000..2a1637add --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/0bb88ae2bd6698f692a00823d0a939b1be71f3ee.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":7718,"column":1,"methodName":"flushSyncWorkOnAllRoots","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/0c67a8b1c2feccc80747ad8677416a8d6f508f15.json b/test-results/.playwright-artifacts-0/traces/resources/0c67a8b1c2feccc80747ad8677416a8d6f508f15.json new file mode 100644 index 000000000..dc3460ed4 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/0c67a8b1c2feccc80747ad8677416a8d6f508f15.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:49.825Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/0cc241583d136fefac81958581bed6db.jsonl b/test-results/.playwright-artifacts-0/traces/resources/0cc241583d136fefac81958581bed6db.jsonl new file mode 100644 index 000000000..31f768475 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/0cc241583d136fefac81958581bed6db.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630704709.566,"opcode":1,"data":"0{\"sid\":\"5GXZFz5aZLwjciArAAAT\",\"upgrades\":[],\"pingInterval\":25000,\"pingTimeout\":20000,\"maxPayload\":1000000}"} +{"type":"send","time":1784630704710.001,"opcode":1,"data":"40/passenger-support-chat,{\"guestId\":\"120d525b-c9d3-45da-851f-017769b227a2\"}"} +{"type":"receive","time":1784630704710.327,"opcode":1,"data":"40/passenger-support-chat,{\"sid\":\"UFoDH0V-lWoUVJguAAAU\"}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/0d4d9365e6fc1f0f79f00644305854cec0791060.json b/test-results/.playwright-artifacts-0/traces/resources/0d4d9365e6fc1f0f79f00644305854cec0791060.json new file mode 100644 index 000000000..34ca074d2 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/0d4d9365e6fc1f0f79f00644305854cec0791060.json @@ -0,0 +1 @@ +{"passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","holdId":"071683c6-d6be-467c-83b8-88c50c19da93","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","seatClassId":"00000000-0000-4000-8000-000000000010","bookingType":"ONE_WAY","displayCurrency":"ETB","passengers":[{"seatId":"6f8c0175-ba7d-4077-b59f-b501182b4c98","passengerName":"Adult 1","dateOfBirth":"1990-06-15","idDocumentType":"NATIONAL_ID","idDocumentNumber":"","passportNumber":"","passportCountry":"","nationality":"ETHIOPIAN","seatFareMinor":75000}],"reviewedTotalMinor":75000} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/101251eabe816f0fa22c5dc78c39da82d3af8c7a.json b/test-results/.playwright-artifacts-0/traces/resources/101251eabe816f0fa22c5dc78c39da82d3af8c7a.json new file mode 100644 index 000000000..5dd1496fb --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/101251eabe816f0fa22c5dc78c39da82d3af8c7a.json @@ -0,0 +1 @@ +{"success":true,"data":{"journeyType":"ONE_WAY","outbound":[{"type":"DIRECT","scheduleId":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","sequence":1},"destination":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","sequence":3},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stops":[{"stationId":"00000000-0000-4000-8000-000000000020","stationName":"Alpha","sequence":1,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T06:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000021","stationName":"Bravo","sequence":2,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T08:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000022","stationName":"Charlie","sequence":3,"plannedArrivalAt":"2026-07-23T10:00:00.000Z","plannedDepartureAt":null}],"availabilityByClass":{"Economy Regular":40},"hasAvailability":true,"displayCurrency":"DJF","faresByClass":[{"seatClassName":"Economy Regular","baseFareMinor":75000,"displayCurrency":"DJF","displayAmountMinor":135000}],"coachTypes":[{"coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","coachTypeCode":"STD","coachId":"00000000-0000-4000-8000-000000000102","classes":[{"name":"Economy Regular","baseFareMinor":75000,"displayCurrency":"DJF","displayAmountMinor":135000,"available":40}]}]}]},"timestamp":"2026-07-21T10:45:12.247Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/113ef7bc1ddbb9932f87ab52b1c6c6d273a48c10.htc b/test-results/.playwright-artifacts-0/traces/resources/113ef7bc1ddbb9932f87ab52b1c6c6d273a48c10.htc new file mode 100644 index 000000000..b52c7e8de --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/113ef7bc1ddbb9932f87ab52b1c6c6d273a48c10.htc @@ -0,0 +1 @@ +0:["development",[["children","booking","children","passengers",["passengers",{"children":["__PAGE__",{}]}],null,null]]] diff --git a/test-results/.playwright-artifacts-0/traces/resources/116f64d10305cedc78b5b044bf7ba4a2173dd66e.json b/test-results/.playwright-artifacts-0/traces/resources/116f64d10305cedc78b5b044bf7ba4a2173dd66e.json new file mode 100644 index 000000000..22480764b --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/116f64d10305cedc78b5b044bf7ba4a2173dd66e.json @@ -0,0 +1 @@ +{"success":true,"data":{"unreadCount":0},"timestamp":"2026-07-21T10:45:12.295Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/13663774a8f4c2431fa29ccce594e238d122fb22.json b/test-results/.playwright-artifacts-0/traces/resources/13663774a8f4c2431fa29ccce594e238d122fb22.json new file mode 100644 index 000000000..3992c6387 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/13663774a8f4c2431fa29ccce594e238d122fb22.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:48.790Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/1438b0cdf4411c9bb21f6ee77e6543591edcfa7e.json b/test-results/.playwright-artifacts-0/traces/resources/1438b0cdf4411c9bb21f6ee77e6543591edcfa7e.json new file mode 100644 index 000000000..ea36c40bd --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/1438b0cdf4411c9bb21f6ee77e6543591edcfa7e.json @@ -0,0 +1 @@ +{"success":true,"data":{"count":1,"passengerIds":["9bdebd16-38cd-416d-880b-8a06a1d5c975"],"passengers":[{"id":"9bdebd16-38cd-416d-880b-8a06a1d5c975","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","nationality":"ETHIOPIAN","phone":"+251912345678","email":""}],"message":"Passenger details saved successfully"},"timestamp":"2026-07-21T10:44:41.194Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/15248f7d8ff43b3432aab242984f5015a4daab9d.json b/test-results/.playwright-artifacts-0/traces/resources/15248f7d8ff43b3432aab242984f5015a4daab9d.json new file mode 100644 index 000000000..ea1c546b6 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/15248f7d8ff43b3432aab242984f5015a4daab9d.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"07f85ff8-6213-4111-8e3b-0236282bef61","bookingRef":"IRASOD","status":"CONFIRMED","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:27.310Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","number":"1A","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"payment":{"method":"WALLET","status":"SUCCEEDED","amountMinor":75000,"currency":"ETB"},"tickets":[{"id":"ba09a1aa-35d8-4144-9ed5-73e4e37596dc","passengerName":"Adult 1","leg":1,"qrPayload":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPQAAAD0CAYAAACsLwv+AAAAAklEQVR4AewaftIAAA31SURBVO3BQY7cSBDAQFLo/3+Z62OeChDUM/YKGWF/sNZ6hYu11mtcrLVe42Kt9RoXa63XuFhrvcbFWus1LtZar3Gx1nqNi7XWa1ystV7jYq31Ghdrrde4WGu9xsVa6zUu1lqv8eEhld9UcaJyUjGpTBWTylTxhMpUMalMFZPKVHGiMlXcoXJScYfKScWJylQxqZxU3KHymyqeuFhrvcbFWus1LtZar/Hhyyq+SeWOiknlpGJSmSomlaliUrlD5Y6KE5WpYlI5qbhD5Y6KJypOKiaVSWWquKPim1S+6WKt9RoXa63XuFhrvcaHH6ZyR8UdKicVk8pU8YTKScUdKicqU8WJylRxojJVTCpPqNxRMalMFScVk8o3qdxR8ZMu1lqvcbHWeo2LtdZrfHg5lanipGJSmSpOVCaVqWJSmSruULlDZaqYKiaVk4rfVDGp3FExqUwV/2cXa63XuFhrvcbFWus1PrxcxYnKEyonFZPKVHGiMlVMKk+oTBVTxYnKScU3qUwVk8odFW9ysdZ6jYu11mtcrLVe48MPq/hNFZPKVHFHxaQyVUwqk8pUMalMFScqJxV3qJyo3FExqUwVk8pUMalMFZPKVDGp/KSKf8nFWus1LtZar3Gx1nqND1+m8n9WMalMFZPKVDGpfFPFpHKiMlU8UTGp/J+pTBUnKv+yi7XWa1ystV7jYq31Gh8eqviXqEwVJxUnFZPKHRWTylRxUjGp3FHxkyomlaliUjlRmSqeqJhU7qj4P7lYa73GxVrrNS7WWq9hf/CAylQxqXxTxYnK31QxqXxTxaTyTRWTylTxk1SmiknliYo7VL6p4iddrLVe42Kt9RoXa63X+PCPqbhDZao4UTmpuEPlpGJSmSq+qeKbKp5QeULlpGJSuUPlpOKbVE4qnrhYa73GxVrrNS7WWq/x4YdVnKicqJxUTCp3VJyoTBUnKlPFVPGbVKaKSWWqmFSmihOVqeJEZao4UZlUnqiYVCaVJypOKr7pYq31Ghdrrde4WGu9xocfpjJVTBWTylQxqUwqU8WkMlVMKlPFVDGpTBV3qJxUnKhMFScVJxV3qJxUnKj8S1ROKk5UpoqTikllqnjiYq31Ghdrrde4WGu9xoeHKr6pYlI5qZhUpopJZaqYVKaKJ1SmihOVqWKqmFSmikllqniiYlJ5ouKOikllqphUJpU7VKaKE5WpYlL5SRdrrde4WGu9xsVa6zU+PKTykyomlZOKO1SmiknlROWkYlL5poo7VKaKJyomlTtUpopJZaqYKk4qTlT+popvulhrvcbFWus1LtZar/Hhl6lMFZPKHSpTxU+qmFSmijsqnlA5qZhUJpU7VKaKqeJE5Y6KSWWqOFE5qZhUpoqfpDJVPHGx1nqNi7XWa1ystV7jw0MVJypTxaQyVdyhMqlMFScVk8pPqnhCZaqYVCaVk4pJ5aRiUjmpmComlUllqvibVKaKO1ROKr7pYq31Ghdrrde4WGu9hv3BF6k8UTGpTBUnKlPFpHJSMalMFZPKScWkMlVMKlPFpHJScaIyVUwqT1T8TSp3VPwmlZOKJy7WWq9xsdZ6jYu11mt8+GEVT1Q8oXJSMancUXGi8oTKScUdFZPKExWTylRxojJVTCpTxaRyUnGiclIxqZxUTConFd90sdZ6jYu11mtcrLVew/7gi1ROKk5UTir+JSp3VEwqJxX/EpU7Kn6SyhMVk8pUMancUTGpnFQ8cbHWeo2LtdZrXKy1XuPDQypTxYnKVHFSMak8UTGp/KSKk4onVKaKSWWqOFG5o2JS+ZsqnqiYVKaKSWWqmFROKr7pYq31Ghdrrde4WGu9hv3BAyonFScqU8WkMlVMKlPFicpUcaJyUnGiMlWcqEwVv0nljooTlTsqTlSeqPibVKaKb7pYa73GxVrrNS7WWq/x4csqJpWpYqqYVKaKSWWqOFGZKk5UpooTlaliqjhRmSruUDmpmFSmip9UcaLyRMWkcqIyVUwqJxWTylQxqUwVP+lirfUaF2ut17hYa72G/cEDKlPFEypPVJyonFRMKlPFicpUMalMFZPKVHGiclIxqZxUnKj8popJ5YmKSeWOiidUTiqeuFhrvcbFWus1LtZar2F/8ItUpoo7VKaKE5WpYlI5qThRuaPiDpWpYlKZKiaVk4qfpDJVTCpTxYnKVPFNKlPFHSpTxW+6WGu9xsVa6zUu1lqvYX/wRSonFZPKN1VMKj+pYlKZKk5Upoo7VP6miidUpopJ5aTiCZVvqrhDZap44mKt9RoXa63XuFhrvcaHL6s4UTmpuEPliYoTlaliUjlRmSqmikllqrij4g6Vk4o7VKaKJyqeUJkqTiruUHmi4psu1lqvcbHWeo2LtdZrfHhI5Y6KSeVEZar4JpWTiknlCZWpYqo4UblDZao4qZhUTiqmikllqrhDZar4TSpTxR0qU8WkMlU8cbHWeo2LtdZrXKy1XuPDQxUnKpPKHRV/k8pUcYfKVDGpTBUnFZPKScUTFd+kMlWcVEwqU8VPqrhDZar4TRdrrde4WGu9xsVa6zXsDx5QmSomld9UcaIyVUwqU8UTKlPFpPJ/UnGiMlXcoTJVTConFScq/7KKJy7WWq9xsdZ6jYu11mt8+GUVJypTxd+kckfFVDGpnFRMKk9UTCpTxaQyVTyhckfFpHJSMamcVJyoTBWTyh0VJyrfdLHWeo2LtdZrXKy1XsP+4ItUpopJZaqYVO6omFS+qeJE5YmKO1SmikllqphUTiomlaniRGWquENlqnhCZao4UZkq/k8u1lqvcbHWeo2LtdZrfPiyijtUpooTlZOKO1SmiknlpOJEZao4UZkqporfVHFHxaQyVUwqU8WkMlXcUTGpPKFyUnGiMlV808Va6zUu1lqvcbHWeo0PD6lMFZPKHSonFZPKScWkMlU8oXJS8YTKVDGp3FFxovJNFScVk8pUcaIyVUwqJxWTyknFicpU8Zsu1lqvcbHWeo2LtdZr2B/8IJWp4kRlqphU7qh4QuWkYlI5qZhUTipOVO6omFTuqDhR+UkVP0nliYpJ5Y6KJy7WWq9xsdZ6jYu11mt8+MtUpopJ5aRiUplUpopvUpkqJpVJ5aTiROWk4kRlqphU7lA5qZhUTipOVO6omFTuqJhU7qg4Ufmmi7XWa1ystV7jYq31Gh9+mcodFScqJxWTylRxUjGpnKjcUXFHxaRyonKiclLxTRV3qJxUnKhMFZPKVDGpPKFyUvFNF2ut17hYa73GxVrrNewPvkjljopJ5aTiROWk4kRlqrhDZaqYVKaKSeWJiidU7qg4UTmp+EkqT1ScqEwVJyonFU9crLVe42Kt9RoXa63X+PBlFXeonFRMKlPFScWJyt+kMlU8oXJS8ZNUpooTlaliUpkqJpWpYqq4Q2VSmSpOVE4qJpVvulhrvcbFWus1LtZar/HhIZUnKk5UpopJ5Q6VqeIOlaliqphUpoo7VE4qpoo7VKaKO1SeqJhUTlSmihOVqWJSOal4omJS+UkXa63XuFhrvcbFWus1PjxUcaJyonJS8YTKHSpTxYnKVHGHyh0VJypTxaRyovJNKicV36RyR8WJylRxUjGpnFR808Va6zUu1lqvcbHWeo0PD6lMFScVd6icVEwqU8WkcofKVDGpTCpTxaRyUjGpnKhMFZPKScWJyknFicqJylTxm1SmiqniDpU7VKaKJy7WWq9xsdZ6jYu11mvYHzygMlXcoXJS8YTKScWJyhMVk8pUMalMFZPKScWJyknFicpU8U0qJxV3qJxUvMnFWus1LtZar3Gx1nqND1+mMlVMKneonFTcUXGiclLxRMUTFZPKicoTKneonFRMKneoTBUnFZPKicoTFScqJxVPXKy1XuNirfUaF2ut1/jwUMWkMqlMFd+k8k0Vk8odKj9J5Y6KO1SmikllUvlNFZPKVDGp3FFxojJVnKhMFT/pYq31Ghdrrde4WGu9hv3BL1KZKk5UpopJZaqYVKaKE5Wp4jep/J9UPKEyVZyonFRMKlPFpPJNFScqJxVPXKy1XuNirfUaF2ut1/jwyyruqLhD5Q6VE5U7KiaVqeKOiknlpOIOlaniROVEZar4SRXfVHGHyh0Vk8o3Xay1XuNirfUaF2ut1/jwkMpvqpgqTlQmlZOKSWWqOFH5l6hMFScqT1ScqNyhMlU8oXKHylRxh8pJxTddrLVe42Kt9RoXa63X+PBlFd+kcqLyTSpTxR0VT1R8U8UTFXeonFRMKpPKVDGpTBV3VEwqJxV3qEwVv+lirfUaF2ut17hYa73Ghx+mckfFExVPqNyhclJxh8pUcYfKN6lMFXdUnFTcUTGp3KFyovJExaQyVfyki7XWa1ystV7jYq31Gh9eTmWqmFSmiknlpOJE5aRiqvibKp6omFSmikllqphUTiomlZOKE5Wp4g6VE5WTiicu1lqvcbHWeo2LtdZrfHgZlaliUpkqJpWp4g6VO1S+qWJSOak4UZkqTlS+qWJSeUJlqrhDZao4qZhUpopvulhrvcbFWus1LtZar/Hhh1X8pIpJZVL5TRUnKlPFpPJNFT9J5Q6VE5UnKiaVqeIOlaliUpkq/qaLtdZrXKy1XuNirfUaH75M5TepfFPFEyonFZPKVDGpnFRMKlPFpDJV3KFyR8UdKlPFpDKpTBXfVHFScUfFT7pYa73GxVrrNS7WWq9hf7DWeoWLtdZrXKy1XuNirfUaF2ut17hYa73GxVrrNS7WWq9xsdZ6jYu11mtcrLVe42Kt9RoXa63XuFhrvcbFWus1LtZar/Ef/ojZHigL/yoAAAAASUVORK5CYII=","barcodePayload":"IRASOD1D2C765B","status":"ACTIVE"}]},"timestamp":"2026-07-21T10:44:30.596Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/15d1baba387b44284f2050522e5f749028615069.json b/test-results/.playwright-artifacts-0/traces/resources/15d1baba387b44284f2050522e5f749028615069.json new file mode 100644 index 000000000..33a500516 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/15d1baba387b44284f2050522e5f749028615069.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:43.371Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/17213f7778157a4940cdcf81bd3dc4f30e96600c.json b/test-results/.playwright-artifacts-0/traces/resources/17213f7778157a4940cdcf81bd3dc4f30e96600c.json new file mode 100644 index 000000000..70e877aa4 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/17213f7778157a4940cdcf81bd3dc4f30e96600c.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:44:54.855Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/1829053a22e33f2a12819b088d3f1e14c0e487d4.json b/test-results/.playwright-artifacts-0/traces/resources/1829053a22e33f2a12819b088d3f1e14c0e487d4.json new file mode 100644 index 000000000..7d5d6897e --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/1829053a22e33f2a12819b088d3f1e14c0e487d4.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":26172,"column":1,"methodName":"eval","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/1bfc29f43ed7ce2a7e5b5bcd69699d79e347e384.json b/test-results/.playwright-artifacts-0/traces/resources/1bfc29f43ed7ce2a7e5b5bcd69699d79e347e384.json new file mode 100644 index 000000000..ecc1e88bd --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/1bfc29f43ed7ce2a7e5b5bcd69699d79e347e384.json @@ -0,0 +1 @@ +{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","journeyDirection":"OUTBOUND","passengers":[{"passengerId":"temp-1784630674460-0","seatId":"cb09fd79-b0a7-4abb-bcde-209f1781e89f"}]} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/1c04864f4b3d595a496848de3b2c0ce1743e8652.json b/test-results/.playwright-artifacts-0/traces/resources/1c04864f4b3d595a496848de3b2c0ce1743e8652.json new file mode 100644 index 000000000..6c8513a95 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/1c04864f4b3d595a496848de3b2c0ce1743e8652.json @@ -0,0 +1 @@ +{"success":false,"statusCode":404,"message":"Cannot POST /promos/validate","error":"Not Found","timestamp":"2026-07-21T10:44:31.342Z","path":"/promos/validate"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/1ec7e434dbfbe3d94b0c34d199793ec831875975.json b/test-results/.playwright-artifacts-0/traces/resources/1ec7e434dbfbe3d94b0c34d199793ec831875975.json new file mode 100644 index 000000000..cca53f8c6 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/1ec7e434dbfbe3d94b0c34d199793ec831875975.json @@ -0,0 +1 @@ +{"success":true,"data":{"unreadCount":0},"timestamp":"2026-07-21T10:44:31.417Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/1f414bc61b9ba60898dc36ca81d059801dedf11f.json b/test-results/.playwright-artifacts-0/traces/resources/1f414bc61b9ba60898dc36ca81d059801dedf11f.json new file mode 100644 index 000000000..b12ed30b0 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/1f414bc61b9ba60898dc36ca81d059801dedf11f.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":20614,"column":1,"methodName":"Object.invokeGuardedCallbackImpl","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/1f7797283232c4e95279bd55421c27d82e746edc.htc b/test-results/.playwright-artifacts-0/traces/resources/1f7797283232c4e95279bd55421c27d82e746edc.htc new file mode 100644 index 000000000..016fa826f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/1f7797283232c4e95279bd55421c27d82e746edc.htc @@ -0,0 +1,11 @@ +2:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/client-page.js",["app-pages-internals","static/chunks/app-pages-internals.js"],"ClientPageRoot"] +3:I["(app-pages-browser)/./src/app/booking/seats/page.tsx",["app/booking/seats/page","static/chunks/app/booking/seats/page.js"],"default",1] +4:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js",["app-pages-internals","static/chunks/app-pages-internals.js"],""] +5:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/render-from-template-context.js",["app-pages-internals","static/chunks/app-pages-internals.js"],""] +1:D{"name":"","env":"Server"} +6:D{"name":"","env":"Server"} +7:D{"name":"r6","env":"Server"} +7:null +0:["development",[["children","booking","children","seats",["seats",{"children":["__PAGE__",{}]}],["seats",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","booking","children","seats","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null],["$L6","$7"]]]] +6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","3",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["$","meta","4",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","5",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","6",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","7",{"name":"robots","content":"index, follow"}],["$","meta","8",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["$","meta","9",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","10",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["$","meta","11",{"property":"og:url","content":"https://passenger.edrsc.com"}],["$","meta","12",{"property":"og:site_name","content":"EDR Passenger Portal"}],["$","meta","13",{"property":"og:locale","content":"en_US"}],["$","meta","14",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["$","meta","15",{"property":"og:image:width","content":"1200"}],["$","meta","16",{"property":"og:image:height","content":"630"}],["$","meta","17",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["$","meta","18",{"property":"og:type","content":"website"}],["$","meta","19",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","20",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","21",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["$","meta","22",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["$","link","23",{"rel":"shortcut icon","href":"/edr-logo.png"}],["$","link","24",{"rel":"icon","href":"/edr-logo.png"}],["$","link","25",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]] +1:null diff --git a/test-results/.playwright-artifacts-0/traces/resources/1f79aedeb57b00b785cce8108d9304fbef111530.json b/test-results/.playwright-artifacts-0/traces/resources/1f79aedeb57b00b785cce8108d9304fbef111530.json new file mode 100644 index 000000000..3ee45a548 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/1f79aedeb57b00b785cce8108d9304fbef111530.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:41.860Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/1fd87a81cf5db6009496f4104f0284133fda2d80.json b/test-results/.playwright-artifacts-0/traces/resources/1fd87a81cf5db6009496f4104f0284133fda2d80.json new file mode 100644 index 000000000..99d0ada36 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/1fd87a81cf5db6009496f4104f0284133fda2d80.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:34.590Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/2069d3b3502b014481b1f6b3f4869fafc3e7cc1f.json b/test-results/.playwright-artifacts-0/traces/resources/2069d3b3502b014481b1f6b3f4869fafc3e7cc1f.json new file mode 100644 index 000000000..fdf53440b --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/2069d3b3502b014481b1f6b3f4869fafc3e7cc1f.json @@ -0,0 +1 @@ +{"success":true,"data":{"count":1,"passengerIds":["14ac51f9-a03b-4867-a943-0b84fa4cc99a"],"passengers":[{"id":"14ac51f9-a03b-4867-a943-0b84fa4cc99a","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","nationality":"ETHIOPIAN","phone":"+251912345678","email":""}],"message":"Passenger details saved successfully"},"timestamp":"2026-07-21T10:44:33.470Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/20a5f72385b74f8ac1f5b41ade04fdcd7f834d66.json b/test-results/.playwright-artifacts-0/traces/resources/20a5f72385b74f8ac1f5b41ade04fdcd7f834d66.json new file mode 100644 index 000000000..dcf4cc8de --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/20a5f72385b74f8ac1f5b41ade04fdcd7f834d66.json @@ -0,0 +1 @@ +{"success":true,"data":{"journeyType":"ONE_WAY","outbound":[{"type":"DIRECT","scheduleId":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","sequence":1},"destination":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","sequence":3},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stops":[{"stationId":"00000000-0000-4000-8000-000000000020","stationName":"Alpha","sequence":1,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T06:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000021","stationName":"Bravo","sequence":2,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T08:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000022","stationName":"Charlie","sequence":3,"plannedArrivalAt":"2026-07-23T10:00:00.000Z","plannedDepartureAt":null}],"availabilityByClass":{"Economy Regular":48},"hasAvailability":true,"displayCurrency":"ETB","faresByClass":[{"seatClassName":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000}],"coachTypes":[{"coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","coachTypeCode":"STD","coachId":"00000000-0000-4000-8000-000000000102","classes":[{"name":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000,"available":48}]}]}]},"timestamp":"2026-07-21T10:44:23.123Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/20eaf6c4dd724378704d55ab87316a47ee838e1f.json b/test-results/.playwright-artifacts-0/traces/resources/20eaf6c4dd724378704d55ab87316a47ee838e1f.json new file mode 100644 index 000000000..6993f5d97 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/20eaf6c4dd724378704d55ab87316a47ee838e1f.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:35.455Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/215f328f1691572a841b76b80b05cdf0ca2de2dc.json b/test-results/.playwright-artifacts-0/traces/resources/215f328f1691572a841b76b80b05cdf0ca2de2dc.json new file mode 100644 index 000000000..430dc1ce6 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/215f328f1691572a841b76b80b05cdf0ca2de2dc.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:54.728Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/21abbbd3539b501cce8c56a100ed3da1ffce4f82.json b/test-results/.playwright-artifacts-0/traces/resources/21abbbd3539b501cce8c56a100ed3da1ffce4f82.json new file mode 100644 index 000000000..67ddadaa8 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/21abbbd3539b501cce8c56a100ed3da1ffce4f82.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"HELD","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"HELD","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"HELD","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"HELD","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:58.939Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/225e3a7d848baed8b1d780122053a599ece14f75.json b/test-results/.playwright-artifacts-0/traces/resources/225e3a7d848baed8b1d780122053a599ece14f75.json new file mode 100644 index 000000000..54151502c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/225e3a7d848baed8b1d780122053a599ece14f75.json @@ -0,0 +1 @@ +{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","journeyDirection":"OUTBOUND","passengers":[{"passengerId":"temp-1784630707192-0","seatId":"d25631fa-6857-446d-ad23-094a27deda66"}]} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/22e42e74ce029bfb314a4487f6c3102d2f7f6079.json b/test-results/.playwright-artifacts-0/traces/resources/22e42e74ce029bfb314a4487f6c3102d2f7f6079.json new file mode 100644 index 000000000..2e9f23764 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/22e42e74ce029bfb314a4487f6c3102d2f7f6079.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":24887,"column":1,"methodName":"performSyncWorkOnRoot","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/23bb7fa6652b2042d2d0700c294d89ec5942d76d.json b/test-results/.playwright-artifacts-0/traces/resources/23bb7fa6652b2042d2d0700c294d89ec5942d76d.json new file mode 100644 index 000000000..89518990d --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/23bb7fa6652b2042d2d0700c294d89ec5942d76d.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:41.843Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/27f18a2326fac473460386388ea4b490dc99db84.json b/test-results/.playwright-artifacts-0/traces/resources/27f18a2326fac473460386388ea4b490dc99db84.json new file mode 100644 index 000000000..fb7115bd1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/27f18a2326fac473460386388ea4b490dc99db84.json @@ -0,0 +1 @@ +{"originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","date":"2026-07-23","adultCount":2,"childCount":3,"nationality":"ETHIOPIAN","journeyType":"ONE_WAY"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/28390cfd76995f1e73d8675ab5221add8cfc2121.json b/test-results/.playwright-artifacts-0/traces/resources/28390cfd76995f1e73d8675ab5221add8cfc2121.json new file mode 100644 index 000000000..87c666153 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/28390cfd76995f1e73d8675ab5221add8cfc2121.json @@ -0,0 +1 @@ +{"success":false,"statusCode":404,"message":"Cannot POST /promos/validate","error":"Not Found","timestamp":"2026-07-21T10:44:31.340Z","path":"/promos/validate"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/2841b6ceea0072484b07e7c1900cb877.jsonl b/test-results/.playwright-artifacts-0/traces/resources/2841b6ceea0072484b07e7c1900cb877.jsonl new file mode 100644 index 000000000..2c872c267 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/2841b6ceea0072484b07e7c1900cb877.jsonl @@ -0,0 +1,2 @@ +{"type":"receive","time":1784630679521.568,"opcode":1,"data":"{\"action\":\"sync\",\"hash\":\"27234cfe8de65dd5\",\"errors\":[],\"warnings\":[],\"versionInfo\":{\"staleness\":\"stale-major\",\"expected\":\"16.2.10\",\"installed\":\"14.2.35\"}}"} +{"type":"send","time":1784630679521.968,"opcode":1,"data":"{\"event\":\"client-success\",\"clientId\":1784630679531}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/2a6a91497b3279de916b94656cd8aa795910cfc9.json b/test-results/.playwright-artifacts-0/traces/resources/2a6a91497b3279de916b94656cd8aa795910cfc9.json new file mode 100644 index 000000000..870d07101 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/2a6a91497b3279de916b94656cd8aa795910cfc9.json @@ -0,0 +1 @@ +{"passengers":[{"name":"Adult 1","dateOfBirth":"1990-06-15","gender":"Male","nationality":"ETHIOPIAN","nationalId":"","passportNumber":"","passportCountry":"","passportIssueDate":"","passportExpiryDate":"","passportIssuingAuthority":"","phone":"+251912345678","email":"","isPrimaryPassenger":true}],"deviceId":"2398e579-41dd-4cef-804f-67ea683a452a"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/2b9478bbea2a4348dc9b4d953a6fa00f576c149e.json b/test-results/.playwright-artifacts-0/traces/resources/2b9478bbea2a4348dc9b4d953a6fa00f576c149e.json new file mode 100644 index 000000000..5e23bb494 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/2b9478bbea2a4348dc9b4d953a6fa00f576c149e.json @@ -0,0 +1 @@ +{"success":true,"data":{"intentId":"335b96b3-667f-409c-a835-f74dc7968610","status":"SUCCEEDED"},"timestamp":"2026-07-21T10:44:36.632Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/2bf0a53eca123fe45e951433615698718227139b.json b/test-results/.playwright-artifacts-0/traces/resources/2bf0a53eca123fe45e951433615698718227139b.json new file mode 100644 index 000000000..577263006 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/2bf0a53eca123fe45e951433615698718227139b.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"BRONZE","pointsBalance":1250,"lifetimePoints":0},"wallet":{"balanceMinor":99925000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:32.041Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/300c4ae72ee2efad55e9182357ac18ff7815f466.json b/test-results/.playwright-artifacts-0/traces/resources/300c4ae72ee2efad55e9182357ac18ff7815f466.json new file mode 100644 index 000000000..fd242b6e9 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/300c4ae72ee2efad55e9182357ac18ff7815f466.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:47.424Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/30bf61ea750f863e7f7e839159c538a45d97878a.json b/test-results/.playwright-artifacts-0/traces/resources/30bf61ea750f863e7f7e839159c538a45d97878a.json new file mode 100644 index 000000000..c15177898 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/30bf61ea750f863e7f7e839159c538a45d97878a.json @@ -0,0 +1 @@ +{"success":true,"data":{"holdId":"874274a3-2380-4efe-b68e-2687319fd54b","expiresAt":"2026-07-21T10:49:58.796Z","createdAt":"2026-07-21T10:44:58.810Z","ttlSeconds":299,"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","fullRouteOrigin":"Alpha","fullRouteDestination":"Charlie"},"leg":{"originStationId":"00000000-0000-4000-8000-000000000020","originStationName":"Alpha","originStationCode":"AAA","originSequence":1,"destinationStationId":"00000000-0000-4000-8000-000000000022","destinationStationName":"Charlie","destinationStationCode":"CCC","destinationSequence":3},"passengers":[{"passengerId":"temp-1784630698791-0","seat":{"id":"fae276bc-386b-4045-9242-f3a7f295423f","label":"2A","seatNumber":"2A","coach":"UI-C1","seatClass":"Standard","row":2,"col":"A"}},{"passengerId":"temp-1784630698791-1","seat":{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","label":"2B","seatNumber":"2B","coach":"UI-C1","seatClass":"Standard","row":2,"col":"B"}},{"passengerId":"temp-1784630698791-2","seat":{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","label":"2C","seatNumber":"2C","coach":"UI-C1","seatClass":"Standard","row":2,"col":"C"}}]},"timestamp":"2026-07-21T10:44:58.817Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/31939656faadbb4ede7c8bc994bb6d6322618874.json b/test-results/.playwright-artifacts-0/traces/resources/31939656faadbb4ede7c8bc994bb6d6322618874.json new file mode 100644 index 000000000..241ab1f73 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/31939656faadbb4ede7c8bc994bb6d6322618874.json @@ -0,0 +1 @@ +{"success":true,"data":{"holdId":"071683c6-d6be-467c-83b8-88c50c19da93","expiresAt":"2026-07-21T10:49:46.428Z","createdAt":"2026-07-21T10:44:46.438Z","ttlSeconds":299,"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","fullRouteOrigin":"Alpha","fullRouteDestination":"Charlie"},"leg":{"originStationId":"00000000-0000-4000-8000-000000000020","originStationName":"Alpha","originStationCode":"AAA","originSequence":1,"destinationStationId":"00000000-0000-4000-8000-000000000022","destinationStationName":"Charlie","destinationStationCode":"CCC","destinationSequence":3},"passengers":[{"passengerId":"temp-1784630686421-0","seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","label":"1D","seatNumber":"1D","coach":"UI-C1","seatClass":"Standard","row":1,"col":"D"}}]},"timestamp":"2026-07-21T10:44:46.443Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/33113df3171e9f673952f4368877ab89f1208099.json b/test-results/.playwright-artifacts-0/traces/resources/33113df3171e9f673952f4368877ab89f1208099.json new file mode 100644 index 000000000..0cf990d65 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/33113df3171e9f673952f4368877ab89f1208099.json @@ -0,0 +1 @@ +{"success":true,"data":{"unreadCount":0},"timestamp":"2026-07-21T10:45:04.689Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/336a4267e41479e136a7336af9da6402f88ac3cb.json b/test-results/.playwright-artifacts-0/traces/resources/336a4267e41479e136a7336af9da6402f88ac3cb.json new file mode 100644 index 000000000..5c34def83 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/336a4267e41479e136a7336af9da6402f88ac3cb.json @@ -0,0 +1 @@ +{"success":true,"data":{"unreadCount":0},"timestamp":"2026-07-21T10:44:23.139Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/33ed2d14efeec23218009d0934e8b8efc4579310.json b/test-results/.playwright-artifacts-0/traces/resources/33ed2d14efeec23218009d0934e8b8efc4579310.json new file mode 100644 index 000000000..dfca5110a --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/33ed2d14efeec23218009d0934e8b8efc4579310.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:41.353Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/34032df3612db763efee1b37f0115719f67a1d7c.json b/test-results/.playwright-artifacts-0/traces/resources/34032df3612db763efee1b37f0115719f67a1d7c.json new file mode 100644 index 000000000..31dacee63 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/34032df3612db763efee1b37f0115719f67a1d7c.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"BRONZE","pointsBalance":1250,"lifetimePoints":0},"wallet":{"balanceMinor":99925000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:31.350Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/374b81585eafe7c75f449f8e3d70a26eb9c3395d.json b/test-results/.playwright-artifacts-0/traces/resources/374b81585eafe7c75f449f8e3d70a26eb9c3395d.json new file mode 100644 index 000000000..1cdc5be9c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/374b81585eafe7c75f449f8e3d70a26eb9c3395d.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:52.918Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css b/test-results/.playwright-artifacts-0/traces/resources/37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css new file mode 100644 index 000000000..483240e50 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/37e7d4287aa1f2d57c140ce1ee7927af607dbbff.css @@ -0,0 +1,4462 @@ +/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***! + \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +*, ::before, ::after { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; +} + +::backdrop { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; +}/* +! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com +*//* +1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) +2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) +*/ + +*, +::before, +::after { + box-sizing: border-box; /* 1 */ + border-width: 0; /* 2 */ + border-style: solid; /* 2 */ + border-color: #e5e7eb; /* 2 */ +} + +::before, +::after { + --tw-content: ''; +} + +/* +1. Use a consistent sensible line-height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +3. Use a more readable tab size. +4. Use the user's configured `sans` font-family by default. +5. Use the user's configured `sans` font-feature-settings by default. +6. Use the user's configured `sans` font-variation-settings by default. +7. Disable tap highlights on iOS +*/ + +html, +:host { + line-height: 1.5; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ + -moz-tab-size: 4; /* 3 */ + -o-tab-size: 4; + tab-size: 4; /* 3 */ + font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */ + font-feature-settings: normal; /* 5 */ + font-variation-settings: normal; /* 6 */ + -webkit-tap-highlight-color: transparent; /* 7 */ +} + +/* +1. Remove the margin in all browsers. +2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. +*/ + +body { + margin: 0; /* 1 */ + line-height: inherit; /* 2 */ +} + +/* +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +3. Ensure horizontal rules are visible by default. +*/ + +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ + border-top-width: 1px; /* 3 */ +} + +/* +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/* +Remove the default font size and weight for headings. +*/ + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/* +Reset links to optimize for opt-in styling instead of opt-out. +*/ + +a { + color: inherit; + text-decoration: inherit; +} + +/* +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/* +1. Use the user's configured `mono` font-family by default. +2. Use the user's configured `mono` font-feature-settings by default. +3. Use the user's configured `mono` font-variation-settings by default. +4. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */ + font-feature-settings: normal; /* 2 */ + font-variation-settings: normal; /* 3 */ + font-size: 1em; /* 4 */ +} + +/* +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/* +Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +3. Remove gaps between table borders by default. +*/ + +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ + border-collapse: collapse; /* 3 */ +} + +/* +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +3. Remove default padding in all browsers. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-feature-settings: inherit; /* 1 */ + font-variation-settings: inherit; /* 1 */ + font-size: 100%; /* 1 */ + font-weight: inherit; /* 1 */ + line-height: inherit; /* 1 */ + letter-spacing: inherit; /* 1 */ + color: inherit; /* 1 */ + margin: 0; /* 2 */ + padding: 0; /* 3 */ +} + +/* +Remove the inheritance of text transform in Edge and Firefox. +*/ + +button, +select { + text-transform: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Remove default button styles. +*/ + +button, +input:where([type='button']), +input:where([type='reset']), +input:where([type='submit']) { + -webkit-appearance: button; /* 1 */ + background-color: transparent; /* 2 */ + background-image: none; /* 2 */ +} + +/* +Use the modern Firefox focus style for all focusable elements. +*/ + +:-moz-focusring { + outline: auto; +} + +/* +Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/* +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/* +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/* +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/* +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to `inherit` in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/* +Removes the default spacing and border for appropriate elements. +*/ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +fieldset { + margin: 0; + padding: 0; +} + +legend { + padding: 0; +} + +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} + +/* +Reset default styling for dialogs. +*/ +dialog { + padding: 0; +} + +/* +Prevent resizing textareas horizontally by default. +*/ + +textarea { + resize: vertical; +} + +/* +1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +2. Set the default placeholder color to the user's configured gray 400 color. +*/ + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +input::placeholder, +textarea::placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +/* +Set the default cursor for buttons. +*/ + +button, +[role="button"] { + cursor: pointer; +} + +/* +Make sure disabled buttons don't get the pointer cursor. +*/ +:disabled { + cursor: default; +} + +/* +1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) +2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; /* 1 */ + vertical-align: middle; /* 2 */ +} + +/* +Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + +img, +video { + max-width: 100%; + height: auto; +} + +/* Make elements with the HTML hidden attribute stay hidden by default */ +[hidden]:where(:not([hidden="until-found"])) { + display: none; +} + body { + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1)); + --tw-text-opacity: 1; + color: rgb(17 24 39 / var(--tw-text-opacity, 1)); + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + body:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1)); + --tw-text-opacity: 1; + color: rgb(243 244 246 / var(--tw-text-opacity, 1)); +} +.\!container { + width: 100% !important; +} +.container { + width: 100%; +} +@media (min-width: 640px) { + + .\!container { + max-width: 640px !important; + } + + .container { + max-width: 640px; + } +} +@media (min-width: 768px) { + + .\!container { + max-width: 768px !important; + } + + .container { + max-width: 768px; + } +} +@media (min-width: 1024px) { + + .\!container { + max-width: 1024px !important; + } + + .container { + max-width: 1024px; + } +} +@media (min-width: 1280px) { + + .\!container { + max-width: 1280px !important; + } + + .container { + max-width: 1280px; + } +} +@media (min-width: 1536px) { + + .\!container { + max-width: 1536px !important; + } + + .container { + max-width: 1536px; + } +} +.btn-primary { + display: inline-flex; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + align-items: center; + justify-content: center; + gap: 0.5rem; + border-radius: 0.75rem; + --tw-bg-opacity: 1; + background-color: rgb(20 113 76 / var(--tw-bg-opacity, 1)); + padding-left: 1.5rem; + padding-right: 1.5rem; + padding-top: 0.75rem; + padding-bottom: 0.75rem; + font-weight: 600; + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity, 1)); + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 200ms; +} +.btn-primary:hover { + --tw-translate-y: -0.125rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.btn-primary:disabled { + cursor: not-allowed; + opacity: 0.5; +} +.btn-primary:hover { + --tw-bg-opacity: 1; + background-color: rgb(16 89 60 / var(--tw-bg-opacity, 1)); +} +.btn-secondary { + border-radius: 0.75rem; + border-width: 2px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity, 1)); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)); + padding-top: 0.75rem; + padding-bottom: 0.75rem; + padding-left: 1.5rem; + padding-right: 1.5rem; + font-weight: 600; + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity, 1)); + --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 200ms; +} +.btn-secondary:hover { + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.btn-secondary:disabled { + cursor: not-allowed; + opacity: 0.5; +} +.btn-secondary:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(55 65 81 / var(--tw-border-opacity, 1)); + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1)); + --tw-text-opacity: 1; + color: rgb(229 231 235 / var(--tw-text-opacity, 1)); +} +.btn-secondary:hover { + --tw-border-opacity: 1; + border-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1)); +} +.btn-secondary:hover:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); + --tw-bg-opacity: 1; + background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1)); +} +.btn-ghost { + border-radius: 0.5rem; + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + padding-right: 1rem; + font-weight: 500; + --tw-text-opacity: 1; + color: rgb(20 113 76 / var(--tw-text-opacity, 1)); + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.btn-ghost:hover { + background-color: rgba(20,113,76,0.1); +} +.btn-ghost:hover:is(.dark *) { + background-color: rgba(20,113,76,0.2); +} +.booking-page { + min-height: 100vh; + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1)); + padding-top: 1.5rem; + padding-bottom: 1.5rem; +} +.booking-page:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1)); +} +@media (min-width: 768px) { + + .booking-page { + padding-top: 2rem; + padding-bottom: 2rem; + } +} +.input-field { + width: 100%; + border-radius: 0.75rem; + border-width: 2px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity, 1)); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)); + padding-left: 1rem; + padding-right: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.75rem; + font-size: 1rem; + line-height: 1.5rem; + --tw-text-opacity: 1; + color: rgb(17 24 39 / var(--tw-text-opacity, 1)); + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 200ms; +} +.input-field:focus { + border-color: transparent; + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + --tw-ring-opacity: 1; + --tw-ring-color: rgb(20 113 76 / var(--tw-ring-opacity, 1)); +} +.input-field:disabled { + cursor: not-allowed; + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1)); +} +.input-field:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(55 65 81 / var(--tw-border-opacity, 1)); + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1)); + --tw-text-opacity: 1; + color: rgb(243 244 246 / var(--tw-text-opacity, 1)); +} +.input-field:disabled:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1)); +} +.card { + border-radius: 1rem; + border-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(243 244 246 / var(--tw-border-opacity, 1)); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)); + padding: 1.5rem; + --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.card:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(55 65 81 / var(--tw-border-opacity, 1)); + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1)); +} +.card:hover { + --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.badge { + display: inline-flex; + align-items: center; + border-radius: 9999px; + padding-left: 0.75rem; + padding-right: 0.75rem; + padding-top: 0.25rem; + padding-bottom: 0.25rem; + font-size: 0.75rem; + line-height: 1rem; + font-weight: 500; +} +.badge-success { + --tw-bg-opacity: 1; + background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1)); + --tw-text-opacity: 1; + color: rgb(22 101 52 / var(--tw-text-opacity, 1)); +} +.badge-success:is(.dark *) { + background-color: rgb(20 83 45 / 0.3); + --tw-text-opacity: 1; + color: rgb(134 239 172 / var(--tw-text-opacity, 1)); +} +.badge-warning { + --tw-bg-opacity: 1; + background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1)); + --tw-text-opacity: 1; + color: rgb(133 77 14 / var(--tw-text-opacity, 1)); +} +.badge-warning:is(.dark *) { + background-color: rgb(113 63 18 / 0.3); + --tw-text-opacity: 1; + color: rgb(253 224 71 / var(--tw-text-opacity, 1)); +} +.section-title { + margin-bottom: 0.5rem; + font-size: 1.5rem; + line-height: 2rem; + font-weight: 700; + --tw-text-opacity: 1; + color: rgb(17 24 39 / var(--tw-text-opacity, 1)); +} +.section-title:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(243 244 246 / var(--tw-text-opacity, 1)); +} +@media (min-width: 768px) { + + .section-title { + font-size: 1.875rem; + line-height: 2.25rem; + } +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} +.pointer-events-none { + pointer-events: none; +} +.pointer-events-auto { + pointer-events: auto; +} +.visible { + visibility: visible; +} +.invisible { + visibility: hidden; +} +.static { + position: static; +} +.fixed { + position: fixed; +} +.absolute { + position: absolute; +} +.relative { + position: relative; +} +.sticky { + position: sticky; +} +.-inset-1 { + inset: -0.25rem; +} +.inset-0 { + inset: 0px; +} +.inset-x-0 { + left: 0px; + right: 0px; +} +.inset-y-0 { + top: 0px; + bottom: 0px; +} +.-right-1 { + right: -0.25rem; +} +.-right-1\.5 { + right: -0.375rem; +} +.-top-1 { + top: -0.25rem; +} +.-top-1\.5 { + top: -0.375rem; +} +.bottom-0 { + bottom: 0px; +} +.bottom-3 { + bottom: 0.75rem; +} +.bottom-4 { + bottom: 1rem; +} +.bottom-6 { + bottom: 1.5rem; +} +.bottom-\[calc\(100\%\+8px\)\] { + bottom: calc(100% + 8px); +} +.bottom-full { + bottom: 100%; +} +.left-0 { + left: 0px; +} +.left-1 { + left: 0.25rem; +} +.left-1\/2 { + left: 50%; +} +.left-3 { + left: 0.75rem; +} +.left-3\.5 { + left: 0.875rem; +} +.left-4 { + left: 1rem; +} +.left-5 { + left: 1.25rem; +} +.right-0 { + right: 0px; +} +.right-0\.5 { + right: 0.125rem; +} +.right-3 { + right: 0.75rem; +} +.right-4 { + right: 1rem; +} +.right-5 { + right: 1.25rem; +} +.right-6 { + right: 1.5rem; +} +.top-0 { + top: 0px; +} +.top-0\.5 { + top: 0.125rem; +} +.top-1 { + top: 0.25rem; +} +.top-1\/2 { + top: 50%; +} +.top-20 { + top: 5rem; +} +.top-3 { + top: 0.75rem; +} +.top-4 { + top: 1rem; +} +.top-6 { + top: 1.5rem; +} +.top-full { + top: 100%; +} +.z-10 { + z-index: 10; +} +.z-20 { + z-index: 20; +} +.z-30 { + z-index: 30; +} +.z-40 { + z-index: 40; +} +.z-50 { + z-index: 50; +} +.z-\[100\] { + z-index: 100; +} +.z-\[120\] { + z-index: 120; +} +.z-\[200\] { + z-index: 200; +} +.z-\[30\] { + z-index: 30; +} +.z-\[35\] { + z-index: 35; +} +.z-\[90\] { + z-index: 90; +} +.z-\[9999\] { + z-index: 9999; +} +.z-\[99\] { + z-index: 99; +} +.col-span-2 { + grid-column: span 2 / span 2; +} +.-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; +} +.mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; +} +.mx-4 { + margin-left: 1rem; + margin-right: 1rem; +} +.mx-auto { + margin-left: auto; + margin-right: auto; +} +.my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; +} +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; +} +.my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; +} +.-ml-2 { + margin-left: -0.5rem; +} +.-mr-1\.5 { + margin-right: -0.375rem; +} +.-mt-2 { + margin-top: -0.5rem; +} +.mb-0\.5 { + margin-bottom: 0.125rem; +} +.mb-1 { + margin-bottom: 0.25rem; +} +.mb-1\.5 { + margin-bottom: 0.375rem; +} +.mb-2 { + margin-bottom: 0.5rem; +} +.mb-2\.5 { + margin-bottom: 0.625rem; +} +.mb-3 { + margin-bottom: 0.75rem; +} +.mb-4 { + margin-bottom: 1rem; +} +.mb-5 { + margin-bottom: 1.25rem; +} +.mb-6 { + margin-bottom: 1.5rem; +} +.mb-8 { + margin-bottom: 2rem; +} +.ml-0\.5 { + margin-left: 0.125rem; +} +.ml-1 { + margin-left: 0.25rem; +} +.ml-1\.5 { + margin-left: 0.375rem; +} +.ml-2 { + margin-left: 0.5rem; +} +.ml-4 { + margin-left: 1rem; +} +.ml-auto { + margin-left: auto; +} +.mt-0\.5 { + margin-top: 0.125rem; +} +.mt-1 { + margin-top: 0.25rem; +} +.mt-1\.5 { + margin-top: 0.375rem; +} +.mt-2 { + margin-top: 0.5rem; +} +.mt-3 { + margin-top: 0.75rem; +} +.mt-4 { + margin-top: 1rem; +} +.mt-6 { + margin-top: 1.5rem; +} +.mt-8 { + margin-top: 2rem; +} +.mt-auto { + margin-top: auto; +} +.line-clamp-2 { + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} +.block { + display: block; +} +.inline-block { + display: inline-block; +} +.inline { + display: inline; +} +.flex { + display: flex; +} +.inline-flex { + display: inline-flex; +} +.grid { + display: grid; +} +.hidden { + display: none; +} +.aspect-square { + aspect-ratio: 1 / 1; +} +.h-0\.5 { + height: 0.125rem; +} +.h-1 { + height: 0.25rem; +} +.h-1\.5 { + height: 0.375rem; +} +.h-10 { + height: 2.5rem; +} +.h-11 { + height: 2.75rem; +} +.h-12 { + height: 3rem; +} +.h-14 { + height: 3.5rem; +} +.h-16 { + height: 4rem; +} +.h-2 { + height: 0.5rem; +} +.h-2\.5 { + height: 0.625rem; +} +.h-20 { + height: 5rem; +} +.h-24 { + height: 6rem; +} +.h-3 { + height: 0.75rem; +} +.h-3\.5 { + height: 0.875rem; +} +.h-4 { + height: 1rem; +} +.h-44 { + height: 11rem; +} +.h-5 { + height: 1.25rem; +} +.h-56 { + height: 14rem; +} +.h-6 { + height: 1.5rem; +} +.h-64 { + height: 16rem; +} +.h-7 { + height: 1.75rem; +} +.h-8 { + height: 2rem; +} +.h-9 { + height: 2.25rem; +} +.h-\[120px\] { + height: 120px; +} +.h-\[42px\] { + height: 42px; +} +.h-\[560px\] { + height: 560px; +} +.h-\[70vh\] { + height: 70vh; +} +.h-full { + height: 100%; +} +.h-px { + height: 1px; +} +.max-h-24 { + max-height: 6rem; +} +.max-h-80 { + max-height: 20rem; +} +.max-h-96 { + max-height: 24rem; +} +.max-h-\[220px\] { + max-height: 220px; +} +.max-h-\[70vh\] { + max-height: 70vh; +} +.max-h-\[90vh\] { + max-height: 90vh; +} +.max-h-\[calc\(100vh-120px\)\] { + max-height: calc(100vh - 120px); +} +.max-h-full { + max-height: 100%; +} +.min-h-0 { + min-height: 0px; +} +.min-h-\[340px\] { + min-height: 340px; +} +.min-h-\[calc\(100vh-4rem\)\] { + min-height: calc(100vh - 4rem); +} +.min-h-screen { + min-height: 100vh; +} +.w-0\.5 { + width: 0.125rem; +} +.w-1 { + width: 0.25rem; +} +.w-1\.5 { + width: 0.375rem; +} +.w-1\/2 { + width: 50%; +} +.w-1\/3 { + width: 33.333333%; +} +.w-1\/4 { + width: 25%; +} +.w-10 { + width: 2.5rem; +} +.w-11 { + width: 2.75rem; +} +.w-12 { + width: 3rem; +} +.w-14 { + width: 3.5rem; +} +.w-16 { + width: 4rem; +} +.w-2 { + width: 0.5rem; +} +.w-2\.5 { + width: 0.625rem; +} +.w-2\/3 { + width: 66.666667%; +} +.w-20 { + width: 5rem; +} +.w-24 { + width: 6rem; +} +.w-28 { + width: 7rem; +} +.w-3 { + width: 0.75rem; +} +.w-3\.5 { + width: 0.875rem; +} +.w-3\/4 { + width: 75%; +} +.w-32 { + width: 8rem; +} +.w-4 { + width: 1rem; +} +.w-40 { + width: 10rem; +} +.w-44 { + width: 11rem; +} +.w-5 { + width: 1.25rem; +} +.w-52 { + width: 13rem; +} +.w-6 { + width: 1.5rem; +} +.w-64 { + width: 16rem; +} +.w-7 { + width: 1.75rem; +} +.w-8 { + width: 2rem; +} +.w-80 { + width: 20rem; +} +.w-9 { + width: 2.25rem; +} +.w-\[200px\] { + width: 200px; +} +.w-\[380px\] { + width: 380px; +} +.w-\[4\.5rem\] { + width: 4.5rem; +} +.w-\[42px\] { + width: 42px; +} +.w-\[min\(384px\2c calc\(100vw-32px\)\)\] { + width: min(384px, calc(100vw - 32px)); +} +.w-auto { + width: auto; +} +.w-full { + width: 100%; +} +.min-w-0 { + min-width: 0px; +} +.min-w-5 { + min-width: 1.25rem; +} +.min-w-full { + min-width: 100%; +} +.max-w-2xl { + max-width: 42rem; +} +.max-w-3xl { + max-width: 48rem; +} +.max-w-4xl { + max-width: 56rem; +} +.max-w-6xl { + max-width: 72rem; +} +.max-w-\[120px\] { + max-width: 120px; +} +.max-w-\[1400px\] { + max-width: 1400px; +} +.max-w-\[240px\] { + max-width: 240px; +} +.max-w-\[60\%\] { + max-width: 60%; +} +.max-w-\[78\%\] { + max-width: 78%; +} +.max-w-full { + max-width: 100%; +} +.max-w-lg { + max-width: 32rem; +} +.max-w-md { + max-width: 28rem; +} +.max-w-sm { + max-width: 24rem; +} +.max-w-xl { + max-width: 36rem; +} +.flex-1 { + flex: 1 1 0%; +} +.flex-shrink-0 { + flex-shrink: 0; +} +.shrink-0 { + flex-shrink: 0; +} +.grow { + flex-grow: 1; +} +.-translate-x-1\/2 { + --tw-translate-x: -50%; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.-translate-y-1\/2 { + --tw-translate-y: -50%; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.translate-y-0 { + --tw-translate-y: 0px; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.translate-y-1 { + --tw-translate-y: 0.25rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.rotate-0 { + --tw-rotate: 0deg; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.rotate-180 { + --tw-rotate: 180deg; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.rotate-90 { + --tw-rotate: 90deg; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.scale-\[1\.02\] { + --tw-scale-x: 1.02; + --tw-scale-y: 1.02; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.scale-\[1\.03\] { + --tw-scale-x: 1.03; + --tw-scale-y: 1.03; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.transform { + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +@keyframes shimmer { + + 0% { + background-position: -1000px 0; + } + + 100% { + background-position: 1000px 0; + } +} +.animate-\[shimmer_2s_infinite\] { + animation: shimmer 2s infinite; +} +@keyframes bounce { + + 0%, 100% { + transform: translateY(-25%); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} +.animate-bounce { + animation: bounce 1s infinite; +} +@keyframes pulse { + + 50% { + opacity: .5; + } +} +.animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +} +@keyframes spin { + + to { + transform: rotate(360deg); + } +} +.animate-spin { + animation: spin 1s linear infinite; +} +.cursor-not-allowed { + cursor: not-allowed; +} +.cursor-pointer { + cursor: pointer; +} +.cursor-zoom-in { + cursor: zoom-in; +} +.select-none { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; +} +.resize-none { + resize: none; +} +.resize { + resize: both; +} +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); +} +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); +} +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); +} +.flex-col { + flex-direction: column; +} +.flex-wrap { + flex-wrap: wrap; +} +.place-items-center { + place-items: center; +} +.items-start { + align-items: flex-start; +} +.items-end { + align-items: flex-end; +} +.items-center { + align-items: center; +} +.items-baseline { + align-items: baseline; +} +.items-stretch { + align-items: stretch; +} +.justify-start { + justify-content: flex-start; +} +.justify-end { + justify-content: flex-end; +} +.justify-center { + justify-content: center; +} +.justify-between { + justify-content: space-between; +} +.gap-0\.5 { + gap: 0.125rem; +} +.gap-1 { + gap: 0.25rem; +} +.gap-1\.5 { + gap: 0.375rem; +} +.gap-2 { + gap: 0.5rem; +} +.gap-2\.5 { + gap: 0.625rem; +} +.gap-3 { + gap: 0.75rem; +} +.gap-4 { + gap: 1rem; +} +.gap-5 { + gap: 1.25rem; +} +.gap-6 { + gap: 1.5rem; +} +.gap-8 { + gap: 2rem; +} +.gap-px { + gap: 1px; +} +.gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; +} +.gap-y-3 { + row-gap: 0.75rem; +} +.space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); +} +.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); +} +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); +} +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); +} +.space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); +} +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} +.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); +} +.space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); +} +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); +} +.space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); +} +.space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); +} +.space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); +} +.self-stretch { + align-self: stretch; +} +.overflow-hidden { + overflow: hidden; +} +.overflow-visible { + overflow: visible; +} +.overflow-x-auto { + overflow-x: auto; +} +.overflow-y-auto { + overflow-y: auto; +} +.overflow-x-hidden { + overflow-x: hidden; +} +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.whitespace-nowrap { + white-space: nowrap; +} +.whitespace-pre-wrap { + white-space: pre-wrap; +} +.break-words { + overflow-wrap: break-word; +} +.rounded { + border-radius: 0.25rem; +} +.rounded-2xl { + border-radius: 1rem; +} +.rounded-3xl { + border-radius: 1.5rem; +} +.rounded-full { + border-radius: 9999px; +} +.rounded-lg { + border-radius: 0.5rem; +} +.rounded-md { + border-radius: 0.375rem; +} +.rounded-sm { + border-radius: 0.125rem; +} +.rounded-xl { + border-radius: 0.75rem; +} +.rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; +} +.rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} +.rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; +} +.rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; +} +.rounded-bl-sm { + border-bottom-left-radius: 0.125rem; +} +.rounded-br-sm { + border-bottom-right-radius: 0.125rem; +} +.border { + border-width: 1px; +} +.border-2 { + border-width: 2px; +} +.border-4 { + border-width: 4px; +} +.border-\[3px\] { + border-width: 3px; +} +.border-b { + border-bottom-width: 1px; +} +.border-b-2 { + border-bottom-width: 2px; +} +.border-l { + border-left-width: 1px; +} +.border-r { + border-right-width: 1px; +} +.border-t { + border-top-width: 1px; +} +.border-t-2 { + border-top-width: 2px; +} +.border-dashed { + border-style: dashed; +} +.border-\[rgb\(16_89_60\)\] { + --tw-border-opacity: 1; + border-color: rgb(16 89 60 / var(--tw-border-opacity, 1)); +} +.border-\[rgb\(20\2c 113\2c 76\)\] { + --tw-border-opacity: 1; + border-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); +} +.border-\[rgb\(20_113_76\)\] { + --tw-border-opacity: 1; + border-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); +} +.border-amber-200 { + --tw-border-opacity: 1; + border-color: rgb(253 230 138 / var(--tw-border-opacity, 1)); +} +.border-amber-400 { + --tw-border-opacity: 1; + border-color: rgb(251 191 36 / var(--tw-border-opacity, 1)); +} +.border-blue-200 { + --tw-border-opacity: 1; + border-color: rgb(191 219 254 / var(--tw-border-opacity, 1)); +} +.border-blue-500 { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity, 1)); +} +.border-emerald-200 { + --tw-border-opacity: 1; + border-color: rgb(167 243 208 / var(--tw-border-opacity, 1)); +} +.border-emerald-500 { + --tw-border-opacity: 1; + border-color: rgb(16 185 129 / var(--tw-border-opacity, 1)); +} +.border-gray-100 { + --tw-border-opacity: 1; + border-color: rgb(243 244 246 / var(--tw-border-opacity, 1)); +} +.border-gray-200 { + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity, 1)); +} +.border-gray-200\/20 { + border-color: rgb(229 231 235 / 0.2); +} +.border-gray-200\/60 { + border-color: rgb(229 231 235 / 0.6); +} +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity, 1)); +} +.border-gray-400 { + --tw-border-opacity: 1; + border-color: rgb(156 163 175 / var(--tw-border-opacity, 1)); +} +.border-green-200 { + --tw-border-opacity: 1; + border-color: rgb(187 247 208 / var(--tw-border-opacity, 1)); +} +.border-green-300 { + --tw-border-opacity: 1; + border-color: rgb(134 239 172 / var(--tw-border-opacity, 1)); +} +.border-primary { + --tw-border-opacity: 1; + border-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); +} +.border-primary\/10 { + border-color: rgb(20 113 76 / 0.1); +} +.border-primary\/20 { + border-color: rgb(20 113 76 / 0.2); +} +.border-primary\/30 { + border-color: rgb(20 113 76 / 0.3); +} +.border-primary\/40 { + border-color: rgb(20 113 76 / 0.4); +} +.border-purple-300 { + --tw-border-opacity: 1; + border-color: rgb(216 180 254 / var(--tw-border-opacity, 1)); +} +.border-red-100 { + --tw-border-opacity: 1; + border-color: rgb(254 226 226 / var(--tw-border-opacity, 1)); +} +.border-red-200 { + --tw-border-opacity: 1; + border-color: rgb(254 202 202 / var(--tw-border-opacity, 1)); +} +.border-red-300 { + --tw-border-opacity: 1; + border-color: rgb(252 165 165 / var(--tw-border-opacity, 1)); +} +.border-red-400 { + --tw-border-opacity: 1; + border-color: rgb(248 113 113 / var(--tw-border-opacity, 1)); +} +.border-red-500 { + --tw-border-opacity: 1; + border-color: rgb(239 68 68 / var(--tw-border-opacity, 1)); +} +.border-transparent { + border-color: transparent; +} +.border-white { + --tw-border-opacity: 1; + border-color: rgb(255 255 255 / var(--tw-border-opacity, 1)); +} +.border-white\/15 { + border-color: rgb(255 255 255 / 0.15); +} +.border-white\/20 { + border-color: rgb(255 255 255 / 0.2); +} +.border-white\/30 { + border-color: rgb(255 255 255 / 0.3); +} +.border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgb(254 240 138 / var(--tw-border-opacity, 1)); +} +.border-yellow-200\/60 { + border-color: rgb(254 240 138 / 0.6); +} +.border-t-gray-900 { + --tw-border-opacity: 1; + border-top-color: rgb(17 24 39 / var(--tw-border-opacity, 1)); +} +.border-t-primary { + --tw-border-opacity: 1; + border-top-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); +} +.border-t-transparent { + border-top-color: transparent; +} +.border-opacity-20 { + --tw-border-opacity: 0.2; +} +.bg-\[rgb\(15\2c 85\2c 57\)\] { + --tw-bg-opacity: 1; + background-color: rgb(15 85 57 / var(--tw-bg-opacity, 1)); +} +.bg-\[rgb\(20\2c 113\2c 76\)\] { + --tw-bg-opacity: 1; + background-color: rgb(20 113 76 / var(--tw-bg-opacity, 1)); +} +.bg-\[rgb\(20\2c 113\2c 76\)\]\/20 { + background-color: rgb(20 113 76 / 0.2); +} +.bg-\[rgb\(20\2c 113\2c 76\)\]\/5 { + background-color: rgb(20 113 76 / 0.05); +} +.bg-\[rgb\(20_113_76\)\] { + --tw-bg-opacity: 1; + background-color: rgb(20 113 76 / var(--tw-bg-opacity, 1)); +} +.bg-amber-100 { + --tw-bg-opacity: 1; + background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1)); +} +.bg-amber-50 { + --tw-bg-opacity: 1; + background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1)); +} +.bg-black\/10 { + background-color: rgb(0 0 0 / 0.1); +} +.bg-black\/25 { + background-color: rgb(0 0 0 / 0.25); +} +.bg-black\/40 { + background-color: rgb(0 0 0 / 0.4); +} +.bg-black\/50 { + background-color: rgb(0 0 0 / 0.5); +} +.bg-black\/60 { + background-color: rgb(0 0 0 / 0.6); +} +.bg-black\/80 { + background-color: rgb(0 0 0 / 0.8); +} +.bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1)); +} +.bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1)); +} +.bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1)); +} +.bg-blue-500\/10 { + background-color: rgb(59 130 246 / 0.1); +} +.bg-emerald-50 { + --tw-bg-opacity: 1; + background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1)); +} +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1)); +} +.bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1)); +} +.bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1)); +} +.bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1)); +} +.bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1)); +} +.bg-gray-50\/80 { + background-color: rgb(249 250 251 / 0.8); +} +.bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1)); +} +.bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1)); +} +.bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1)); +} +.bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1)); +} +.bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1)); +} +.bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1)); +} +.bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1)); +} +.bg-green-500\/90 { + background-color: rgb(34 197 94 / 0.9); +} +.bg-orange-400 { + --tw-bg-opacity: 1; + background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1)); +} +.bg-primary { + --tw-bg-opacity: 1; + background-color: rgb(20 113 76 / var(--tw-bg-opacity, 1)); +} +.bg-primary\/10 { + background-color: rgb(20 113 76 / 0.1); +} +.bg-primary\/15 { + background-color: rgb(20 113 76 / 0.15); +} +.bg-primary\/5 { + background-color: rgb(20 113 76 / 0.05); +} +.bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1)); +} +.bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1)); +} +.bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1)); +} +.bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1)); +} +.bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1)); +} +.bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1)); +} +.bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1)); +} +.bg-transparent { + background-color: transparent; +} +.bg-white { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)); +} +.bg-white\/10 { + background-color: rgb(255 255 255 / 0.1); +} +.bg-white\/15 { + background-color: rgb(255 255 255 / 0.15); +} +.bg-white\/20 { + background-color: rgb(255 255 255 / 0.2); +} +.bg-white\/70 { + background-color: rgb(255 255 255 / 0.7); +} +.bg-white\/90 { + background-color: rgb(255 255 255 / 0.9); +} +.bg-white\/95 { + background-color: rgb(255 255 255 / 0.95); +} +.bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1)); +} +.bg-yellow-300\/80 { + background-color: rgb(253 224 71 / 0.8); +} +.bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1)); +} +.bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1)); +} +.bg-opacity-10 { + --tw-bg-opacity: 0.1; +} +.bg-opacity-20 { + --tw-bg-opacity: 0.2; +} +.bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); +} +.bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); +} +.bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); +} +.bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); +} +.from-\[rgb\(14\2c 80\2c 54\)\] { + --tw-gradient-from: rgb(14,80,54) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(14 80 54 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-\[rgb\(20\2c 113\2c 76\)\] { + --tw-gradient-from: rgb(20,113,76) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(20 113 76 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-\[rgb\(20_113_76\)\] { + --tw-gradient-from: rgb(20 113 76) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(20 113 76 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-black\/50 { + --tw-gradient-from: rgb(0 0 0 / 0.5) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-black\/60 { + --tw-gradient-from: rgb(0 0 0 / 0.6) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-black\/70 { + --tw-gradient-from: rgb(0 0 0 / 0.7) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-black\/75 { + --tw-gradient-from: rgb(0 0 0 / 0.75) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-black\/80 { + --tw-gradient-from: rgb(0 0 0 / 0.8) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-blue-500 { + --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position); + --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-primary { + --tw-gradient-from: rgb(20 113 76) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(20 113 76 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-primary\/90 { + --tw-gradient-from: rgb(20 113 76 / 0.9) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(20 113 76 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} +.from-10\% { + --tw-gradient-from-position: 10%; +} +.via-black\/10 { + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.1) var(--tw-gradient-via-position), var(--tw-gradient-to); +} +.via-black\/20 { + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to); +} +.via-black\/40 { + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.4) var(--tw-gradient-via-position), var(--tw-gradient-to); +} +.via-gray-300 { + --tw-gradient-to: rgb(209 213 219 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db var(--tw-gradient-via-position), var(--tw-gradient-to); +} +.via-primary\/70 { + --tw-gradient-to: rgb(20 113 76 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), rgb(20 113 76 / 0.7) var(--tw-gradient-via-position), var(--tw-gradient-to); +} +.via-transparent { + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to); +} +.to-\[rgb\(16\2c 95\2c 65\)\] { + --tw-gradient-to: rgb(16,95,65) var(--tw-gradient-to-position); +} +.to-\[rgb\(20\2c 140\2c 90\)\] { + --tw-gradient-to: rgb(20,140,90) var(--tw-gradient-to-position); +} +.to-\[rgb\(20_113_76\)\] { + --tw-gradient-to: rgb(20 113 76) var(--tw-gradient-to-position); +} +.to-gray-300 { + --tw-gradient-to: #d1d5db var(--tw-gradient-to-position); +} +.to-primary { + --tw-gradient-to: rgb(20 113 76) var(--tw-gradient-to-position); +} +.to-primary\/50 { + --tw-gradient-to: rgb(20 113 76 / 0.5) var(--tw-gradient-to-position); +} +.to-primary\/60 { + --tw-gradient-to: rgb(20 113 76 / 0.6) var(--tw-gradient-to-position); +} +.to-transparent { + --tw-gradient-to: transparent var(--tw-gradient-to-position); +} +.to-90\% { + --tw-gradient-to-position: 90%; +} +.bg-cover { + background-size: cover; +} +.bg-center { + background-position: center; +} +.fill-amber-500 { + fill: #f59e0b; +} +.object-contain { + -o-object-fit: contain; + object-fit: contain; +} +.object-cover { + -o-object-fit: cover; + object-fit: cover; +} +.p-0 { + padding: 0px; +} +.p-0\.5 { + padding: 0.125rem; +} +.p-1 { + padding: 0.25rem; +} +.p-1\.5 { + padding: 0.375rem; +} +.p-2 { + padding: 0.5rem; +} +.p-3 { + padding: 0.75rem; +} +.p-4 { + padding: 1rem; +} +.p-5 { + padding: 1.25rem; +} +.p-6 { + padding: 1.5rem; +} +.p-7 { + padding: 1.75rem; +} +.p-8 { + padding: 2rem; +} +.px-0 { + padding-left: 0px; + padding-right: 0px; +} +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; +} +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; +} +.px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; +} +.px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; +} +.px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; +} +.px-4 { + padding-left: 1rem; + padding-right: 1rem; +} +.px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; +} +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; +} +.px-8 { + padding-left: 2rem; + padding-right: 2rem; +} +.py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; +} +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} +.py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; +} +.py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; +} +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; +} +.py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; +} +.py-16 { + padding-top: 4rem; + padding-bottom: 4rem; +} +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} +.py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; +} +.py-24 { + padding-top: 6rem; + padding-bottom: 6rem; +} +.py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; +} +.py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; +} +.py-4 { + padding-top: 1rem; + padding-bottom: 1rem; +} +.py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; +} +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; +} +.py-8 { + padding-top: 2rem; + padding-bottom: 2rem; +} +.pb-0 { + padding-bottom: 0px; +} +.pb-1 { + padding-bottom: 0.25rem; +} +.pb-16 { + padding-bottom: 4rem; +} +.pb-2 { + padding-bottom: 0.5rem; +} +.pb-28 { + padding-bottom: 7rem; +} +.pb-3 { + padding-bottom: 0.75rem; +} +.pb-4 { + padding-bottom: 1rem; +} +.pb-5 { + padding-bottom: 1.25rem; +} +.pb-6 { + padding-bottom: 1.5rem; +} +.pb-8 { + padding-bottom: 2rem; +} +.pb-\[calc\(0\.75rem\+env\(safe-area-inset-bottom\)\)\] { + padding-bottom: calc(0.75rem + env(safe-area-inset-bottom)); +} +.pb-\[calc\(7rem\+env\(safe-area-inset-bottom\)\)\] { + padding-bottom: calc(7rem + env(safe-area-inset-bottom)); +} +.pl-10 { + padding-left: 2.5rem; +} +.pl-11 { + padding-left: 2.75rem; +} +.pl-2 { + padding-left: 0.5rem; +} +.pl-3 { + padding-left: 0.75rem; +} +.pl-4 { + padding-left: 1rem; +} +.pr-10 { + padding-right: 2.5rem; +} +.pr-2 { + padding-right: 0.5rem; +} +.pr-3 { + padding-right: 0.75rem; +} +.pr-4 { + padding-right: 1rem; +} +.pr-8 { + padding-right: 2rem; +} +.pt-1 { + padding-top: 0.25rem; +} +.pt-16 { + padding-top: 4rem; +} +.pt-2 { + padding-top: 0.5rem; +} +.pt-3 { + padding-top: 0.75rem; +} +.pt-3\.5 { + padding-top: 0.875rem; +} +.pt-4 { + padding-top: 1rem; +} +.pt-5 { + padding-top: 1.25rem; +} +.pt-6 { + padding-top: 1.5rem; +} +.text-left { + text-align: left; +} +.text-center { + text-align: center; +} +.text-right { + text-align: right; +} +.font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} +.font-sans { + font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} +.text-2xl { + font-size: 1.5rem; + line-height: 2rem; +} +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; +} +.text-5xl { + font-size: 3rem; + line-height: 1; +} +.text-6xl { + font-size: 3.75rem; + line-height: 1; +} +.text-\[10px\] { + font-size: 10px; +} +.text-\[11px\] { + font-size: 11px; +} +.text-\[8px\] { + font-size: 8px; +} +.text-base { + font-size: 1rem; + line-height: 1.5rem; +} +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; +} +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; +} +.text-xl { + font-size: 1.25rem; + line-height: 1.75rem; +} +.text-xs { + font-size: 0.75rem; + line-height: 1rem; +} +.font-bold { + font-weight: 700; +} +.font-extrabold { + font-weight: 800; +} +.font-medium { + font-weight: 500; +} +.font-normal { + font-weight: 400; +} +.font-semibold { + font-weight: 600; +} +.uppercase { + text-transform: uppercase; +} +.italic { + font-style: italic; +} +.tabular-nums { + --tw-numeric-spacing: tabular-nums; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +} +.leading-3 { + line-height: .75rem; +} +.leading-none { + line-height: 1; +} +.leading-relaxed { + line-height: 1.625; +} +.leading-snug { + line-height: 1.375; +} +.leading-tight { + line-height: 1.25; +} +.tracking-\[0\.4em\] { + letter-spacing: 0.4em; +} +.tracking-tight { + letter-spacing: -0.025em; +} +.tracking-wide { + letter-spacing: 0.025em; +} +.tracking-wider { + letter-spacing: 0.05em; +} +.tracking-widest { + letter-spacing: 0.1em; +} +.text-\[rgb\(20\2c 113\2c 76\)\] { + --tw-text-opacity: 1; + color: rgb(20 113 76 / var(--tw-text-opacity, 1)); +} +.text-\[rgb\(20_113_76\)\] { + --tw-text-opacity: 1; + color: rgb(20 113 76 / var(--tw-text-opacity, 1)); +} +.text-amber-500 { + --tw-text-opacity: 1; + color: rgb(245 158 11 / var(--tw-text-opacity, 1)); +} +.text-amber-600 { + --tw-text-opacity: 1; + color: rgb(217 119 6 / var(--tw-text-opacity, 1)); +} +.text-amber-700 { + --tw-text-opacity: 1; + color: rgb(180 83 9 / var(--tw-text-opacity, 1)); +} +.text-blue-500 { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity, 1)); +} +.text-blue-600 { + --tw-text-opacity: 1; + color: rgb(37 99 235 / var(--tw-text-opacity, 1)); +} +.text-blue-700 { + --tw-text-opacity: 1; + color: rgb(29 78 216 / var(--tw-text-opacity, 1)); +} +.text-blue-800 { + --tw-text-opacity: 1; + color: rgb(30 64 175 / var(--tw-text-opacity, 1)); +} +.text-emerald-700 { + --tw-text-opacity: 1; + color: rgb(4 120 87 / var(--tw-text-opacity, 1)); +} +.text-gray-100 { + --tw-text-opacity: 1; + color: rgb(243 244 246 / var(--tw-text-opacity, 1)); +} +.text-gray-200 { + --tw-text-opacity: 1; + color: rgb(229 231 235 / var(--tw-text-opacity, 1)); +} +.text-gray-200\/80 { + color: rgb(229 231 235 / 0.8); +} +.text-gray-300 { + --tw-text-opacity: 1; + color: rgb(209 213 219 / var(--tw-text-opacity, 1)); +} +.text-gray-400 { + --tw-text-opacity: 1; + color: rgb(156 163 175 / var(--tw-text-opacity, 1)); +} +.text-gray-500 { + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity, 1)); +} +.text-gray-600 { + --tw-text-opacity: 1; + color: rgb(75 85 99 / var(--tw-text-opacity, 1)); +} +.text-gray-700 { + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity, 1)); +} +.text-gray-800 { + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity, 1)); +} +.text-gray-900 { + --tw-text-opacity: 1; + color: rgb(17 24 39 / var(--tw-text-opacity, 1)); +} +.text-green-400 { + --tw-text-opacity: 1; + color: rgb(74 222 128 / var(--tw-text-opacity, 1)); +} +.text-green-500 { + --tw-text-opacity: 1; + color: rgb(34 197 94 / var(--tw-text-opacity, 1)); +} +.text-green-600 { + --tw-text-opacity: 1; + color: rgb(22 163 74 / var(--tw-text-opacity, 1)); +} +.text-green-700 { + --tw-text-opacity: 1; + color: rgb(21 128 61 / var(--tw-text-opacity, 1)); +} +.text-green-700\/80 { + color: rgb(21 128 61 / 0.8); +} +.text-green-800 { + --tw-text-opacity: 1; + color: rgb(22 101 52 / var(--tw-text-opacity, 1)); +} +.text-green-900 { + --tw-text-opacity: 1; + color: rgb(20 83 45 / var(--tw-text-opacity, 1)); +} +.text-orange-400 { + --tw-text-opacity: 1; + color: rgb(251 146 60 / var(--tw-text-opacity, 1)); +} +.text-orange-500 { + --tw-text-opacity: 1; + color: rgb(249 115 22 / var(--tw-text-opacity, 1)); +} +.text-primary { + --tw-text-opacity: 1; + color: rgb(20 113 76 / var(--tw-text-opacity, 1)); +} +.text-purple-800 { + --tw-text-opacity: 1; + color: rgb(107 33 168 / var(--tw-text-opacity, 1)); +} +.text-red-400 { + --tw-text-opacity: 1; + color: rgb(248 113 113 / var(--tw-text-opacity, 1)); +} +.text-red-500 { + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity, 1)); +} +.text-red-600 { + --tw-text-opacity: 1; + color: rgb(220 38 38 / var(--tw-text-opacity, 1)); +} +.text-red-700 { + --tw-text-opacity: 1; + color: rgb(185 28 28 / var(--tw-text-opacity, 1)); +} +.text-red-800 { + --tw-text-opacity: 1; + color: rgb(153 27 27 / var(--tw-text-opacity, 1)); +} +.text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity, 1)); +} +.text-white\/50 { + color: rgb(255 255 255 / 0.5); +} +.text-white\/60 { + color: rgb(255 255 255 / 0.6); +} +.text-white\/75 { + color: rgb(255 255 255 / 0.75); +} +.text-white\/80 { + color: rgb(255 255 255 / 0.8); +} +.text-white\/90 { + color: rgb(255 255 255 / 0.9); +} +.text-yellow-500 { + --tw-text-opacity: 1; + color: rgb(234 179 8 / var(--tw-text-opacity, 1)); +} +.text-yellow-800 { + --tw-text-opacity: 1; + color: rgb(133 77 14 / var(--tw-text-opacity, 1)); +} +.underline { + text-decoration-line: underline; +} +.antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1)); +} +.placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1)); +} +.opacity-0 { + opacity: 0; +} +.opacity-100 { + opacity: 1; +} +.opacity-20 { + opacity: 0.2; +} +.opacity-40 { + opacity: 0.4; +} +.opacity-50 { + opacity: 0.5; +} +.opacity-60 { + opacity: 0.6; +} +.opacity-70 { + opacity: 0.7; +} +.opacity-75 { + opacity: 0.75; +} +.opacity-85 { + opacity: 0.85; +} +.shadow { + --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); + --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-\[0_-2px_10px_rgba\(0\2c 0\2c 0\2c 0\.05\)\] { + --tw-shadow: 0 -2px 10px rgba(0,0,0,0.05); + --tw-shadow-colored: 0 -2px 10px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-md { + --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-none { + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-xl { + --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-\[rgb\(20\2c 113\2c 76\)\]\/10 { + --tw-shadow-color: rgb(20 113 76 / 0.1); + --tw-shadow: var(--tw-shadow-colored); +} +.shadow-blue-200\/60 { + --tw-shadow-color: rgb(191 219 254 / 0.6); + --tw-shadow: var(--tw-shadow-colored); +} +.shadow-primary\/20 { + --tw-shadow-color: rgb(20 113 76 / 0.2); + --tw-shadow: var(--tw-shadow-colored); +} +.shadow-primary\/30 { + --tw-shadow-color: rgb(20 113 76 / 0.3); + --tw-shadow: var(--tw-shadow-colored); +} +.shadow-yellow-300\/40 { + --tw-shadow-color: rgb(253 224 71 / 0.4); + --tw-shadow: var(--tw-shadow-colored); +} +.outline-none { + outline: 2px solid transparent; + outline-offset: 2px; +} +.ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.ring-\[rgb\(20\2c 113\2c 76\)\] { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(20 113 76 / var(--tw-ring-opacity, 1)); +} +.ring-primary\/20 { + --tw-ring-color: rgb(20 113 76 / 0.2); +} +.ring-primary\/50 { + --tw-ring-color: rgb(20 113 76 / 0.5); +} +.drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1)); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} +.drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05)); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} +.filter { + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} +.backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); +} +.transition { + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.transition-colors { + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} +.duration-150 { + transition-duration: 150ms; +} +.duration-200 { + transition-duration: 200ms; +} +.duration-300 { + transition-duration: 300ms; +} +.duration-500 { + transition-duration: 500ms; +} +.duration-700 { + transition-duration: 700ms; +} +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} +@keyframes bounce-in { + 0% { + opacity: 0; + transform: translateY(20px) scale(0.9); + } + 50% { + opacity: 1; + } + 100% { + opacity: 1; + transform: translateY(0) scale(1); + } + } +@keyframes float { + 0%, 100% { + transform: translateY(0px); + } + 50% { + transform: translateY(-20px); + } + } +@keyframes shimmer { + 0% { + opacity: 1; + } + 50% { + opacity: 0.5; + } + 100% { + opacity: 1; + } + } +@keyframes progressBar { + 0% { width: 0%; } + 50% { width: 60%; } + 100% { width: 90%; } + } +@keyframes slide-in-left { + from { + opacity: 0; + transform: translateX(-20px); + } + to { + opacity: 1; + transform: translateX(0); + } + } +@keyframes slide-in-right { + from { + opacity: 0; + transform: translateX(20px); + } + to { + opacity: 1; + transform: translateX(0); + } + } +@keyframes slide-up { + from { + transform: translateY(100%); + opacity: 0; + } + to { + transform: translateY(0); + opacity: 1; + } + } +@keyframes fade-in-up { + from { + opacity: 0; + transform: translateY(8px); + } + to { + opacity: 1; + transform: translateY(0); + } + } +.animate-slide-up { + animation: slide-up 0.25s cubic-bezier(0.32, 0.72, 0, 1); + } +.animate-fade-in-up { + animation: fade-in-up 0.35s ease-out; + } +.scrollbar-hide { + -ms-overflow-style: none; + scrollbar-width: none; + } +.scrollbar-hide::-webkit-scrollbar { + display: none; + } + +.first\:border-t-0:first-child { + border-top-width: 0px; +} + +.first\:pt-0:first-child { + padding-top: 0px; +} + +.last\:border-0:last-child { + border-width: 0px; +} + +.focus-within\:border-primary:focus-within { + --tw-border-opacity: 1; + border-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); +} + +.focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-primary:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(20 113 76 / var(--tw-ring-opacity, 1)); +} + +.focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1)); +} + +.hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.hover\:scale-\[1\.01\]:hover { + --tw-scale-x: 1.01; + --tw-scale-y: 1.01; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.hover\:border-\[rgb\(20\2c 113\2c 76\)\]:hover { + --tw-border-opacity: 1; + border-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); +} + +.hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity, 1)); +} + +.hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgb(74 222 128 / var(--tw-border-opacity, 1)); +} + +.hover\:border-primary:hover { + --tw-border-opacity: 1; + border-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); +} + +.hover\:border-primary\/40:hover { + border-color: rgb(20 113 76 / 0.4); +} + +.hover\:border-primary\/50:hover { + border-color: rgb(20 113 76 / 0.5); +} + +.hover\:border-primary\/60:hover { + border-color: rgb(20 113 76 / 0.6); +} + +.hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgb(248 113 113 / var(--tw-border-opacity, 1)); +} + +.hover\:bg-\[rgb\(16\2c 89\2c 60\)\]:hover { + --tw-bg-opacity: 1; + background-color: rgb(16 89 60 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-primary\/10:hover { + background-color: rgb(20 113 76 / 0.1); +} + +.hover\:bg-primary\/15:hover { + background-color: rgb(20 113 76 / 0.15); +} + +.hover\:bg-primary\/20:hover { + background-color: rgb(20 113 76 / 0.2); +} + +.hover\:bg-primary\/5:hover { + background-color: rgb(20 113 76 / 0.05); +} + +.hover\:bg-primary\/90:hover { + background-color: rgb(20 113 76 / 0.9); +} + +.hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)); +} + +.hover\:bg-white\/10:hover { + background-color: rgb(255 255 255 / 0.1); +} + +.hover\:bg-white\/20:hover { + background-color: rgb(255 255 255 / 0.2); +} + +.hover\:bg-white\/30:hover { + background-color: rgb(255 255 255 / 0.3); +} + +.hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; +} + +.hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; +} + +.hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; +} + +.hover\:from-\[rgb\(16\2c 89\2c 60\)\]:hover { + --tw-gradient-from: rgb(16,89,60) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(16 89 60 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +.hover\:to-\[rgb\(12\2c 75\2c 50\)\]:hover { + --tw-gradient-to: rgb(12,75,50) var(--tw-gradient-to-position); +} + +.hover\:text-\[rgb\(20_113_76\)\]:hover { + --tw-text-opacity: 1; + color: rgb(20 113 76 / var(--tw-text-opacity, 1)); +} + +.hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgb(229 231 235 / var(--tw-text-opacity, 1)); +} + +.hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgb(75 85 99 / var(--tw-text-opacity, 1)); +} + +.hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity, 1)); +} + +.hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgb(17 24 39 / var(--tw-text-opacity, 1)); +} + +.hover\:text-primary:hover { + --tw-text-opacity: 1; + color: rgb(20 113 76 / var(--tw-text-opacity, 1)); +} + +.hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity, 1)); +} + +.hover\:underline:hover { + text-decoration-line: underline; +} + +.hover\:opacity-80:hover { + opacity: 0.8; +} + +.hover\:opacity-90:hover { + opacity: 0.9; +} + +.hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); + --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:border-emerald-500:focus { + --tw-border-opacity: 1; + border-color: rgb(16 185 129 / var(--tw-border-opacity, 1)); +} + +.focus\:border-primary:focus { + --tw-border-opacity: 1; + border-color: rgb(20 113 76 / var(--tw-border-opacity, 1)); +} + +.focus\:border-transparent:focus { + border-color: transparent; +} + +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-\[rgb\(20\2c 113\2c 76\)\]:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(20 113 76 / var(--tw-ring-opacity, 1)); +} + +.focus\:ring-primary:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(20 113 76 / var(--tw-ring-opacity, 1)); +} + +.focus\:ring-primary\/30:focus { + --tw-ring-color: rgb(20 113 76 / 0.3); +} + +.focus\:ring-primary\/40:focus { + --tw-ring-color: rgb(20 113 76 / 0.4); +} + +.focus-visible\:outline:focus-visible { + outline-style: solid; +} + +.focus-visible\:outline-2:focus-visible { + outline-width: 2px; +} + +.focus-visible\:outline-offset-\[3px\]:focus-visible { + outline-offset: 3px; +} + +.focus-visible\:outline-primary:focus-visible { + outline-color: rgb(20 113 76); +} + +.active\:translate-y-0:active { + --tw-translate-y: 0px; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.active\:scale-95:active { + --tw-scale-x: .95; + --tw-scale-y: .95; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.active\:scale-\[0\.98\]:active { + --tw-scale-x: 0.98; + --tw-scale-y: 0.98; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.disabled\:cursor-not-allowed:disabled { + cursor: not-allowed; +} + +.disabled\:opacity-30:disabled { + opacity: 0.3; +} + +.disabled\:opacity-40:disabled { + opacity: 0.4; +} + +.disabled\:opacity-50:disabled { + opacity: 0.5; +} + +.disabled\:opacity-60:disabled { + opacity: 0.6; +} + +.disabled\:opacity-80:disabled { + opacity: 0.8; +} + +.group:hover .group-hover\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.group:hover .group-hover\:gap-2 { + gap: 0.5rem; +} + +.group:hover .group-hover\:gap-3 { + gap: 0.75rem; +} + +.group:hover .group-hover\:border-primary\/50 { + border-color: rgb(20 113 76 / 0.5); +} + +.group:hover .group-hover\:bg-\[rgb\(16\2c 89\2c 60\)\] { + --tw-bg-opacity: 1; + background-color: rgb(16 89 60 / var(--tw-bg-opacity, 1)); +} + +.group:hover .group-hover\:bg-primary\/10 { + background-color: rgb(20 113 76 / 0.1); +} + +.group:hover .group-hover\:text-\[rgb\(20\2c 113\2c 76\)\] { + --tw-text-opacity: 1; + color: rgb(20 113 76 / var(--tw-text-opacity, 1)); +} + +.group:hover .group-hover\:text-primary { + --tw-text-opacity: 1; + color: rgb(20 113 76 / var(--tw-text-opacity, 1)); +} + +.group:hover .group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.peer:checked ~ .peer-checked\:translate-x-6 { + --tw-translate-x: 1.5rem; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.peer:checked ~ .peer-checked\:bg-\[rgb\(20_113_76\)\] { + --tw-bg-opacity: 1; + background-color: rgb(20 113 76 / var(--tw-bg-opacity, 1)); +} + +@media (prefers-reduced-motion: reduce) { + + .motion-reduce\:animate-none { + animation: none; + } + + .motion-reduce\:transition-none { + transition-property: none; + } + + .motion-reduce\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } +} + +.dark\:border-amber-500:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(245 158 11 / var(--tw-border-opacity, 1)); +} + +.dark\:border-amber-800\/60:is(.dark *) { + border-color: rgb(146 64 14 / 0.6); +} + +.dark\:border-blue-400:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(96 165 250 / var(--tw-border-opacity, 1)); +} + +.dark\:border-blue-800:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(30 64 175 / var(--tw-border-opacity, 1)); +} + +.dark\:border-emerald-800:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(6 95 70 / var(--tw-border-opacity, 1)); +} + +.dark\:border-gray-600:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(75 85 99 / var(--tw-border-opacity, 1)); +} + +.dark\:border-gray-700:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(55 65 81 / var(--tw-border-opacity, 1)); +} + +.dark\:border-gray-700\/20:is(.dark *) { + border-color: rgb(55 65 81 / 0.2); +} + +.dark\:border-gray-700\/60:is(.dark *) { + border-color: rgb(55 65 81 / 0.6); +} + +.dark\:border-gray-800:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(31 41 55 / var(--tw-border-opacity, 1)); +} + +.dark\:border-green-700:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(21 128 61 / var(--tw-border-opacity, 1)); +} + +.dark\:border-green-800:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(22 101 52 / var(--tw-border-opacity, 1)); +} + +.dark\:border-purple-700:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(126 34 206 / var(--tw-border-opacity, 1)); +} + +.dark\:border-red-500:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(239 68 68 / var(--tw-border-opacity, 1)); +} + +.dark\:border-red-700:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(185 28 28 / var(--tw-border-opacity, 1)); +} + +.dark\:border-red-800:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(153 27 27 / var(--tw-border-opacity, 1)); +} + +.dark\:border-slate-600:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(71 85 105 / var(--tw-border-opacity, 1)); +} + +.dark\:border-slate-700:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(51 65 85 / var(--tw-border-opacity, 1)); +} + +.dark\:border-yellow-800:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(133 77 14 / var(--tw-border-opacity, 1)); +} + +.dark\:border-t-gray-700:is(.dark *) { + --tw-border-opacity: 1; + border-top-color: rgb(55 65 81 / var(--tw-border-opacity, 1)); +} + +.dark\:bg-\[rgb\(20\2c 113\2c 76\)\]\/10:is(.dark *) { + background-color: rgb(20 113 76 / 0.1); +} + +.dark\:bg-amber-900\/20:is(.dark *) { + background-color: rgb(120 53 15 / 0.2); +} + +.dark\:bg-amber-900\/30:is(.dark *) { + background-color: rgb(120 53 15 / 0.3); +} + +.dark\:bg-black\/20:is(.dark *) { + background-color: rgb(0 0 0 / 0.2); +} + +.dark\:bg-blue-900\/20:is(.dark *) { + background-color: rgb(30 58 138 / 0.2); +} + +.dark\:bg-blue-900\/30:is(.dark *) { + background-color: rgb(30 58 138 / 0.3); +} + +.dark\:bg-blue-900\/40:is(.dark *) { + background-color: rgb(30 58 138 / 0.4); +} + +.dark\:bg-emerald-900\/30:is(.dark *) { + background-color: rgb(6 78 59 / 0.3); +} + +.dark\:bg-emerald-950\/30:is(.dark *) { + background-color: rgb(2 44 34 / 0.3); +} + +.dark\:bg-gray-500:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1)); +} + +.dark\:bg-gray-600:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1)); +} + +.dark\:bg-gray-700:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1)); +} + +.dark\:bg-gray-700\/30:is(.dark *) { + background-color: rgb(55 65 81 / 0.3); +} + +.dark\:bg-gray-800:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1)); +} + +.dark\:bg-gray-800\/40:is(.dark *) { + background-color: rgb(31 41 55 / 0.4); +} + +.dark\:bg-gray-800\/50:is(.dark *) { + background-color: rgb(31 41 55 / 0.5); +} + +.dark\:bg-gray-800\/60:is(.dark *) { + background-color: rgb(31 41 55 / 0.6); +} + +.dark\:bg-gray-800\/95:is(.dark *) { + background-color: rgb(31 41 55 / 0.95); +} + +.dark\:bg-gray-900:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1)); +} + +.dark\:bg-gray-900\/90:is(.dark *) { + background-color: rgb(17 24 39 / 0.9); +} + +.dark\:bg-gray-950:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(3 7 18 / var(--tw-bg-opacity, 1)); +} + +.dark\:bg-green-900\/20:is(.dark *) { + background-color: rgb(20 83 45 / 0.2); +} + +.dark\:bg-green-900\/30:is(.dark *) { + background-color: rgb(20 83 45 / 0.3); +} + +.dark\:bg-green-900\/40:is(.dark *) { + background-color: rgb(20 83 45 / 0.4); +} + +.dark\:bg-primary\/10:is(.dark *) { + background-color: rgb(20 113 76 / 0.1); +} + +.dark\:bg-primary\/15:is(.dark *) { + background-color: rgb(20 113 76 / 0.15); +} + +.dark\:bg-primary\/25:is(.dark *) { + background-color: rgb(20 113 76 / 0.25); +} + +.dark\:bg-purple-900\/20:is(.dark *) { + background-color: rgb(88 28 135 / 0.2); +} + +.dark\:bg-purple-900\/40:is(.dark *) { + background-color: rgb(88 28 135 / 0.4); +} + +.dark\:bg-red-900\/20:is(.dark *) { + background-color: rgb(127 29 29 / 0.2); +} + +.dark\:bg-red-900\/30:is(.dark *) { + background-color: rgb(127 29 29 / 0.3); +} + +.dark\:bg-red-900\/40:is(.dark *) { + background-color: rgb(127 29 29 / 0.4); +} + +.dark\:bg-slate-700:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1)); +} + +.dark\:bg-slate-800:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1)); +} + +.dark\:bg-slate-900:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1)); +} + +.dark\:bg-white\/10:is(.dark *) { + background-color: rgb(255 255 255 / 0.1); +} + +.dark\:bg-yellow-900\/20:is(.dark *) { + background-color: rgb(113 63 18 / 0.2); +} + +.dark\:bg-yellow-900\/30:is(.dark *) { + background-color: rgb(113 63 18 / 0.3); +} + +.dark\:bg-yellow-900\/40:is(.dark *) { + background-color: rgb(113 63 18 / 0.4); +} + +.dark\:from-gray-900:is(.dark *) { + --tw-gradient-from: #111827 var(--tw-gradient-from-position); + --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +.dark\:from-primary\/15:is(.dark *) { + --tw-gradient-from: rgb(20 113 76 / 0.15) var(--tw-gradient-from-position); + --tw-gradient-to: rgb(20 113 76 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + +.dark\:via-gray-700:is(.dark *) { + --tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), #374151 var(--tw-gradient-via-position), var(--tw-gradient-to); +} + +.dark\:to-gray-700:is(.dark *) { + --tw-gradient-to: #374151 var(--tw-gradient-to-position); +} + +.dark\:to-gray-800:is(.dark *) { + --tw-gradient-to: #1f2937 var(--tw-gradient-to-position); +} + +.dark\:to-primary\/5:is(.dark *) { + --tw-gradient-to: rgb(20 113 76 / 0.05) var(--tw-gradient-to-position); +} + +.dark\:text-amber-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(252 211 77 / var(--tw-text-opacity, 1)); +} + +.dark\:text-amber-400:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(251 191 36 / var(--tw-text-opacity, 1)); +} + +.dark\:text-blue-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(147 197 253 / var(--tw-text-opacity, 1)); +} + +.dark\:text-blue-400:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity, 1)); +} + +.dark\:text-emerald-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(110 231 183 / var(--tw-text-opacity, 1)); +} + +.dark\:text-emerald-400:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(52 211 153 / var(--tw-text-opacity, 1)); +} + +.dark\:text-gray-100:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(243 244 246 / var(--tw-text-opacity, 1)); +} + +.dark\:text-gray-200:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(229 231 235 / var(--tw-text-opacity, 1)); +} + +.dark\:text-gray-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(209 213 219 / var(--tw-text-opacity, 1)); +} + +.dark\:text-gray-400:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(156 163 175 / var(--tw-text-opacity, 1)); +} + +.dark\:text-gray-500:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity, 1)); +} + +.dark\:text-gray-600:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(75 85 99 / var(--tw-text-opacity, 1)); +} + +.dark\:text-green-200:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(187 247 208 / var(--tw-text-opacity, 1)); +} + +.dark\:text-green-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(134 239 172 / var(--tw-text-opacity, 1)); +} + +.dark\:text-green-400:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(74 222 128 / var(--tw-text-opacity, 1)); +} + +.dark\:text-green-400\/80:is(.dark *) { + color: rgb(74 222 128 / 0.8); +} + +.dark\:text-purple-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(216 180 254 / var(--tw-text-opacity, 1)); +} + +.dark\:text-red-200:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(254 202 202 / var(--tw-text-opacity, 1)); +} + +.dark\:text-red-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(252 165 165 / var(--tw-text-opacity, 1)); +} + +.dark\:text-red-400:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(248 113 113 / var(--tw-text-opacity, 1)); +} + +.dark\:text-slate-100:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(241 245 249 / var(--tw-text-opacity, 1)); +} + +.dark\:text-slate-200:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(226 232 240 / var(--tw-text-opacity, 1)); +} + +.dark\:text-slate-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(203 213 225 / var(--tw-text-opacity, 1)); +} + +.dark\:text-slate-400:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(148 163 184 / var(--tw-text-opacity, 1)); +} + +.dark\:text-white:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity, 1)); +} + +.dark\:text-yellow-200:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(254 240 138 / var(--tw-text-opacity, 1)); +} + +.dark\:text-yellow-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(253 224 71 / var(--tw-text-opacity, 1)); +} + +.dark\:placeholder-gray-500:is(.dark *)::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1)); +} + +.dark\:placeholder-gray-500:is(.dark *)::placeholder { + --tw-placeholder-opacity: 1; + color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1)); +} + +.dark\:shadow-none:is(.dark *) { + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.dark\:\[color-scheme\:dark\]:is(.dark *) { + color-scheme: dark; +} + +.dark\:hover\:border-gray-600:hover:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(75 85 99 / var(--tw-border-opacity, 1)); +} + +.dark\:hover\:bg-gray-600:hover:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1)); +} + +.dark\:hover\:bg-gray-700:hover:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1)); +} + +.dark\:hover\:bg-gray-800:hover:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1)); +} + +.dark\:hover\:bg-gray-800\/60:hover:is(.dark *) { + background-color: rgb(31 41 55 / 0.6); +} + +.dark\:hover\:bg-gray-900\/30:hover:is(.dark *) { + background-color: rgb(17 24 39 / 0.3); +} + +.dark\:hover\:bg-green-900\/10:hover:is(.dark *) { + background-color: rgb(20 83 45 / 0.1); +} + +.dark\:hover\:bg-green-900\/20:hover:is(.dark *) { + background-color: rgb(20 83 45 / 0.2); +} + +.dark\:hover\:bg-primary\/15:hover:is(.dark *) { + background-color: rgb(20 113 76 / 0.15); +} + +.dark\:hover\:bg-slate-600:hover:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1)); +} + +.dark\:hover\:bg-slate-800:hover:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1)); +} + +.dark\:hover\:text-emerald-400:hover:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(52 211 153 / var(--tw-text-opacity, 1)); +} + +.dark\:hover\:text-gray-200:hover:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(229 231 235 / var(--tw-text-opacity, 1)); +} + +@media (min-width: 640px) { + + .sm\:inset-auto { + inset: auto; + } + + .sm\:left-1\/2 { + left: 50%; + } + + .sm\:top-1\/2 { + top: 50%; + } + + .sm\:block { + display: block; + } + + .sm\:flex { + display: flex; + } + + .sm\:w-7 { + width: 1.75rem; + } + + .sm\:w-96 { + width: 24rem; + } + + .sm\:w-\[4\.5rem\] { + width: 4.5rem; + } + + .sm\:w-\[680px\] { + width: 680px; + } + + .sm\:w-auto { + width: auto; + } + + .sm\:max-w-sm { + max-width: 24rem; + } + + .sm\:-translate-x-1\/2 { + --tw-translate-x: -50%; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .sm\:-translate-y-1\/2 { + --tw-translate-y: -50%; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .sm\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .sm\:flex-row { + flex-direction: row; + } + + .sm\:items-end { + align-items: flex-end; + } + + .sm\:items-center { + align-items: center; + } + + .sm\:justify-between { + justify-content: space-between; + } + + .sm\:rounded-2xl { + border-radius: 1rem; + } + + .sm\:p-4 { + padding: 1rem; + } + + .sm\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .sm\:pr-5 { + padding-right: 1.25rem; + } +} + +@media (min-width: 768px) { + + .md\:absolute { + position: absolute; + } + + .md\:bottom-8 { + bottom: 2rem; + } + + .md\:left-0 { + left: 0px; + } + + .md\:right-0 { + right: 0px; + } + + .md\:col-span-2 { + grid-column: span 2 / span 2; + } + + .md\:block { + display: block; + } + + .md\:hidden { + display: none; + } + + .md\:h-4 { + height: 1rem; + } + + .md\:h-80 { + height: 20rem; + } + + .md\:h-\[75vh\] { + height: 75vh; + } + + .md\:h-auto { + height: auto; + } + + .md\:min-h-\[500px\] { + min-height: 500px; + } + + .md\:w-4 { + width: 1rem; + } + + .md\:w-\[46\%\] { + width: 46%; + } + + .md\:w-auto { + width: auto; + } + + .md\:flex-1 { + flex: 1 1 0%; + } + + .md\:flex-none { + flex: none; + } + + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .md\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .md\:flex-row { + flex-direction: row; + } + + .md\:items-center { + align-items: center; + } + + .md\:gap-2 { + gap: 0.5rem; + } + + .md\:gap-4 { + gap: 1rem; + } + + .md\:border-t-0 { + border-top-width: 0px; + } + + .md\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .md\:from-transparent { + --tw-gradient-from: transparent var(--tw-gradient-from-position); + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); + } + + .md\:via-transparent { + --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position); + --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to); + } + + .md\:to-black\/30 { + --tw-gradient-to: rgb(0 0 0 / 0.3) var(--tw-gradient-to-position); + } + + .md\:p-5 { + padding: 1.25rem; + } + + .md\:p-8 { + padding: 2rem; + } + + .md\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .md\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .md\:pb-0 { + padding-bottom: 0px; + } + + .md\:pt-0 { + padding-top: 0px; + } + + .md\:pt-20 { + padding-top: 5rem; + } + + .md\:text-left { + text-align: left; + } + + .md\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; + } + + .md\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; + } + + .md\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; + } + + .md\:text-5xl { + font-size: 3rem; + line-height: 1; + } + + .md\:text-base { + font-size: 1rem; + line-height: 1.5rem; + } + + .md\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; + } + + .md\:text-xs { + font-size: 0.75rem; + line-height: 1rem; + } + + .md\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); + --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } +} + +@media (min-width: 1024px) { + + .lg\:col-span-1 { + grid-column: span 1 / span 1; + } + + .lg\:col-span-2 { + grid-column: span 2 / span 2; + } + + .lg\:ml-auto { + margin-left: auto; + } + + .lg\:mr-0 { + margin-right: 0px; + } + + .lg\:block { + display: block; + } + + .lg\:flex { + display: flex; + } + + .lg\:grid { + display: grid; + } + + .lg\:hidden { + display: none; + } + + .lg\:w-\[95vw\] { + width: 95vw; + } + + .lg\:min-w-\[220px\] { + min-width: 220px; + } + + .lg\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .lg\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .lg\:flex-row { + flex-direction: row; + } + + .lg\:items-start { + align-items: flex-start; + } + + .lg\:items-center { + align-items: center; + } + + .lg\:gap-6 { + gap: 1.5rem; + } + + .lg\:border-l { + border-left-width: 1px; + } + + .lg\:pb-10 { + padding-bottom: 2.5rem; + } + + .lg\:pl-6 { + padding-left: 1.5rem; + } + + .lg\:pl-64 { + padding-left: 16rem; + } + + .lg\:text-right { + text-align: right; + } + + .lg\:text-6xl { + font-size: 3.75rem; + line-height: 1; + } +} + +@media (min-width: 1280px) { + + .xl\:w-\[90vw\] { + width: 90vw; + } + + .xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } +} + +@media (min-width: 1536px) { + + .\32xl\:w-\[85vw\] { + width: 85vw; + } +} + diff --git a/test-results/.playwright-artifacts-0/traces/resources/38c0f979f6d45dbf2a82ce20111f311ca3535bf9.json b/test-results/.playwright-artifacts-0/traces/resources/38c0f979f6d45dbf2a82ce20111f311ca3535bf9.json new file mode 100644 index 000000000..14be96a70 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/38c0f979f6d45dbf2a82ce20111f311ca3535bf9.json @@ -0,0 +1 @@ +{"success":true,"data":{"journeyType":"ONE_WAY","outbound":[{"type":"DIRECT","scheduleId":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","sequence":1},"destination":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","sequence":3},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stops":[{"stationId":"00000000-0000-4000-8000-000000000020","stationName":"Alpha","sequence":1,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T06:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000021","stationName":"Bravo","sequence":2,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T08:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000022","stationName":"Charlie","sequence":3,"plannedArrivalAt":"2026-07-23T10:00:00.000Z","plannedDepartureAt":null}],"availabilityByClass":{"Economy Regular":44},"hasAvailability":true,"displayCurrency":"ETB","faresByClass":[{"seatClassName":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000}],"coachTypes":[{"coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","coachTypeCode":"STD","coachId":"00000000-0000-4000-8000-000000000102","classes":[{"name":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000,"available":44}]}]}]},"timestamp":"2026-07-21T10:44:54.111Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/3927eaf68ef1cf789ee4cb1ad20bda52e14cd159.json b/test-results/.playwright-artifacts-0/traces/resources/3927eaf68ef1cf789ee4cb1ad20bda52e14cd159.json new file mode 100644 index 000000000..dfcb9f938 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/3927eaf68ef1cf789ee4cb1ad20bda52e14cd159.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:48.716Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/39338a50bea6455c5f7e7017e7eb16d3a6e5d428.json b/test-results/.playwright-artifacts-0/traces/resources/39338a50bea6455c5f7e7017e7eb16d3a6e5d428.json new file mode 100644 index 000000000..b15ab1927 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/39338a50bea6455c5f7e7017e7eb16d3a6e5d428.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":4250,"lifetimePoints":0},"wallet":{"balanceMinor":99625000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:45:05.288Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/3a26bc826f4e4af9078380e5c98ae17e2b1b7573.json b/test-results/.playwright-artifacts-0/traces/resources/3a26bc826f4e4af9078380e5c98ae17e2b1b7573.json new file mode 100644 index 000000000..6e70262b5 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/3a26bc826f4e4af9078380e5c98ae17e2b1b7573.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:41.850Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/3b0fcfbc2ab1e8019d3bb4cb89f07ea49871704a.json b/test-results/.playwright-artifacts-0/traces/resources/3b0fcfbc2ab1e8019d3bb4cb89f07ea49871704a.json new file mode 100644 index 000000000..21d5ebf18 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/3b0fcfbc2ab1e8019d3bb4cb89f07ea49871704a.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","lineNumber":256,"column":1,"methodName":"workLoop","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/3ba650e38c01b7f4dba7c59a8ac235a4f5802b22.htc b/test-results/.playwright-artifacts-0/traces/resources/3ba650e38c01b7f4dba7c59a8ac235a4f5802b22.htc new file mode 100644 index 000000000..99ef021d3 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/3ba650e38c01b7f4dba7c59a8ac235a4f5802b22.htc @@ -0,0 +1 @@ +0:["development",[["children","booking","children","seats",["seats",{"children":["__PAGE__",{}]}],null,null]]] diff --git a/test-results/.playwright-artifacts-0/traces/resources/3bacf0da419a26627c99e5e0265063146b514ec2.json b/test-results/.playwright-artifacts-0/traces/resources/3bacf0da419a26627c99e5e0265063146b514ec2.json new file mode 100644 index 000000000..7b11637fc --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/3bacf0da419a26627c99e5e0265063146b514ec2.json @@ -0,0 +1 @@ +{"success":true,"data":{"unreadCount":0},"timestamp":"2026-07-21T10:44:48.837Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/3d4f6df6f6a33998487940390a9be224597cadc4.html b/test-results/.playwright-artifacts-0/traces/resources/3d4f6df6f6a33998487940390a9be224597cadc4.html new file mode 100644 index 000000000..730c3059b --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/3d4f6df6f6a33998487940390a9be224597cadc4.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway
\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/3f0b7fb2b3ba0cdd3f01af59de0f741f79b85084.json b/test-results/.playwright-artifacts-0/traces/resources/3f0b7fb2b3ba0cdd3f01af59de0f741f79b85084.json new file mode 100644 index 000000000..55591b9f2 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/3f0b7fb2b3ba0cdd3f01af59de0f741f79b85084.json @@ -0,0 +1 @@ +{"passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","holdId":"874274a3-2380-4efe-b68e-2687319fd54b","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","seatClassId":"00000000-0000-4000-8000-000000000010","bookingType":"ONE_WAY","displayCurrency":"ETB","passengers":[{"seatId":"fae276bc-386b-4045-9242-f3a7f295423f","passengerName":"Adult 1","dateOfBirth":"1990-06-15","idDocumentType":"NATIONAL_ID","idDocumentNumber":"","passportNumber":"","passportCountry":"","nationality":"ETHIOPIAN","seatFareMinor":75000},{"seatId":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","passengerName":"Adult 2","dateOfBirth":"1990-06-15","idDocumentType":"NATIONAL_ID","idDocumentNumber":"","passportNumber":"","passportCountry":"","nationality":"ETHIOPIAN","seatFareMinor":75000},{"seatId":"82d00a65-f7cf-40a6-b889-f45584ac54be","passengerName":"Child 3","dateOfBirth":"2023-03-10","idDocumentType":"NATIONAL_ID","idDocumentNumber":"","passportNumber":"","passportCountry":"","nationality":"ETHIOPIAN","seatFareMinor":75000}],"reviewedTotalMinor":225000} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/43defe855a222e09a5dda774d593c5d8ae1371b8.json b/test-results/.playwright-artifacts-0/traces/resources/43defe855a222e09a5dda774d593c5d8ae1371b8.json new file mode 100644 index 000000000..884405f01 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/43defe855a222e09a5dda774d593c5d8ae1371b8.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","lineNumber":225,"column":1,"methodName":"flushWork","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/43f49247c95bccf4b06d211184225e3b695a875a.json b/test-results/.playwright-artifacts-0/traces/resources/43f49247c95bccf4b06d211184225e3b695a875a.json new file mode 100644 index 000000000..fae00d9a1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/43f49247c95bccf4b06d211184225e3b695a875a.json @@ -0,0 +1 @@ +{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","journeyDirection":"OUTBOUND","passengers":[{"passengerId":"temp-1784630681700-0","seatId":"3c0ae11f-fe80-410d-95d4-3386b00b13b7"}]} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/46ae445702343bdfd9e1086dfe03abe2ec9d6774.json b/test-results/.playwright-artifacts-0/traces/resources/46ae445702343bdfd9e1086dfe03abe2ec9d6774.json new file mode 100644 index 000000000..730fcd49f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/46ae445702343bdfd9e1086dfe03abe2ec9d6774.json @@ -0,0 +1 @@ +{"passengers":[{"name":"Adult 1","dateOfBirth":"1990-06-15","gender":"Male","nationality":"ETHIOPIAN","nationalId":"","passportNumber":"","passportCountry":"","passportIssueDate":"","passportExpiryDate":"","passportIssuingAuthority":"","phone":"+251912345678","email":"","isPrimaryPassenger":true}],"deviceId":"c2660f7b-cb4c-40ca-b9a4-38c077ff6bc5"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/46c3ec03f8bdd79ff078056619ab7fd2.jsonl b/test-results/.playwright-artifacts-0/traces/resources/46c3ec03f8bdd79ff078056619ab7fd2.jsonl new file mode 100644 index 000000000..962aa5cd7 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/46c3ec03f8bdd79ff078056619ab7fd2.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630704658.6729,"opcode":1,"data":"{\"action\":\"sync\",\"hash\":\"27234cfe8de65dd5\",\"errors\":[],\"warnings\":[],\"versionInfo\":{\"staleness\":\"stale-major\",\"expected\":\"16.2.10\",\"installed\":\"14.2.35\"}}"} +{"type":"send","time":1784630704658.863,"opcode":1,"data":"{\"event\":\"client-success\",\"clientId\":1784630704572}"} +{"type":"send","time":1784630710931.0278,"opcode":1,"data":"{\"event\":\"ping\",\"tree\":[\"\",{\"children\":[\"booking\",{\"children\":[\"payment\",{\"children\":[\"__PAGE__\",{},\"/booking/payment\",\"refresh\"]}]},null,null]},null,null,true],\"appDirRoute\":true}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/490d9661181d7957cdb3f8443d38b7752fc17e19.json b/test-results/.playwright-artifacts-0/traces/resources/490d9661181d7957cdb3f8443d38b7752fc17e19.json new file mode 100644 index 000000000..9b7b4f349 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/490d9661181d7957cdb3f8443d38b7752fc17e19.json @@ -0,0 +1 @@ +{"success":true,"data":{"unreadCount":0},"timestamp":"2026-07-21T10:45:03.970Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/497125fd4dbe44d69772d5b9d26e1e54.jsonl b/test-results/.playwright-artifacts-0/traces/resources/497125fd4dbe44d69772d5b9d26e1e54.jsonl new file mode 100644 index 000000000..67495df2c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/497125fd4dbe44d69772d5b9d26e1e54.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630683476.4204,"opcode":1,"data":"0{\"sid\":\"Gwri8_cpM5zfNWfsAAAJ\",\"upgrades\":[],\"pingInterval\":25000,\"pingTimeout\":20000,\"maxPayload\":1000000}"} +{"type":"send","time":1784630683476.8193,"opcode":1,"data":"40/passenger-support-chat,{\"guestId\":\"09aab790-cd4c-4d72-8055-32efc70297e2\"}"} +{"type":"receive","time":1784630683477.1523,"opcode":1,"data":"40/passenger-support-chat,{\"sid\":\"ty2Kj3Ux6pAvcy-KAAAK\"}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/4b1c11572f061a01568c1e7d8619a21adcead5da.json b/test-results/.playwright-artifacts-0/traces/resources/4b1c11572f061a01568c1e7d8619a21adcead5da.json new file mode 100644 index 000000000..a566d2010 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/4b1c11572f061a01568c1e7d8619a21adcead5da.json @@ -0,0 +1 @@ +{"passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","holdId":"828660f9-6bf3-4170-a28e-e6d8e7b1bead","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","seatClassId":"00000000-0000-4000-8000-000000000010","bookingType":"ONE_WAY","displayCurrency":"ETB","passengers":[{"seatId":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","passengerName":"Adult 1","dateOfBirth":"1990-06-15","idDocumentType":"NATIONAL_ID","idDocumentNumber":"","passportNumber":"","passportCountry":"","nationality":"ETHIOPIAN","seatFareMinor":75000}],"reviewedTotalMinor":75000} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/4cb2c9bca0824e6da9fe682e7c06c33d55bc5b6b.json b/test-results/.playwright-artifacts-0/traces/resources/4cb2c9bca0824e6da9fe682e7c06c33d55bc5b6b.json new file mode 100644 index 000000000..51e8bcffd --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/4cb2c9bca0824e6da9fe682e7c06c33d55bc5b6b.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":4250,"lifetimePoints":0},"wallet":{"balanceMinor":99625000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:45:04.611Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/4e1672a96f75cb07adec98fae8bc280ec0d49ff2.json b/test-results/.playwright-artifacts-0/traces/resources/4e1672a96f75cb07adec98fae8bc280ec0d49ff2.json new file mode 100644 index 000000000..630fcfaf1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/4e1672a96f75cb07adec98fae8bc280ec0d49ff2.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":26949,"column":1,"methodName":"beginWork","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/51972257d77ca200ec2e5ee6e2c5c76d24493c88.json b/test-results/.playwright-artifacts-0/traces/resources/51972257d77ca200ec2e5ee6e2c5c76d24493c88.json new file mode 100644 index 000000000..aaca428a7 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/51972257d77ca200ec2e5ee6e2c5c76d24493c88.json @@ -0,0 +1 @@ +{"code":"EXPIRED50"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/51f5a60e4ec56d60a97d04e0b60ad44cd251f1b2.json b/test-results/.playwright-artifacts-0/traces/resources/51f5a60e4ec56d60a97d04e0b60ad44cd251f1b2.json new file mode 100644 index 000000000..e204c7207 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/51f5a60e4ec56d60a97d04e0b60ad44cd251f1b2.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:48.709Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/52013f23d15462d527c039601b2d97d3b0078e23.htc b/test-results/.playwright-artifacts-0/traces/resources/52013f23d15462d527c039601b2d97d3b0078e23.htc new file mode 100644 index 000000000..f44037bd5 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/52013f23d15462d527c039601b2d97d3b0078e23.htc @@ -0,0 +1,11 @@ +2:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/client-page.js",["app-pages-internals","static/chunks/app-pages-internals.js"],"ClientPageRoot"] +3:I["(app-pages-browser)/./src/app/booking/payment/page.tsx",["app/booking/payment/page","static/chunks/app/booking/payment/page.js"],"default",1] +4:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js",["app-pages-internals","static/chunks/app-pages-internals.js"],""] +5:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/render-from-template-context.js",["app-pages-internals","static/chunks/app-pages-internals.js"],""] +1:D{"name":"","env":"Server"} +6:D{"name":"","env":"Server"} +7:D{"name":"r6","env":"Server"} +7:null +0:["development",[["children","booking","children","payment",["payment",{"children":["__PAGE__",{}]}],["payment",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","booking","children","payment","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null],["$L6","$7"]]]] +6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","3",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["$","meta","4",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","5",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","6",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","7",{"name":"robots","content":"index, follow"}],["$","meta","8",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["$","meta","9",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","10",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["$","meta","11",{"property":"og:url","content":"https://passenger.edrsc.com"}],["$","meta","12",{"property":"og:site_name","content":"EDR Passenger Portal"}],["$","meta","13",{"property":"og:locale","content":"en_US"}],["$","meta","14",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["$","meta","15",{"property":"og:image:width","content":"1200"}],["$","meta","16",{"property":"og:image:height","content":"630"}],["$","meta","17",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["$","meta","18",{"property":"og:type","content":"website"}],["$","meta","19",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","20",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","21",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["$","meta","22",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["$","link","23",{"rel":"shortcut icon","href":"/edr-logo.png"}],["$","link","24",{"rel":"icon","href":"/edr-logo.png"}],["$","link","25",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]] +1:null diff --git a/test-results/.playwright-artifacts-0/traces/resources/528d5618a37f1e7362771ebcbbc0d0aee0ea7366.json b/test-results/.playwright-artifacts-0/traces/resources/528d5618a37f1e7362771ebcbbc0d0aee0ea7366.json new file mode 100644 index 000000000..4d051d298 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/528d5618a37f1e7362771ebcbbc0d0aee0ea7366.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:45:07.323Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/543f43337720471504645c2573d4956b8f44a640.json b/test-results/.playwright-artifacts-0/traces/resources/543f43337720471504645c2573d4956b8f44a640.json new file mode 100644 index 000000000..0d84d0fa1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/543f43337720471504645c2573d4956b8f44a640.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"b55a26b7-23d7-468e-a183-72025a675bb0","type":"WALLET","displayName":"Wallet","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":true,"enabled":true,"sortOrder":0,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"},{"id":"7f9b13ca-0729-4454-a2bf-1439714e5f66","type":"TELEBIRR","displayName":"telebirr","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":false,"enabled":true,"sortOrder":1,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"}],"timestamp":"2026-07-21T10:44:47.680Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/562eb0b7f874d2028ba2d2fb73742f7e3091a05c.json b/test-results/.playwright-artifacts-0/traces/resources/562eb0b7f874d2028ba2d2fb73742f7e3091a05c.json new file mode 100644 index 000000000..9b72f51e5 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/562eb0b7f874d2028ba2d2fb73742f7e3091a05c.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:50.339Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/5698f18e9898bae459f7f5288cc4862dd7dd64b4.html b/test-results/.playwright-artifacts-0/traces/resources/5698f18e9898bae459f7f5288cc4862dd7dd64b4.html new file mode 100644 index 000000000..43da1a5d6 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/5698f18e9898bae459f7f5288cc4862dd7dd64b4.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway

Searching for trains...

Finding the best options for your journey

\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/57513e6912944e9aa8c8d45f42896bf7999c49d0.json b/test-results/.playwright-artifacts-0/traces/resources/57513e6912944e9aa8c8d45f42896bf7999c49d0.json new file mode 100644 index 000000000..028454a19 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/57513e6912944e9aa8c8d45f42896bf7999c49d0.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:39.555Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/597def754466a83ff4a0afb2047b7e83f4d13f30.json b/test-results/.playwright-artifacts-0/traces/resources/597def754466a83ff4a0afb2047b7e83f4d13f30.json new file mode 100644 index 000000000..bd22e6e62 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/597def754466a83ff4a0afb2047b7e83f4d13f30.json @@ -0,0 +1 @@ +{"originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","date":"2026-07-23","adultCount":1,"childCount":0,"nationality":"OTHER","journeyType":"ONE_WAY"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/5cdc05fc5e34450188e21ac8f114b681ec8f53d2.html b/test-results/.playwright-artifacts-0/traces/resources/5cdc05fc5e34450188e21ac8f114b681ec8f53d2.html new file mode 100644 index 000000000..e7d4740bd --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/5cdc05fc5e34450188e21ac8f114b681ec8f53d2.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway

Searching for trains...

Finding the best options for your journey

\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/5e326df21f4d4f89fa20e6ac8f361828f3390d4b.json b/test-results/.playwright-artifacts-0/traces/resources/5e326df21f4d4f89fa20e6ac8f361828f3390d4b.json new file mode 100644 index 000000000..1597c84b7 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/5e326df21f4d4f89fa20e6ac8f361828f3390d4b.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:59.799Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/611521849884bcf3931af7370f2039f2a808826c.json b/test-results/.playwright-artifacts-0/traces/resources/611521849884bcf3931af7370f2039f2a808826c.json new file mode 100644 index 000000000..7d41fea92 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/611521849884bcf3931af7370f2039f2a808826c.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:52.402Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/621d39b5480e6929ec324f9eeca4eed37adbb557.json b/test-results/.playwright-artifacts-0/traces/resources/621d39b5480e6929ec324f9eeca4eed37adbb557.json new file mode 100644 index 000000000..8d8c4c4a3 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/621d39b5480e6929ec324f9eeca4eed37adbb557.json @@ -0,0 +1 @@ +{"success":true,"data":{"count":1,"passengerIds":["505a45d9-a306-4e00-8412-e956163f8f92"],"passengers":[{"id":"505a45d9-a306-4e00-8412-e956163f8f92","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","nationality":"ETHIOPIAN","phone":"+251912345678","email":""}],"message":"Passenger details saved successfully"},"timestamp":"2026-07-21T10:44:25.292Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/64fcad3073157882e0ade71c8d4452752dadf81f.json b/test-results/.playwright-artifacts-0/traces/resources/64fcad3073157882e0ade71c8d4452752dadf81f.json new file mode 100644 index 000000000..e2bb2de93 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/64fcad3073157882e0ade71c8d4452752dadf81f.json @@ -0,0 +1 @@ +{"success":true,"data":{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","passengers":[{"passengerName":"Adult 1","dateOfBirth":"1990-06-15","category":"ADULT","ageYears":36,"seatClassId":"00000000-0000-4000-8000-000000000010","seatClassName":"Economy Regular","nationality":"ETHIOPIAN","baseFareMinor":75000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":75000,"isFree":false,"displayCurrency":"ETB","displayFareMinor":75000}],"subtotalMinor":75000,"discountMinor":0,"totalMinor":75000,"currency":"ETB","displayCurrency":"ETB","displayTotalMinor":75000},"timestamp":"2026-07-21T10:44:34.630Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/653b8391af2601d80e25afa099f1df3e90ed82f0.json b/test-results/.playwright-artifacts-0/traces/resources/653b8391af2601d80e25afa099f1df3e90ed82f0.json new file mode 100644 index 000000000..9af3cef75 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/653b8391af2601d80e25afa099f1df3e90ed82f0.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"HELD","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:46.562Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/6540fa710fdd6112d14449ca200d2dd1d3110a31.json b/test-results/.playwright-artifacts-0/traces/resources/6540fa710fdd6112d14449ca200d2dd1d3110a31.json new file mode 100644 index 000000000..93299a251 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/6540fa710fdd6112d14449ca200d2dd1d3110a31.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"0ed21f92-0885-4933-963e-9a64f2efbfc5","bookingRef":"NAIOLE","passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","packageId":null,"priceTierId":null,"bookingType":"ONE_WAY","status":"PENDING_PAYMENT","currency":"USD","totalMinor":125000,"adultCount":1,"childCount":0,"displayCurrency":"USD","displayTotalMinor":1250,"returnScheduleId":null,"returnOriginStationId":null,"returnDestinationStationId":null,"returnHoldId":null,"returnSeatClassId":null,"returnLegStatus":"NOT_APPLICABLE","leg2ScheduleId":null,"leg2OriginStationId":null,"leg2DestinationStationId":null,"leg2SeatClassId":null,"returnLeg2ScheduleId":null,"returnLeg2OriginStationId":null,"returnLeg2DestStationId":null,"returnLeg2SeatClassId":null,"originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"userAgent":null,"source":"WEB","promoCode":null,"paidAt":null,"paymentReminderSentAt":null,"packageDepartureStationId":null,"createdAt":"2026-07-21T10:45:08.224Z","updatedAt":"2026-07-21T10:45:08.224Z","seats":[{"id":"ac889945-66ac-4c05-a8f8-1e9db719cad1","bookingId":"0ed21f92-0885-4933-963e-9a64f2efbfc5","seatId":"d25631fa-6857-446d-ad23-094a27deda66","leg":1,"scheduleId":"00000000-0000-4000-8000-000000000101","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","passengerCategory":"ADULT","idDocumentType":"PASSPORT","idDocumentNumber":null,"passportNumber":"P1234567","passportCountry":"Canada","verifaydaVerified":false,"verifaydaData":null,"faydaVerifiedAt":null,"faydaSub":null,"faydaVerifiedName":null,"seatLabelSnapshot":null,"fareMinor":1250,"displayCurrency":"USD","displayFareMinor":null,"seat":{"id":"d25631fa-6857-446d-ad23-094a27deda66","coachId":"00000000-0000-4000-8000-000000000102","seatNumber":"2D","row":2,"col":"D","kind":"STANDARD","status":"AVAILABLE","heldUntil":null,"isWindow":true,"isAisle":false,"bedPosition":null,"premiumFeeMinor":0}}],"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainId":"00000000-0000-4000-8000-000000000100","routeId":"00000000-0000-4000-8000-000000000030","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stopsCount":3,"reservedCount":0,"onTimePercent":100,"carbonRating":"A","notes":null,"isPackageOnly":false,"originStation":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","countryCode":null,"sequence":1,"isOperational":true,"lat":null,"lng":null},"destinationStation":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","countryCode":null,"sequence":3,"isOperational":true,"lat":null,"lng":null},"train":{"id":"00000000-0000-4000-8000-000000000100","number":"UI-100","name":"UI Test Express","operatorId":"op_edr","operatorName":null,"description":null,"isActive":true,"createdAt":"2026-07-21T10:44:20.893Z","updatedAt":"2026-07-21T10:44:20.893Z"}},"fareBreakdown":{"baseFareMinor":125000,"adultCount":1,"adultFareMinor":125000,"childCount":0,"freeChildrenCount":0,"paidChildrenCount":0,"childFareMinor":0,"totalBaseFareMinor":125000,"discountMinor":0,"loyaltyRedemptionMinor":0,"taxesFeesMinor":0,"totalMinor":125000}},"timestamp":"2026-07-21T10:45:08.231Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/65f838516d5c841fd364313a83b0baede15e22c9.json b/test-results/.playwright-artifacts-0/traces/resources/65f838516d5c841fd364313a83b0baede15e22c9.json new file mode 100644 index 000000000..4b529c53d --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/65f838516d5c841fd364313a83b0baede15e22c9.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"2133d122-fa06-4e53-a213-7afb4a986a8b","bookingRef":"MFXCQN","passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","packageId":null,"priceTierId":null,"bookingType":"ONE_WAY","status":"PENDING_PAYMENT","currency":"ETB","totalMinor":75000,"adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"returnScheduleId":null,"returnOriginStationId":null,"returnDestinationStationId":null,"returnHoldId":null,"returnSeatClassId":null,"returnLegStatus":"NOT_APPLICABLE","leg2ScheduleId":null,"leg2OriginStationId":null,"leg2DestinationStationId":null,"leg2SeatClassId":null,"returnLeg2ScheduleId":null,"returnLeg2OriginStationId":null,"returnLeg2DestStationId":null,"returnLeg2SeatClassId":null,"originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"userAgent":null,"source":"WEB","promoCode":null,"paidAt":null,"paymentReminderSentAt":null,"packageDepartureStationId":null,"createdAt":"2026-07-21T10:44:35.487Z","updatedAt":"2026-07-21T10:44:35.487Z","seats":[{"id":"1bbb7861-d067-4644-8930-220d9a6963e3","bookingId":"2133d122-fa06-4e53-a213-7afb4a986a8b","seatId":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","leg":1,"scheduleId":"00000000-0000-4000-8000-000000000101","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","passengerCategory":"ADULT","idDocumentType":"NATIONAL_ID","idDocumentNumber":null,"passportNumber":"","passportCountry":"","verifaydaVerified":false,"verifaydaData":null,"faydaVerifiedAt":null,"faydaSub":null,"faydaVerifiedName":null,"seatLabelSnapshot":null,"fareMinor":75000,"displayCurrency":"ETB","displayFareMinor":null,"seat":{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","coachId":"00000000-0000-4000-8000-000000000102","seatNumber":"1B","row":1,"col":"B","kind":"STANDARD","status":"AVAILABLE","heldUntil":null,"isWindow":false,"isAisle":true,"bedPosition":null,"premiumFeeMinor":0}}],"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainId":"00000000-0000-4000-8000-000000000100","routeId":"00000000-0000-4000-8000-000000000030","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stopsCount":3,"reservedCount":0,"onTimePercent":100,"carbonRating":"A","notes":null,"isPackageOnly":false,"originStation":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","countryCode":null,"sequence":1,"isOperational":true,"lat":null,"lng":null},"destinationStation":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","countryCode":null,"sequence":3,"isOperational":true,"lat":null,"lng":null},"train":{"id":"00000000-0000-4000-8000-000000000100","number":"UI-100","name":"UI Test Express","operatorId":"op_edr","operatorName":null,"description":null,"isActive":true,"createdAt":"2026-07-21T10:44:20.893Z","updatedAt":"2026-07-21T10:44:20.893Z"}},"fareBreakdown":{"baseFareMinor":75000,"adultCount":1,"adultFareMinor":75000,"childCount":0,"freeChildrenCount":0,"paidChildrenCount":0,"childFareMinor":0,"totalBaseFareMinor":75000,"discountMinor":0,"loyaltyRedemptionMinor":0,"taxesFeesMinor":0,"totalMinor":75000}},"timestamp":"2026-07-21T10:44:35.501Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/6973b5f2b40ac3fc72be3a78432185b806f32763.json b/test-results/.playwright-artifacts-0/traces/resources/6973b5f2b40ac3fc72be3a78432185b806f32763.json new file mode 100644 index 000000000..7867b56de --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/6973b5f2b40ac3fc72be3a78432185b806f32763.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"BRONZE","pointsBalance":500,"lifetimePoints":0},"wallet":{"balanceMinor":100000000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:23.863Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/697c4b5c08ebdfc374ecc527ee7e84a14e5ff808.html b/test-results/.playwright-artifacts-0/traces/resources/697c4b5c08ebdfc374ecc527ee7e84a14e5ff808.html new file mode 100644 index 000000000..86b393cd4 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/697c4b5c08ebdfc374ecc527ee7e84a14e5ff808.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway

Searching for trains...

Finding the best options for your journey

\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/6d9db5c37a092b526bd2033869de9f30d53c2c2e.json b/test-results/.playwright-artifacts-0/traces/resources/6d9db5c37a092b526bd2033869de9f30d53c2c2e.json new file mode 100644 index 000000000..0670edbe1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/6d9db5c37a092b526bd2033869de9f30d53c2c2e.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","lineNumber":534,"column":1,"methodName":"MessagePort.performWorkUntilDeadline","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/6e4e472b5aef5bab40e438cd9928d5f4399c25a6.json b/test-results/.playwright-artifacts-0/traces/resources/6e4e472b5aef5bab40e438cd9928d5f4399c25a6.json new file mode 100644 index 000000000..41d3def04 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/6e4e472b5aef5bab40e438cd9928d5f4399c25a6.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"BRONZE","pointsBalance":1250,"lifetimePoints":0},"wallet":{"balanceMinor":99925000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:31.357Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/6fda7c00812da6478d5851f5ce8e14d00892a6ce.json b/test-results/.playwright-artifacts-0/traces/resources/6fda7c00812da6478d5851f5ce8e14d00892a6ce.json new file mode 100644 index 000000000..c4a47fa6d --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/6fda7c00812da6478d5851f5ce8e14d00892a6ce.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:54.105Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/702616f45a45edd5363bd896084028687f76e228.json b/test-results/.playwright-artifacts-0/traces/resources/702616f45a45edd5363bd896084028687f76e228.json new file mode 100644 index 000000000..b578be215 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/702616f45a45edd5363bd896084028687f76e228.json @@ -0,0 +1 @@ +{"success":true,"data":{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","passengers":[{"passengerName":"Adult 1","dateOfBirth":"1990-06-15","category":"ADULT","ageYears":36,"seatClassId":"00000000-0000-4000-8000-000000000011","seatClassName":"Economy Regular Intl","nationality":"OTHER","baseFareMinor":125000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":125000,"isFree":false,"displayCurrency":"USD","displayFareMinor":1250}],"subtotalMinor":125000,"discountMinor":0,"totalMinor":1250,"currency":"USD","displayCurrency":"USD","displayTotalMinor":1250},"timestamp":"2026-07-21T10:45:07.367Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/71180a63754e255f2f4b080ed31783b15222667d.json b/test-results/.playwright-artifacts-0/traces/resources/71180a63754e255f2f4b080ed31783b15222667d.json new file mode 100644 index 000000000..60937afdc --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/71180a63754e255f2f4b080ed31783b15222667d.json @@ -0,0 +1 @@ +{"originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","date":"2026-07-23","adultCount":1,"childCount":0,"nationality":"DJIBOUTIAN","journeyType":"ONE_WAY"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7206a2fb47066445f636bec970a08e917002cbf5.html b/test-results/.playwright-artifacts-0/traces/resources/7206a2fb47066445f636bec970a08e917002cbf5.html new file mode 100644 index 000000000..6ac779aa9 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7206a2fb47066445f636bec970a08e917002cbf5.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway

Where are you headed today?

🏖️

Holiday Packages

\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/734a2a6513ae195c0ad2785171f03f98910db9a3.json b/test-results/.playwright-artifacts-0/traces/resources/734a2a6513ae195c0ad2785171f03f98910db9a3.json new file mode 100644 index 000000000..296e2fa8c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/734a2a6513ae195c0ad2785171f03f98910db9a3.json @@ -0,0 +1 @@ +{"bookingId":"0ed21f92-0885-4933-963e-9a64f2efbfc5","method":"WALLET","paymentMethodId":"b55a26b7-23d7-468e-a183-72025a675bb0","platform":"web"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7361b6bb9890a3165944bc00ab001e12b69f0ccd.json b/test-results/.playwright-artifacts-0/traces/resources/7361b6bb9890a3165944bc00ab001e12b69f0ccd.json new file mode 100644 index 000000000..a25a1de74 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7361b6bb9890a3165944bc00ab001e12b69f0ccd.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:45:05.413Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/73de4d730799e08413be700689d43429c3617ccd.json b/test-results/.playwright-artifacts-0/traces/resources/73de4d730799e08413be700689d43429c3617ccd.json new file mode 100644 index 000000000..ee29f1b62 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/73de4d730799e08413be700689d43429c3617ccd.json @@ -0,0 +1 @@ +{"passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","holdId":"f0888169-1b59-495c-8b1c-756f171b3c4d","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","seatClassId":"00000000-0000-4000-8000-000000000010","bookingType":"ONE_WAY","displayCurrency":"ETB","passengers":[{"seatId":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","passengerName":"Adult 1","dateOfBirth":"1990-06-15","idDocumentType":"NATIONAL_ID","idDocumentNumber":"","passportNumber":"","passportCountry":"","nationality":"ETHIOPIAN","seatFareMinor":75000}],"promoCode":"EXPIRED50","reviewedTotalMinor":75000} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7417263ae87c3ec86aa6943d023a97393f69f489.json b/test-results/.playwright-artifacts-0/traces/resources/7417263ae87c3ec86aa6943d023a97393f69f489.json new file mode 100644 index 000000000..b1fe05122 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7417263ae87c3ec86aa6943d023a97393f69f489.json @@ -0,0 +1 @@ +{"passengers":[{"name":"Adult 1","dateOfBirth":"1990-06-15","gender":"Male","nationality":"ETHIOPIAN","nationalId":"","passportNumber":"","passportCountry":"","passportIssueDate":"","passportExpiryDate":"","passportIssuingAuthority":"","phone":"+251912345678","email":"","isPrimaryPassenger":true},{"name":"Adult 2","dateOfBirth":"1990-06-15","gender":"Female","nationality":"ETHIOPIAN","nationalId":"","passportNumber":"","passportCountry":"","passportIssueDate":"","passportExpiryDate":"","passportIssuingAuthority":"","phone":"+251912345678","email":"","isPrimaryPassenger":false},{"name":"Child 1","dateOfBirth":"2023-03-10","gender":"Female","nationality":"ETHIOPIAN","nationalId":"","passportNumber":"","passportCountry":"","passportIssueDate":"","passportExpiryDate":"","passportIssuingAuthority":"","phone":"+251912345678","email":"","isPrimaryPassenger":false},{"name":"Child 2","dateOfBirth":"2023-03-10","gender":"Female","nationality":"ETHIOPIAN","nationalId":"","passportNumber":"","passportCountry":"","passportIssueDate":"","passportExpiryDate":"","passportIssuingAuthority":"","phone":"+251912345678","email":"","isPrimaryPassenger":false},{"name":"Child 3","dateOfBirth":"2023-03-10","gender":"Female","nationality":"ETHIOPIAN","nationalId":"","passportNumber":"","passportCountry":"","passportIssueDate":"","passportExpiryDate":"","passportIssuingAuthority":"","phone":"+251912345678","email":"","isPrimaryPassenger":false}],"deviceId":"eb7ef497-8ea3-4586-8f1d-55ffd7e5f9ae"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7562facd3e1a8997c66b5875f2ce104b97f2d48d.json b/test-results/.playwright-artifacts-0/traces/resources/7562facd3e1a8997c66b5875f2ce104b97f2d48d.json new file mode 100644 index 000000000..75ffdb0bd --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7562facd3e1a8997c66b5875f2ce104b97f2d48d.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"HELD","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:26.409Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7664575d7ddb824e1ee44454c1f3071cb42371ea.json b/test-results/.playwright-artifacts-0/traces/resources/7664575d7ddb824e1ee44454c1f3071cb42371ea.json new file mode 100644 index 000000000..50239a7e6 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7664575d7ddb824e1ee44454c1f3071cb42371ea.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":4250,"lifetimePoints":0},"wallet":{"balanceMinor":99625000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:45:04.605Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/76d319cee1dd831e618e1b63cd7c9e77780ec8e1.json b/test-results/.playwright-artifacts-0/traces/resources/76d319cee1dd831e618e1b63cd7c9e77780ec8e1.json new file mode 100644 index 000000000..dd1f1cab1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/76d319cee1dd831e618e1b63cd7c9e77780ec8e1.json @@ -0,0 +1 @@ +{"bookingId":"032991e7-7bce-4e09-b43a-72afbb08504b","method":"WALLET","paymentMethodId":"b55a26b7-23d7-468e-a183-72025a675bb0","platform":"web"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7725d25048d453e7fb11b97178124b5af343b921.json b/test-results/.playwright-artifacts-0/traces/resources/7725d25048d453e7fb11b97178124b5af343b921.json new file mode 100644 index 000000000..04a3a8960 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7725d25048d453e7fb11b97178124b5af343b921.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"BRONZE","pointsBalance":500,"lifetimePoints":0},"wallet":{"balanceMinor":100000000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:23.097Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/77b09b4b857b54729b6f8dd90b4281156569bd2d.json b/test-results/.playwright-artifacts-0/traces/resources/77b09b4b857b54729b6f8dd90b4281156569bd2d.json new file mode 100644 index 000000000..a9fe5e2c9 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/77b09b4b857b54729b6f8dd90b4281156569bd2d.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":18509,"column":1,"methodName":"beginWork$1","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/782efd8169339aec761e00b0b7f8af4668bbee9f.json b/test-results/.playwright-artifacts-0/traces/resources/782efd8169339aec761e00b0b7f8af4668bbee9f.json new file mode 100644 index 000000000..d17172117 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/782efd8169339aec761e00b0b7f8af4668bbee9f.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":16621,"column":1,"methodName":"updateHostComponent$1","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/794346a4af602db7ccacf57a88ab4194c0cf5b7d.json b/test-results/.playwright-artifacts-0/traces/resources/794346a4af602db7ccacf57a88ab4194c0cf5b7d.json new file mode 100644 index 000000000..1fc419144 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/794346a4af602db7ccacf57a88ab4194c0cf5b7d.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":7758,"column":1,"methodName":"flushSyncWorkAcrossRoots_impl","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7c931405b50e733afb66aad000b0f5a87c024160.json b/test-results/.playwright-artifacts-0/traces/resources/7c931405b50e733afb66aad000b0f5a87c024160.json new file mode 100644 index 000000000..2eaab5d8e --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7c931405b50e733afb66aad000b0f5a87c024160.json @@ -0,0 +1 @@ +{"success":true,"data":{"holdId":"f0888169-1b59-495c-8b1c-756f171b3c4d","expiresAt":"2026-07-21T10:49:34.466Z","createdAt":"2026-07-21T10:44:34.480Z","ttlSeconds":299,"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","fullRouteOrigin":"Alpha","fullRouteDestination":"Charlie"},"leg":{"originStationId":"00000000-0000-4000-8000-000000000020","originStationName":"Alpha","originStationCode":"AAA","originSequence":1,"destinationStationId":"00000000-0000-4000-8000-000000000022","destinationStationName":"Charlie","destinationStationCode":"CCC","destinationSequence":3},"passengers":[{"passengerId":"temp-1784630674460-0","seat":{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","label":"1B","seatNumber":"1B","coach":"UI-C1","seatClass":"Standard","row":1,"col":"B"}}]},"timestamp":"2026-07-21T10:44:34.484Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7d3517a6006f9eec96260ab19a328903d556183c.json b/test-results/.playwright-artifacts-0/traces/resources/7d3517a6006f9eec96260ab19a328903d556183c.json new file mode 100644 index 000000000..4b7ede8d1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7d3517a6006f9eec96260ab19a328903d556183c.json @@ -0,0 +1 @@ +{"success":true,"data":{"journeyType":"ONE_WAY","outbound":[{"type":"DIRECT","scheduleId":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","sequence":1},"destination":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","sequence":3},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stops":[{"stationId":"00000000-0000-4000-8000-000000000020","stationName":"Alpha","sequence":1,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T06:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000021","stationName":"Bravo","sequence":2,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T08:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000022","stationName":"Charlie","sequence":3,"plannedArrivalAt":"2026-07-23T10:00:00.000Z","plannedDepartureAt":null}],"availabilityByClass":{"Economy Regular Intl":41},"hasAvailability":true,"displayCurrency":"USD","faresByClass":[{"seatClassName":"Economy Regular Intl","baseFareMinor":125000,"displayCurrency":"USD","displayAmountMinor":1250}],"coachTypes":[{"coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","coachTypeCode":"STD","coachId":"00000000-0000-4000-8000-000000000102","classes":[{"name":"Economy Regular Intl","baseFareMinor":125000,"displayCurrency":"USD","displayAmountMinor":1250,"available":41}]}]}]},"timestamp":"2026-07-21T10:45:04.619Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7d8f7d9da5bb882d91d5f869d4bd5f32e3de6669.json b/test-results/.playwright-artifacts-0/traces/resources/7d8f7d9da5bb882d91d5f869d4bd5f32e3de6669.json new file mode 100644 index 000000000..eec4bba74 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7d8f7d9da5bb882d91d5f869d4bd5f32e3de6669.json @@ -0,0 +1 @@ +{"bookingId":"07f85ff8-6213-4111-8e3b-0236282bef61","method":"WALLET","paymentMethodId":"b55a26b7-23d7-468e-a183-72025a675bb0","platform":"web"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7dc36ca4a5f12b76aae968f0448cf7fdea5e4ea4.json b/test-results/.playwright-artifacts-0/traces/resources/7dc36ca4a5f12b76aae968f0448cf7fdea5e4ea4.json new file mode 100644 index 000000000..263704cb2 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7dc36ca4a5f12b76aae968f0448cf7fdea5e4ea4.json @@ -0,0 +1 @@ +{"success":true,"data":{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","passengers":[{"passengerName":"Adult 1","dateOfBirth":"1990-06-15","category":"ADULT","ageYears":36,"seatClassId":"00000000-0000-4000-8000-000000000010","seatClassName":"Economy Regular","nationality":"ETHIOPIAN","baseFareMinor":75000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":75000,"isFree":false,"displayCurrency":"ETB","displayFareMinor":75000}],"subtotalMinor":75000,"discountMinor":0,"totalMinor":75000,"currency":"ETB","displayCurrency":"ETB","displayTotalMinor":75000},"timestamp":"2026-07-21T10:44:41.864Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7ebc5767a666019c7ba27bc99fe886749a34f682.json b/test-results/.playwright-artifacts-0/traces/resources/7ebc5767a666019c7ba27bc99fe886749a34f682.json new file mode 100644 index 000000000..93505bb07 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7ebc5767a666019c7ba27bc99fe886749a34f682.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:44:40.409Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/7edcd6bbbb7c4d204c023b52793420cdac88805d.json b/test-results/.playwright-artifacts-0/traces/resources/7edcd6bbbb7c4d204c023b52793420cdac88805d.json new file mode 100644 index 000000000..97746c852 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/7edcd6bbbb7c4d204c023b52793420cdac88805d.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:33.622Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/81785b9448f690eb77f703b85e5ac87abd37d5a5.json b/test-results/.playwright-artifacts-0/traces/resources/81785b9448f690eb77f703b85e5ac87abd37d5a5.json new file mode 100644 index 000000000..e26979ea0 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/81785b9448f690eb77f703b85e5ac87abd37d5a5.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"HELD","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"HELD","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"HELD","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"HELD","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:58.930Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/845aac238e6889a6c4949886a6e3d0f0a5175613.json b/test-results/.playwright-artifacts-0/traces/resources/845aac238e6889a6c4949886a6e3d0f0a5175613.json new file mode 100644 index 000000000..ac35333f2 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/845aac238e6889a6c4949886a6e3d0f0a5175613.json @@ -0,0 +1 @@ +{"success":true,"data":{"booking_id":"07f85ff8-6213-4111-8e3b-0236282bef61","currency":"ETB","amount":750},"timestamp":"2026-07-21T10:44:28.377Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/85e2757da59fde264bd7cece33e5487a2b17353d.json b/test-results/.playwright-artifacts-0/traces/resources/85e2757da59fde264bd7cece33e5487a2b17353d.json new file mode 100644 index 000000000..665262bc9 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/85e2757da59fde264bd7cece33e5487a2b17353d.json @@ -0,0 +1 @@ +{"passengers":[{"name":"Adult 1","dateOfBirth":"1990-06-15","gender":"Male","nationality":"ETHIOPIAN","nationalId":"","passportNumber":"","passportCountry":"","passportIssueDate":"","passportExpiryDate":"","passportIssuingAuthority":"","phone":"+251912345678","email":"","isPrimaryPassenger":true}],"deviceId":"c9baed13-9485-4460-bf25-882247791dd3"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/867118b973a8b50089fef12eaeac4e2164a88ac8.json b/test-results/.playwright-artifacts-0/traces/resources/867118b973a8b50089fef12eaeac4e2164a88ac8.json new file mode 100644 index 000000000..269534bd5 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/867118b973a8b50089fef12eaeac4e2164a88ac8.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:44:23.978Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/86f749b9b01db33963fbe8ef2213e9a3d2ab90ac.json b/test-results/.playwright-artifacts-0/traces/resources/86f749b9b01db33963fbe8ef2213e9a3d2ab90ac.json new file mode 100644 index 000000000..be82286d7 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/86f749b9b01db33963fbe8ef2213e9a3d2ab90ac.json @@ -0,0 +1 @@ +{"passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","holdId":"98316675-b88b-4557-b750-9be997efadba","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","seatClassId":"00000000-0000-4000-8000-000000000010","bookingType":"ONE_WAY","displayCurrency":"ETB","passengers":[{"seatId":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","passengerName":"Adult 1","dateOfBirth":"1990-06-15","idDocumentType":"NATIONAL_ID","idDocumentNumber":"","passportNumber":"","passportCountry":"","nationality":"ETHIOPIAN","seatFareMinor":75000}],"reviewedTotalMinor":75000} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/87d1f37ede52cd3704a0e46ebfa267a9f4a591a2.json b/test-results/.playwright-artifacts-0/traces/resources/87d1f37ede52cd3704a0e46ebfa267a9f4a591a2.json new file mode 100644 index 000000000..b1a37c0d7 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/87d1f37ede52cd3704a0e46ebfa267a9f4a591a2.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:27.271Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/88d4f22882ab8e3c7ff02ba3c0ddc9ba5d5f1e63.jpeg b/test-results/.playwright-artifacts-0/traces/resources/88d4f22882ab8e3c7ff02ba3c0ddc9ba5d5f1e63.jpeg new file mode 100644 index 000000000..81b8ddca3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/88d4f22882ab8e3c7ff02ba3c0ddc9ba5d5f1e63.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/89c26037565ae67df433084dd02f624cd29eb8dc.json b/test-results/.playwright-artifacts-0/traces/resources/89c26037565ae67df433084dd02f624cd29eb8dc.json new file mode 100644 index 000000000..00ec332ed --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/89c26037565ae67df433084dd02f624cd29eb8dc.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:39.559Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/8dfcfd9980e05753ff89328cd79a4cd97bb63093.json b/test-results/.playwright-artifacts-0/traces/resources/8dfcfd9980e05753ff89328cd79a4cd97bb63093.json new file mode 100644 index 000000000..e494c4538 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/8dfcfd9980e05753ff89328cd79a4cd97bb63093.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:46.548Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/8e676c0de18d14ee9fe60609c9d47229e353d6ce.json b/test-results/.playwright-artifacts-0/traces/resources/8e676c0de18d14ee9fe60609c9d47229e353d6ce.json new file mode 100644 index 000000000..29bcdb424 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/8e676c0de18d14ee9fe60609c9d47229e353d6ce.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":26438,"column":1,"methodName":"flushPassiveEffects","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/914a1d1dc8b0e1de6a618a2054710a0f619c8215.json b/test-results/.playwright-artifacts-0/traces/resources/914a1d1dc8b0e1de6a618a2054710a0f619c8215.json new file mode 100644 index 000000000..4b5757435 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/914a1d1dc8b0e1de6a618a2054710a0f619c8215.json @@ -0,0 +1 @@ +{"success":true,"data":{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","passengers":[{"passengerName":"Adult 1","dateOfBirth":"1990-06-15","category":"ADULT","ageYears":36,"seatClassId":"00000000-0000-4000-8000-000000000010","seatClassName":"Economy Regular","nationality":"ETHIOPIAN","baseFareMinor":75000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":75000,"isFree":false,"displayCurrency":"ETB","displayFareMinor":75000},{"passengerName":"Adult 2","dateOfBirth":"1990-06-15","category":"ADULT","ageYears":36,"seatClassId":"00000000-0000-4000-8000-000000000010","seatClassName":"Economy Regular","nationality":"ETHIOPIAN","baseFareMinor":75000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":75000,"isFree":false,"displayCurrency":"ETB","displayFareMinor":75000},{"passengerName":"Child 1","dateOfBirth":"2023-03-10","category":"CHILD","ageYears":3,"seatClassId":"00000000-0000-4000-8000-000000000010","seatClassName":"Economy Regular","nationality":"ETHIOPIAN","baseFareMinor":75000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":0,"isFree":true,"displayCurrency":"ETB","displayFareMinor":0},{"passengerName":"Child 2","dateOfBirth":"2023-03-10","category":"CHILD","ageYears":3,"seatClassId":"00000000-0000-4000-8000-000000000010","seatClassName":"Economy Regular","nationality":"ETHIOPIAN","baseFareMinor":75000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":0,"isFree":true,"displayCurrency":"ETB","displayFareMinor":0},{"passengerName":"Child 3","dateOfBirth":"2023-03-10","category":"CHILD","ageYears":3,"seatClassId":"00000000-0000-4000-8000-000000000010","seatClassName":"Economy Regular","nationality":"ETHIOPIAN","baseFareMinor":75000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":75000,"isFree":false,"displayCurrency":"ETB","displayFareMinor":75000}],"subtotalMinor":225000,"discountMinor":0,"totalMinor":225000,"currency":"ETB","displayCurrency":"ETB","displayTotalMinor":225000},"timestamp":"2026-07-21T10:44:58.962Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/94419c708b98f9c229c75ad44eda411e048ec518.json b/test-results/.playwright-artifacts-0/traces/resources/94419c708b98f9c229c75ad44eda411e048ec518.json new file mode 100644 index 000000000..a16e5bc29 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/94419c708b98f9c229c75ad44eda411e048ec518.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:44.036Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/946bc10d4d9899434ab26e15a48533eb8fd2fe77.json b/test-results/.playwright-artifacts-0/traces/resources/946bc10d4d9899434ab26e15a48533eb8fd2fe77.json new file mode 100644 index 000000000..c17eb00a1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/946bc10d4d9899434ab26e15a48533eb8fd2fe77.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"HELD","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:57.949Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/98784c9def2bb5caaca273ac67683e4d3b3dd507.json b/test-results/.playwright-artifacts-0/traces/resources/98784c9def2bb5caaca273ac67683e4d3b3dd507.json new file mode 100644 index 000000000..e4610ef0b --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/98784c9def2bb5caaca273ac67683e4d3b3dd507.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:45:08.198Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/991795ff468e2038754ce122499cae536f99423b.json b/test-results/.playwright-artifacts-0/traces/resources/991795ff468e2038754ce122499cae536f99423b.json new file mode 100644 index 000000000..3fad9c914 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/991795ff468e2038754ce122499cae536f99423b.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:51.370Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/994e35cd03c4b3ce7cb7b994ba9f3543dd64e900.json b/test-results/.playwright-artifacts-0/traces/resources/994e35cd03c4b3ce7cb7b994ba9f3543dd64e900.json new file mode 100644 index 000000000..c754af214 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/994e35cd03c4b3ce7cb7b994ba9f3543dd64e900.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":20689,"column":1,"methodName":"invokeGuardedCallback","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/99694df4d8192d4cf2b606377fb350eb.jsonl b/test-results/.playwright-artifacts-0/traces/resources/99694df4d8192d4cf2b606377fb350eb.jsonl new file mode 100644 index 000000000..e4ec9b0b1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/99694df4d8192d4cf2b606377fb350eb.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630671408.7969,"opcode":1,"data":"{\"action\":\"sync\",\"hash\":\"27234cfe8de65dd5\",\"errors\":[],\"warnings\":[],\"versionInfo\":{\"staleness\":\"stale-major\",\"expected\":\"16.2.10\",\"installed\":\"14.2.35\"}}"} +{"type":"send","time":1784630671409.01,"opcode":1,"data":"{\"event\":\"client-success\",\"clientId\":1784630671328}"} +{"type":"send","time":1784630678197.214,"opcode":1,"data":"{\"event\":\"ping\",\"tree\":[\"\",{\"children\":[\"booking\",{\"children\":[\"payment\",{\"children\":[\"__PAGE__\",{},\"/booking/payment\",\"refresh\"]}]},null,null]},null,null,true],\"appDirRoute\":true}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/99a8925f2abe911568d11ee45da71129849cc5ba.json b/test-results/.playwright-artifacts-0/traces/resources/99a8925f2abe911568d11ee45da71129849cc5ba.json new file mode 100644 index 000000000..a2d1b82cb --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/99a8925f2abe911568d11ee45da71129849cc5ba.json @@ -0,0 +1 @@ +{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","journeyDirection":"OUTBOUND","passengers":[{"passengerId":"temp-1784630666275-0","seatId":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b"}]} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/99f7f677caaf2988451bce5db3716b1f.jsonl b/test-results/.playwright-artifacts-0/traces/resources/99f7f677caaf2988451bce5db3716b1f.jsonl new file mode 100644 index 000000000..78c5265c0 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/99f7f677caaf2988451bce5db3716b1f.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630663176.2632,"opcode":1,"data":"0{\"sid\":\"LLaHhcoNV3EsuITPAAAB\",\"upgrades\":[],\"pingInterval\":25000,\"pingTimeout\":20000,\"maxPayload\":1000000}"} +{"type":"send","time":1784630663176.7332,"opcode":1,"data":"40/passenger-support-chat,{\"guestId\":\"89c0caac-e491-4559-9c6a-6cb202de8499\"}"} +{"type":"receive","time":1784630663178.1802,"opcode":1,"data":"40/passenger-support-chat,{\"sid\":\"rNC1t2sNJyVWn8xnAAAC\"}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/9a85bc638461fc2def4b74bb27cfd5ae5558fc5f.json b/test-results/.playwright-artifacts-0/traces/resources/9a85bc638461fc2def4b74bb27cfd5ae5558fc5f.json new file mode 100644 index 000000000..b2f80af1c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9a85bc638461fc2def4b74bb27cfd5ae5558fc5f.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"GOLD","pointsBalance":5500,"lifetimePoints":0},"wallet":{"balanceMinor":99500000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:45:12.239Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/9b24d025b50a9c3ff3db8b177a92ea96d434dcc8.json b/test-results/.playwright-artifacts-0/traces/resources/9b24d025b50a9c3ff3db8b177a92ea96d434dcc8.json new file mode 100644 index 000000000..3c8e7169f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9b24d025b50a9c3ff3db8b177a92ea96d434dcc8.json @@ -0,0 +1 @@ +{"originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","date":"2026-07-23","adultCount":1,"childCount":0,"nationality":"ETHIOPIAN","journeyType":"ONE_WAY"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/9b4e558ddb9eb2ac20b433985e603f35.jsonl b/test-results/.playwright-artifacts-0/traces/resources/9b4e558ddb9eb2ac20b433985e603f35.jsonl new file mode 100644 index 000000000..f8309e7a6 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9b4e558ddb9eb2ac20b433985e603f35.jsonl @@ -0,0 +1,2 @@ +{"type":"receive","time":1784630683426.377,"opcode":1,"data":"{\"action\":\"sync\",\"hash\":\"27234cfe8de65dd5\",\"errors\":[],\"warnings\":[],\"versionInfo\":{\"staleness\":\"stale-major\",\"expected\":\"16.2.10\",\"installed\":\"14.2.35\"}}"} +{"type":"send","time":1784630683426.579,"opcode":1,"data":"{\"event\":\"client-success\",\"clientId\":1784630683421}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/9d334c32e12c4c241a68f668f5697ada2bd42b60.json b/test-results/.playwright-artifacts-0/traces/resources/9d334c32e12c4c241a68f668f5697ada2bd42b60.json new file mode 100644 index 000000000..561e71e25 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9d334c32e12c4c241a68f668f5697ada2bd42b60.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:48.243Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/9d88218838d17f32ded8e054b97afa10ffbc5dcf.json b/test-results/.playwright-artifacts-0/traces/resources/9d88218838d17f32ded8e054b97afa10ffbc5dcf.json new file mode 100644 index 000000000..2e61d0098 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9d88218838d17f32ded8e054b97afa10ffbc5dcf.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":25419,"column":1,"methodName":"renderRootSync","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/9db6c7c9e6443d0eda08b5b40368d4d8d556e378.json b/test-results/.playwright-artifacts-0/traces/resources/9db6c7c9e6443d0eda08b5b40368d4d8d556e378.json new file mode 100644 index 000000000..c564b459c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9db6c7c9e6443d0eda08b5b40368d4d8d556e378.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"HELD","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:26.418Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/9e26bfabb0f67ea425ca915ce7e32103011aa751.html b/test-results/.playwright-artifacts-0/traces/resources/9e26bfabb0f67ea425ca915ce7e32103011aa751.html new file mode 100644 index 000000000..65b074ea1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9e26bfabb0f67ea425ca915ce7e32103011aa751.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway

Searching for trains...

Finding the best options for your journey

\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/9ecedcd4d98ef8e7e114f86e20392c62a951143c.json b/test-results/.playwright-artifacts-0/traces/resources/9ecedcd4d98ef8e7e114f86e20392c62a951143c.json new file mode 100644 index 000000000..fb24b4866 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9ecedcd4d98ef8e7e114f86e20392c62a951143c.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:42.697Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/9eec75fe5676dad186535c1643ec3d66e30b5ce8.json b/test-results/.playwright-artifacts-0/traces/resources/9eec75fe5676dad186535c1643ec3d66e30b5ce8.json new file mode 100644 index 000000000..c6a5eb8e3 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9eec75fe5676dad186535c1643ec3d66e30b5ce8.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":6981,"column":1,"methodName":"throwOnHydrationMismatch","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/9f2ae84e190a082e6e2db9e17163ed71820a0167.json b/test-results/.playwright-artifacts-0/traces/resources/9f2ae84e190a082e6e2db9e17163ed71820a0167.json new file mode 100644 index 000000000..9a6358e9c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9f2ae84e190a082e6e2db9e17163ed71820a0167.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"0ed21f92-0885-4933-963e-9a64f2efbfc5","bookingRef":"NAIOLE","status":"CONFIRMED","totalMinor":1250,"currency":"USD","adultCount":1,"childCount":0,"displayCurrency":"USD","displayTotalMinor":1250,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:45:08.224Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":1250,"verifaydaVerified":false,"seat":{"id":"d25631fa-6857-446d-ad23-094a27deda66","number":"2D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"payment":{"method":"WALLET","status":"SUCCEEDED","amountMinor":125000,"currency":"ETB"},"tickets":[{"id":"ef07d74f-6ed6-493e-b8bd-f97578e2faba","passengerName":"Adult 1","leg":1,"qrPayload":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPQAAAD0CAYAAACsLwv+AAAAAklEQVR4AewaftIAAA37SURBVO3BQW4Ex7IgQfcC739lH60+YpVAoZuUXk6Y2T9Ya13hYa11jYe11jUe1lrXeFhrXeNhrXWNh7XWNR7WWtd4WGtd42GtdY2HtdY1HtZa13hYa13jYa11jYe11jUe1lrX+OFDKn+pYlI5qZhUpopJZao4UTmpOFF5o+JEZao4UXmjYlKZKiaVqWJS+aaKSWWqeEPlL1V84mGtdY2HtdY1HtZa1/jhyyq+SeWNipOKSeUTFZPKpDJVTBXfVDGpTBUnFZPKScUnKiaVNyreUJkq3qj4JpVvelhrXeNhrXWNh7XWNX74ZSpvVHxC5aTipGJSOak4qZhUpopJ5Y2Kb1KZKk5UTiomlZOKE5VJZaqYKiaVb1J5o+I3Pay1rvGw1rrGw1rrGj/8j6s4UTmp+ITKicpvUjmpeKNiUvmEylRxovJGxaRyUjGpTBX/yx7WWtd4WGtd42GtdY0f/sepvKFyUjFVnKhMFScqJxWTyidU3lCZKt5QmSomlaliqphU3qiYVE4qbvKw1rrGw1rrGg9rrWv88MsqflPFpPIJlZOKb1I5qThRmSreUDlR+U0qU8UnVP5SxX/Jw1rrGg9rrWs8rLWu8cOXqfwllaliUpkqJpWpYlL5hMpUMalMFZPKVPGGylRxUjGpTBWTylQxqUwVk8obFZPKVDGpnKhMFScq/2UPa61rPKy1rvGw1rqG/YP1f1SmihOVqeJE5Y2KSeWk4g2VqWJSeaPiROWkYlL5RMX/Tx7WWtd4WGtd42GtdY0fPqQyVZyo/KaKE5WTikllqpgqTlS+qWJSmVT+UsWJylTxRsWkMlW8oTJVTCpTxYnKVDGpvFHxiYe11jUe1lrXeFhrXcP+wQdUpopJ5Y2KE5W/VDGpnFScqEwVk8pJxaQyVUwqb1S8oXJSMam8UXGi8kbFGypTxYnKVPGXHtZa13hYa13jYa11jR8+VPFGxRsqJxWTyknFGypTxYnKVHGi8obKGxUnKpPKScVvqphUfpPKJ1SmihOVqeKbHtZa13hYa13jYa11DfsHf0hlqphUpopJ5Y2KSeWNihOVqeJE5RMVn1D5N1VMKlPFN6lMFZPKVDGp/KaKb3pYa13jYa11jYe11jXsH3xA5aTiEypTxYnKGxWTyknFpPJGxYnKN1WcqHyi4kRlqjhROak4UTmpeEPljYoTlanimx7WWtd4WGtd42GtdY0fPlQxqZyoTBWTylTxiYoTlTdUpooTlROVk4o3VN6oOFE5UZkqTlTeqJhUpoqp4kRlqjipOFE5UZkqftPDWusaD2utazysta7xw4dUpopvUjmpmComlanim1SmihOVk4pJZaqYVKaKE5WpYlI5qfgvUZkqJpWp4g2VqeKNikllqvimh7XWNR7WWtd4WGtdw/7BxVQ+UTGpnFS8ofKJikllqjhReaPiDZWpYlJ5o2JSmSomlTcq3lA5qThRmSo+8bDWusbDWusaD2uta/zwZSpTxaTyiYpJ5aTi36TyiYoTlaliUjmpOFGZVKaKk4pJZao4UTmp+EsqU8WJyl96WGtd42GtdY2HtdY1fviPqzip+ITKJyomlaliUpkqPlFxUjGp/CWVE5Wp4g2VqWKqOFE5UZkqJpWp4qRiUvmmh7XWNR7WWtd4WGtd44cvqzipmFSmiknlmyp+U8Wk8obKGxWTyknFpHJS8YbKGxWTyhsVJypTxYnKb1KZKr7pYa11jYe11jUe1lrXsH/wAZU3Kk5Upoo3VD5RcaLyRsWk8kbFicpJxaQyVUwqJxWTylTxCZVPVJyofKJiUjmp+EsPa61rPKy1rvGw1rrGD19W8YmKSeU3VUwqn6iYVE4qJpVJZaqYKiaVk4pJ5RMVb6i8UTGpTBWTyhsVJyonFZPKicpJxSce1lrXeFhrXeNhrXWNH/6YyhsVk8obFb+p4qTiN6mcqEwVn1D5RMWkMlVMKlPFpPIJlaliqjhRmSr+TQ9rrWs8rLWu8bDWusYPH6qYVE4q3lA5qZhUPlExqUwVn1A5qThR+YTKGxWTylQxqXxC5UTlpGJSmSpOVN6oOFH5Sw9rrWs8rLWu8bDWusYPv6ziDZWp4o2KSWWqmFSmiqliUpkqTlSmijdU3qiYVKaKSeWNijcqJpWTijdUJpWp4o2KSWWqOFGZKiaV3/Sw1rrGw1rrGg9rrWvYP/iAylQxqUwVk8pfqphUpooTlZOKE5X/sopJZaqYVKaKSeUTFZPKGxWTyr+p4jc9rLWu8bDWusbDWusa9g/+kMpJxRsqU8WJylRxovJvqjhRmSreUDmpmFROKt5Q+UTFicobFW+ovFHxmx7WWtd4WGtd42GtdY0fPqQyVUwqU8WkcqIyVZyoTBUnKlPFVDGpTBWTyknFpDJVTCqfUJkqTiomlani31QxqUwV36QyVXyTylTxiYe11jUe1lrXeFhrXeOHX1YxqbxR8UbFpPKGyhsqU8UbFZPKScWkclLxiYoTlZOKSWWqOFH5popJ5aTif8nDWusaD2utazysta7xw4cqvknlEyonFd+kMqm8UfFNKt+kMlX8JpUTlU+onKh8U8Wk8pse1lrXeFhrXeNhrXWNHz6kMlWcVJyoTBUnKlPFpPKGylQxqZxUnKi8UfGJihOVk4qTijcqJpWpYlKZKiaVNyreUJkqJpUTlZOKb3pYa13jYa11jYe11jXsH3xAZaqYVE4qTlROKiaVqeJEZaqYVE4qJpWp4kTljYo3VE4qJpW/VHGiMlVMKv+mihOVqWJSmSo+8bDWusbDWusaD2uta/zwyyomlROVqeJE5TdVnKhMFZPKVHFS8ZsqJpWp4kTlExWTyknFpDJV/CWVE5U3Kr7pYa11jYe11jUe1lrXsH/wi1ROKk5UTiomlTcqJpU3Kr5JZao4UZkq3lB5o2JSeaPiL6lMFScqJxUnKp+o+MTDWusaD2utazysta7xw5epnFRMKlPFVDGpTCpTxaRyovJNKlPFpHJSMalMFScqU8WkMlVMKp+oOFF5o2JSOamYKk5UpooTlZOKf9PDWusaD2utazysta7xw5dVTConFScqJxWTyknFN6m8UfFGxRsVk8obFZPKScWkMlVMFZPKVDGpfJPKVDGpTBVTxaRyojJVTCpTxSce1lrXeFhrXeNhrXWNH35ZxaQyVUwqU8WkMqlMFZPKpDJVvKEyVZyoTBWTyl+qeKPiRGWqmFROKt6omFQmlZOKSeUmD2utazysta7xsNa6xg//MpUTlTdUpopPqEwVk8pJxScqTlQmlTdUpopJZap4o+INlb9UMalMKm+onKhMFd/0sNa6xsNa6xoPa61r/PBlKt9U8U0qJxUnKt9UMam8UfGGylQxqfwllZOKSeWk4kTlpOINlaniRGVSmSo+8bDWusbDWusaD2uta9g/+IDKVDGpnFRMKm9UnKhMFZPKScWJylQxqZxUvKEyVUwqU8U3qXyi4g2VqeINlU9UnKhMFScqU8U3Pay1rvGw1rrGw1rrGvYP/kNUpopJ5aTiDZVPVJyoTBW/SeWk4kTljYo3VKaKSWWqOFF5o+KbVKaKN1Smik88rLWu8bDWusbDWusaP3xIZar4JpV/U8WJylQxVUwqU8WJyhsVJypTxSdUpopJZaqYVKaKSWWqmCpOVL5J5URlqphUftPDWusaD2utazysta7xwx9TmSqmik+onFScVEwqU8VU8ZcqJpU3Kt6omFSmiknlRGWqmFROVD6hMlVMKm9U/Jc8rLWu8bDWusbDWusaP3yZylRxovJGxaQyVZyoTBWfUDmpOFF5Q+VEZaqYVKaKE5WpYlI5qZhUJpWp4kTljYoTlZOKE5VPVHzTw1rrGg9rrWs8rLWu8cOHKiaVSWWq+ITKVPGbKiaVqWJSmVSmik+ovKHyiYqTihOVqWJS+aaKSWWq+ITKVDGpTBWTym96WGtd42GtdY2HtdY1fviyihOVqeJE5UTlpGKqeENlqphUpopPqEwVv0nlRGWq+E0qU8VJxRsqb6icqPyXPKy1rvGw1rrGw1rrGj/8sYo3Kk5UPqHyiYoTlanipGJSeaPiDZWp4kTlpOITFZPKVDGpTBUnFZPKVPGGylQxqUwVv+lhrXWNh7XWNR7WWtf44UMqf6niDZWp4qRiUnlD5UTljYoTlROVqeINlU9UfKLipGJSOVF5Q2WqeKPiLz2sta7xsNa6xsNa6xo/fFnFN6n8l6i8UTGpTBWTyqQyVbxR8YmKb1I5UZkqTlROKk5UTireUJkqJpWTik88rLWu8bDWusbDWusaP/wylTcqfpPKVHFSMalMFZPKv0nlm1R+U8WkMqlMFVPFicpUcaLymyomlW96WGtd42GtdY2HtdY1frhcxYnKVDGpnKhMFW+onFRMKicVb6icVEwqn6iYVE4q3lA5UTmp+CaVqeI3Pay1rvGw1rrGw1rrGj/8j6uYVCaVk4pJ5aTimyomlUnlDZVvUjmpmFSmim9SOamYVKaKE5U3Kk4qJpXf9LDWusbDWusaD2uta/zwyyr+UsWJyknFpPKGylQxVUwq31QxqXxTxUnFiconKiaVT6hMFW+oTBUnFZPKNz2sta7xsNa6xsNa6xr2Dz6g8pcqJpU3Kk5UpooTlaliUpkqfpPKGxWTyhsVk8pUMalMFZPKb6qYVE4qJpWp4kRlqvhND2utazysta7xsNa6hv2DtdYVHtZa13hYa13jYa11jYe11jUe1lrXeFhrXeNhrXWNh7XWNR7WWtd4WGtd42GtdY2HtdY1HtZa13hYa13jYa11jf8Hm3C1aWh9s7wAAAAASUVORK5CYII=","barcodePayload":"NAIOLED25631FA","status":"ACTIVE"}]},"timestamp":"2026-07-21T10:45:11.477Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/9fd708fb177417cc02a35cb54124289425c08a75.json b/test-results/.playwright-artifacts-0/traces/resources/9fd708fb177417cc02a35cb54124289425c08a75.json new file mode 100644 index 000000000..ec02af60a --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/9fd708fb177417cc02a35cb54124289425c08a75.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:45.569Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/a04820dc22a0795826e1b0e5b5638813c1f7cceb.json b/test-results/.playwright-artifacts-0/traces/resources/a04820dc22a0795826e1b0e5b5638813c1f7cceb.json new file mode 100644 index 000000000..d4d48e7ed --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/a04820dc22a0795826e1b0e5b5638813c1f7cceb.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":26518,"column":1,"methodName":"flushPassiveEffectsImpl","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/a04963cb88a925c66a2a466bf7ca0552e81f7c0d.json b/test-results/.playwright-artifacts-0/traces/resources/a04963cb88a925c66a2a466bf7ca0552e81f7c0d.json new file mode 100644 index 000000000..847b80ee9 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/a04963cb88a925c66a2a466bf7ca0552e81f7c0d.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":20565,"column":1,"methodName":"HTMLUnknownElement.callCallback","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/a072c05619b7cf3cbedc053f6c992794b91fee45.htc b/test-results/.playwright-artifacts-0/traces/resources/a072c05619b7cf3cbedc053f6c992794b91fee45.htc new file mode 100644 index 000000000..929796465 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/a072c05619b7cf3cbedc053f6c992794b91fee45.htc @@ -0,0 +1 @@ +0:["development",[["children","booking","children","confirmation",["confirmation",{"children":["__PAGE__",{}]}],null,null]]] diff --git a/test-results/.playwright-artifacts-0/traces/resources/a4041655d9c311f5be784a496b2be08d838e2d5c.htc b/test-results/.playwright-artifacts-0/traces/resources/a4041655d9c311f5be784a496b2be08d838e2d5c.htc new file mode 100644 index 000000000..428ecac32 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/a4041655d9c311f5be784a496b2be08d838e2d5c.htc @@ -0,0 +1,11 @@ +2:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/client-page.js",["app-pages-internals","static/chunks/app-pages-internals.js"],"ClientPageRoot"] +3:I["(app-pages-browser)/./src/app/booking/review/page.tsx",["app/booking/review/page","static/chunks/app/booking/review/page.js"],"default",1] +4:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js",["app-pages-internals","static/chunks/app-pages-internals.js"],""] +5:I["(app-pages-browser)/../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/render-from-template-context.js",["app-pages-internals","static/chunks/app-pages-internals.js"],""] +1:D{"name":"","env":"Server"} +6:D{"name":"","env":"Server"} +7:D{"name":"r6","env":"Server"} +7:null +0:["development",[["children","booking","children","review",["review",{"children":["__PAGE__",{}]}],["review",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","booking","children","review","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null],["$L6","$7"]]]] +6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1, viewport-fit=cover"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","3",{"name":"description","content":"Book train tickets on the Ethio-Djibouti Railway. Travel between Ethiopia and Djibouti with easy online booking, seat selection, and multiple payment options."}],["$","meta","4",{"name":"author","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","5",{"name":"creator","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","6",{"name":"publisher","content":"EDR – Ethio-Djibouti Railway"}],["$","meta","7",{"name":"robots","content":"index, follow"}],["$","meta","8",{"name":"googlebot","content":"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"}],["$","meta","9",{"property":"og:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","10",{"property":"og:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["$","meta","11",{"property":"og:url","content":"https://passenger.edrsc.com"}],["$","meta","12",{"property":"og:site_name","content":"EDR Passenger Portal"}],["$","meta","13",{"property":"og:locale","content":"en_US"}],["$","meta","14",{"property":"og:image","content":"http://localhost:5174/edr-banner.jpg"}],["$","meta","15",{"property":"og:image:width","content":"1200"}],["$","meta","16",{"property":"og:image:height","content":"630"}],["$","meta","17",{"property":"og:image:alt","content":"EDR Ethio-Djibouti Railway – Book your train journey"}],["$","meta","18",{"property":"og:type","content":"website"}],["$","meta","19",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","20",{"name":"twitter:title","content":"EDR Passenger Portal – Book Train Tickets Online"}],["$","meta","21",{"name":"twitter:description","content":"Book train tickets on the Ethio-Djibouti Railway. Comfortable seats, flexible payment options, and easy online booking."}],["$","meta","22",{"name":"twitter:image","content":"http://localhost:5174/edr-banner.jpg"}],["$","link","23",{"rel":"shortcut icon","href":"/edr-logo.png"}],["$","link","24",{"rel":"icon","href":"/edr-logo.png"}],["$","link","25",{"rel":"apple-touch-icon","href":"/edr-logo.png"}]] +1:null diff --git a/test-results/.playwright-artifacts-0/traces/resources/a456a1372e23925ef7e92e89a1965a7a10a8647e.json b/test-results/.playwright-artifacts-0/traces/resources/a456a1372e23925ef7e92e89a1965a7a10a8647e.json new file mode 100644 index 000000000..3f89ab13e --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/a456a1372e23925ef7e92e89a1965a7a10a8647e.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:51.889Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/a5a2bb1a5b49246f969011b22df0d171d298ab95.htc b/test-results/.playwright-artifacts-0/traces/resources/a5a2bb1a5b49246f969011b22df0d171d298ab95.htc new file mode 100644 index 000000000..1079adf59 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/a5a2bb1a5b49246f969011b22df0d171d298ab95.htc @@ -0,0 +1 @@ +0:["development",[["children","booking","children","auth-check",["auth-check",{"children":["__PAGE__",{}]}],null,null]]] diff --git a/test-results/.playwright-artifacts-0/traces/resources/a6cf2983b669d830c489756e0820729013ac5c20.json b/test-results/.playwright-artifacts-0/traces/resources/a6cf2983b669d830c489756e0820729013ac5c20.json new file mode 100644 index 000000000..ca328b47f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/a6cf2983b669d830c489756e0820729013ac5c20.json @@ -0,0 +1 @@ +{"success":true,"data":{"holdId":"828660f9-6bf3-4170-a28e-e6d8e7b1bead","expiresAt":"2026-07-21T10:49:26.283Z","createdAt":"2026-07-21T10:44:26.295Z","ttlSeconds":299,"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","fullRouteOrigin":"Alpha","fullRouteDestination":"Charlie"},"leg":{"originStationId":"00000000-0000-4000-8000-000000000020","originStationName":"Alpha","originStationCode":"AAA","originSequence":1,"destinationStationId":"00000000-0000-4000-8000-000000000022","destinationStationName":"Charlie","destinationStationCode":"CCC","destinationSequence":3},"passengers":[{"passengerId":"temp-1784630666275-0","seat":{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","label":"1A","seatNumber":"1A","coach":"UI-C1","seatClass":"Standard","row":1,"col":"A"}}]},"timestamp":"2026-07-21T10:44:26.299Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/a7e16009c209c233fc6fb796019f34a7c1bcd9f3.json b/test-results/.playwright-artifacts-0/traces/resources/a7e16009c209c233fc6fb796019f34a7c1bcd9f3.json new file mode 100644 index 000000000..cdf2ba7f1 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/a7e16009c209c233fc6fb796019f34a7c1bcd9f3.json @@ -0,0 +1 @@ +{"success":true,"data":{"journeyType":"ONE_WAY","outbound":[{"type":"DIRECT","scheduleId":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","sequence":1},"destination":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","sequence":3},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stops":[{"stationId":"00000000-0000-4000-8000-000000000020","stationName":"Alpha","sequence":1,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T06:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000021","stationName":"Bravo","sequence":2,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T08:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000022","stationName":"Charlie","sequence":3,"plannedArrivalAt":"2026-07-23T10:00:00.000Z","plannedDepartureAt":null}],"availabilityByClass":{"Economy Regular":45},"hasAvailability":true,"displayCurrency":"ETB","faresByClass":[{"seatClassName":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000}],"coachTypes":[{"coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","coachTypeCode":"STD","coachId":"00000000-0000-4000-8000-000000000102","classes":[{"name":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000,"available":45}]}]}]},"timestamp":"2026-07-21T10:44:43.391Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/a81fa784d430b48a51c83940d83decea86d9f38d.json b/test-results/.playwright-artifacts-0/traces/resources/a81fa784d430b48a51c83940d83decea86d9f38d.json new file mode 100644 index 000000000..e8dcd6e2b --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/a81fa784d430b48a51c83940d83decea86d9f38d.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","status":"PENDING_PAYMENT","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:47.464Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","number":"1D","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"tickets":[]},"timestamp":"2026-07-21T10:44:50.851Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/abbcc528557fd009fd80e4d409a4aace485bf772.json b/test-results/.playwright-artifacts-0/traces/resources/abbcc528557fd009fd80e4d409a4aace485bf772.json new file mode 100644 index 000000000..3e75247ec --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/abbcc528557fd009fd80e4d409a4aace485bf772.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"2133d122-fa06-4e53-a213-7afb4a986a8b","bookingRef":"MFXCQN","status":"CONFIRMED","totalMinor":75000,"currency":"ETB","adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:35.487Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","number":"1B","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"payment":{"method":"WALLET","status":"SUCCEEDED","amountMinor":75000,"currency":"ETB"},"tickets":[{"id":"dde3fa96-bd6a-4678-96d4-5d4dbee71444","passengerName":"Adult 1","leg":1,"qrPayload":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPQAAAD0CAYAAACsLwv+AAAAAklEQVR4AewaftIAAA3eSURBVO3BQY7cWhLAQFLo+1+Z42WuHiCoqu2vyQj7g7XWK1ystV7jYq31Ghdrrde4WGu9xsVa6zUu1lqvcbHWeo2LtdZrXKy1XuNirfUaF2ut17hYa73GxVrrNS7WWq9xsdZ6jR8eUvlNFZPKVHGickfFicpJxYnKHRUnKlPFicodFZPKVDGpTBWTyidVTCpTxR0qv6niiYu11mtcrLVe42Kt9Ro/fFjFJ6mcVEwqU8VU8UkVk8qJyknFHSqfVHGi8k0VJypTxR0qU8UdFZ+k8kkXa63XuFhrvcbFWus1fvgylTsq7lCZKu5QOamYVKaKqeIJlZOKqeI3VZyoTBXfpHJSMal8ksodFd90sdZ6jYu11mtcrLVe44f/uIoTlanipGJSuUNlqniiYlKZKiaVk4qp4g6VqeKbVJ5QmSomlaniv+xirfUaF2ut17hYa73GDy+jcqLyRMVJxUnFJ6ncoXJHxRMqJxWTyhMVk8pJxZtcrLVe42Kt9RoXa63X+OHLKr5JZar4pIo7VKaKE5VPqrhDZaq4Q+WOipOKSeVfVvEvuVhrvcbFWus1LtZar/HDh6n8S1SmikllqphUpopJZaqYVKaKk4pJZaqYVE5Upoo7VKaKSWWqmFROVKaKk4pJ5QmVqeJE5V92sdZ6jYu11mtcrLVe44eHKv6mik9SmSp+k8pUMancUfFExUnFScWkMlVMKlPFpHKicqJyR8V/ycVa6zUu1lqvcbHWeo0fHlKZKiaVqeIOlZOKSWWquKNiUjmpOKmYVL5J5QmVJyomlTsqJpWTihOVT1KZKk5UpopJZap44mKt9RoXa63XuFhrvcYPH6YyVUwqU8VJxSepTBV3VEwqJxVTxaRyR8UTKlPFicpUcaLyhMpJxYnKVHGickfFpDJVTBW/6WKt9RoXa63XuFhrvYb9wRep3FExqUwVk8pJxR0qJxUnKlPFicpUMak8UXGHyn9JxaTySRUnKicVk8pJxRMXa63XuFhrvcbFWus1fvjLKk4qnlCZKk4qJpUTlaniROVEZaqYVE4qTlSmiqniROWOikllqnhC5aTiROWJihOV33Sx1nqNi7XWa1ystV7D/uCLVE4qJpWTihOVOyomlanim1S+qeJE5YmKE5Wp4kTlpOJE5aTiDpUnKiaVqeKTLtZar3Gx1nqNi7XWa9gffJDKScUTKlPFpDJV3KFyUnGiclLxSSpTxaQyVfwmlZOKE5WTihOVqWJSOam4Q2Wq+E0Xa63XuFhrvcbFWus1fnhIZaqYVCaVqeJEZao4qZhUTipOKp6oOFGZKiaVT1KZKk5UpopJZao4qZhUnlD5TSonFZPKScUnXay1XuNirfUaF2ut17A/eEBlqphU7qi4Q2WqOFH5poo7VE4qJpUnKk5UpooTlaniCZWp4pNUpooTlaniROWk4psu1lqvcbHWeo2LtdZr2B/8IpWpYlL5pooTlaliUnmiYlK5o2JS+aSKSWWquEPlpGJSOamYVKaKSWWqmFSmiknlpGJSuaPiky7WWq9xsdZ6jYu11mvYHzygclIxqUwV36TySRWTyknFpDJVnKjcUXGickfFpDJVfJPKScWkclIxqUwVJypTxYnKVPFNF2ut17hYa73GxVrrNewP/iKVqWJSuaPiDpVPqphUTiomlTsqJpWTiknlpOIOlTsqJpUnKiaVqWJSuaNiUpkqJpWTik+6WGu9xsVa6zUu1lqv8cNfVjGpTBWTyh0qU8UTFZPKpHJScUfFHRWTyqQyVUwqJypTxVRxh8pUcaLySRWTyh0Vd1R808Va6zUu1lqvcbHWeg37gwdUpopJZao4UbmjYlI5qThRmSomlX9JxaRyUjGpTBWTylQxqUwVd6g8UXGickfFpHJSMak8UfHExVrrNS7WWq9xsdZ6jR8eqrhDZao4qZhUTipOVL6pYlKZKiaVk4onKk4qJpWpYlKZKiaVqeKk4pNUpopJZaq4o+KkYlI5qfiki7XWa1ystV7jYq31Gj98mMpJxaQyVUwqU8UTFZPKVDGpTBWTyknFEyp3VEwqJxV3VHySylQxqZxUTBWTyh0qU8WkMlVMKn/TxVrrNS7WWq9xsdZ6jR8+rOKTKiaVqeJEZao4UZkqJpUTlanipGJSOal4ouKkYlKZKu5QmSqmipOKT6o4qfikiknlmy7WWq9xsdZ6jYu11mvYHzygMlVMKr+pYlKZKiaVT6o4UZkq7lD5popJZaqYVKaKSeWJiknljopJ5W+q+KaLtdZrXKy1XuNirfUa9gcPqHxSxR0qn1QxqTxR8YTKVDGpTBV3qNxR8TepTBVPqEwVd6hMFScqJxVPXKy1XuNirfUaF2ut1/jhoYpJZao4UTlRmSpOKu5QOamYVKaKSeVEZar4JpWp4pNUpooTlTsqpopJ5ZtUpooTlaniN12stV7jYq31Ghdrrdf44cMqPqniCZWTik+qmFROVE4qnqi4o2JSOamYVJ6ouKNiUpkqTlROKv5LLtZar3Gx1nqNi7XWa/zwkMpUcaJyovKEyknFHSonKv8SlW9S+aSKE5WTik9SeaLijopPulhrvcbFWus1LtZar/HDQxWTyidVTConFZPKpPJExaQyVTyhMqmcVEwqU8UdKicVd6h8UsUnVTyhMqlMFScqU8UTF2ut17hYa73GxVrrNX74ZRWTylQxqUwVJypTxYnKExWTyidV3FExqZxU3KHyL1GZKiaV31QxqUwVk8onXay1XuNirfUaF2ut1/jhIZWp4kTlRGWq+KaKO1SeqPgklZOKE5WpYlKZKk5UTiqeUJkqPqnikypOKj7pYq31Ghdrrde4WGu9xg8fpnJScaIyqUwVd6hMFZPKHRV3qNyhMlVMKicVk8pU8TepTBV3VJyonFRMKpPKHRUnKndUPHGx1nqNi7XWa1ystV7D/uABlaliUpkqJpWp4m9SmSomlW+qeELlkyqeUDmpmFTuqDhRmSruUDmpOFGZKiaVqeKJi7XWa1ystV7jYq31Gj88VDGpTBUnFZPKScWkclLxSRUnKlPFEypTxaTySRWTyknFpHJSMal8U8UdKicVk8oTFZ90sdZ6jYu11mtcrLVe44eHVKaKE5Wp4qTijooTlZOKE5WTiidUpoqTihOVqWJSmVROKiaVqeKJiknlm1TuUJkqTlR+08Va6zUu1lqvcbHWeo0fHqr4pIpJZao4UZkqpopJ5UTlpGJSmSpOVJ5Q+aSKSeWbKiaVk4pJ5Y6KqWJSuUPlDpWp4pMu1lqvcbHWeo2LtdZr2B88oDJVnKjcUfGbVKaKT1K5o+JE5YmKSWWqmFSmim9SuaNiUpkqvknliYonLtZar3Gx1nqNi7XWa/zwj1OZKk5UpooTlROVk4pJ5YmKOyomlZOKb1K5o+KkYlI5UTlRmSpOVO6omFROKj7pYq31Ghdrrde4WGu9xg9fpjJVnKhMFZPKVHGiclIxqUwVk8qkMlXcoXKiMlVMKicVJypPqEwVk8qJyh0VJypTxR0qU8UnVXzTxVrrNS7WWq9xsdZ6DfuDB1ROKk5U7qiYVD6p4l+mckfFpPJExaQyVdyhckfFpDJVTConFScqd1ScqEwVn3Sx1nqNi7XWa1ystV7jh4cq7lC5o+KkYlI5qZhUTlSmiknliYonKu6omFSmikllUpkqJpWp4pNUpoqTijtUpooTlX/JxVrrNS7WWq9xsdZ6jR8eUjmpeEJlqphUpopJZVKZKiaVqeKJikllUnlC5aRiUpkqJpWTiknlDpWTihOVSeWkYlL5JpW/6WKt9RoXa63XuFhrvcYPD1VMKpPKVPGbKiaVSWWqmFROKiaVJypOVKaK36RyUjGpTBUnKk9U3FExqZyonFRMKr/pYq31Ghdrrde4WGu9xg8fVnGiMlWcqJxUPFFxR8Wk8kkqU8VUMak8oTJVTCpTxaRyh8onVUwqd6icqNyh8jddrLVe42Kt9RoXa63XsD/4D1O5o+IOlaliUpkq7lCZKk5UTiruUJkqJpWTiv8ylaniDpWp4kTlpOKJi7XWa1ystV7jYq31Gj88pPKbKj5JZap4QmWquEPlpGJSOVGZKp6omFSmikllqphUTipOVO6ouENlqjhRmSpOKj7pYq31Ghdrrde4WGu9xg8fVvFJKicVJyqTylQxqUwVk8pUcaJyUjGpTBWTyh0Vd6jcUfFExaRyR8WJyhMV/yUXa63XuFhrvcbFWus1fvgylTsqnlCZKiaVO1SmihOVqeJE5URlqphUJpUnKiaVSeUJlaniRGWqOFF5QuWbKr7pYq31Ghdrrde4WGu9xg//ZypOKiaVOypOVO6omFSmiknlpGJSuaPiROWk4qRiUnmi4qTiCZWp4g6VqeKJi7XWa1ystV7jYq31Gj/8x6mcqEwVJypTxYnKExUnKlPFpHJSMamcqJyo3FExqTyhcofKVDGp3FExVdyh8k0Xa63XuFhrvcbFWus1fviyim+qOFGZVE4qJpWpYqqYVKaKSWVSmSqmikllqnii4gmVqWJSOamYVE4qPqniROUJlanimy7WWq9xsdZ6jYu11mv88GEqv0nlpGJSmSqeUJkqJpWpYlK5o+IOlROVOyqmiknliYpJZVKZKiaVb1KZKiaVO1Smiicu1lqvcbHWeo2LtdZr2B+stV7hYq31Ghdrrde4WGu9xsVa6zUu1lqvcbHWeo2LtdZrXKy1XuNirfUaF2ut17hYa73GxVrrNS7WWq9xsdZ6jYu11mv8D5PjvyBRH9cvAAAAAElFTkSuQmCC","barcodePayload":"MFXCQNCB09FD79","status":"ACTIVE"}]},"timestamp":"2026-07-21T10:44:38.747Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ac59380fbb11da5f00ffc3b17963e7caf649045a.json b/test-results/.playwright-artifacts-0/traces/resources/ac59380fbb11da5f00ffc3b17963e7caf649045a.json new file mode 100644 index 000000000..bc354bd96 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ac59380fbb11da5f00ffc3b17963e7caf649045a.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"BRONZE","pointsBalance":500,"lifetimePoints":0},"wallet":{"balanceMinor":100000000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:23.091Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/accf3fae7c8f23f4e8f8b00c03733463cf1a225e.json b/test-results/.playwright-artifacts-0/traces/resources/accf3fae7c8f23f4e8f8b00c03733463cf1a225e.json new file mode 100644 index 000000000..f971ebb61 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/accf3fae7c8f23f4e8f8b00c03733463cf1a225e.json @@ -0,0 +1 @@ +{"success":true,"data":{"booking_id":"2133d122-fa06-4e53-a213-7afb4a986a8b","currency":"ETB","amount":750},"timestamp":"2026-07-21T10:44:36.550Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/b03181e3b3fdba4a4bc0f0855fdd6f06d02dd628.json b/test-results/.playwright-artifacts-0/traces/resources/b03181e3b3fdba4a4bc0f0855fdd6f06d02dd628.json new file mode 100644 index 000000000..19c4ddc1e --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/b03181e3b3fdba4a4bc0f0855fdd6f06d02dd628.json @@ -0,0 +1 @@ +{"success":true,"data":{"intentId":"d9c8632a-915b-48e1-86c8-24cc812ef526","status":"SUCCEEDED"},"timestamp":"2026-07-21T10:45:01.037Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/b17fd9ed6b183cc157638df9dd407ddbd493663f.json b/test-results/.playwright-artifacts-0/traces/resources/b17fd9ed6b183cc157638df9dd407ddbd493663f.json new file mode 100644 index 000000000..94b8f6d50 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/b17fd9ed6b183cc157638df9dd407ddbd493663f.json @@ -0,0 +1 @@ +{"success":true,"data":{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","passengers":[{"passengerName":"Adult 1","dateOfBirth":"1990-06-15","category":"ADULT","ageYears":36,"seatClassId":"00000000-0000-4000-8000-000000000010","seatClassName":"Economy Regular","nationality":"ETHIOPIAN","baseFareMinor":75000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":75000,"isFree":false,"displayCurrency":"ETB","displayFareMinor":75000}],"subtotalMinor":75000,"discountMinor":0,"totalMinor":75000,"currency":"ETB","displayCurrency":"ETB","displayTotalMinor":75000},"timestamp":"2026-07-21T10:44:26.441Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/b216b53adfe1c8a5184c0939af50133b84cc6b55.json b/test-results/.playwright-artifacts-0/traces/resources/b216b53adfe1c8a5184c0939af50133b84cc6b55.json new file mode 100644 index 000000000..b3120114e --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/b216b53adfe1c8a5184c0939af50133b84cc6b55.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"032991e7-7bce-4e09-b43a-72afbb08504b","bookingRef":"CTFDAP","passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","packageId":null,"priceTierId":null,"bookingType":"ONE_WAY","status":"PENDING_PAYMENT","currency":"ETB","totalMinor":225000,"adultCount":2,"childCount":1,"displayCurrency":"ETB","displayTotalMinor":225000,"returnScheduleId":null,"returnOriginStationId":null,"returnDestinationStationId":null,"returnHoldId":null,"returnSeatClassId":null,"returnLegStatus":"NOT_APPLICABLE","leg2ScheduleId":null,"leg2OriginStationId":null,"leg2DestinationStationId":null,"leg2SeatClassId":null,"returnLeg2ScheduleId":null,"returnLeg2OriginStationId":null,"returnLeg2DestStationId":null,"returnLeg2SeatClassId":null,"originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"userAgent":null,"source":"WEB","promoCode":null,"paidAt":null,"paymentReminderSentAt":null,"packageDepartureStationId":null,"createdAt":"2026-07-21T10:44:59.858Z","updatedAt":"2026-07-21T10:44:59.858Z","seats":[{"id":"4041a5c0-e798-4b66-a63a-8b39706d918e","bookingId":"032991e7-7bce-4e09-b43a-72afbb08504b","seatId":"82d00a65-f7cf-40a6-b889-f45584ac54be","leg":1,"scheduleId":"00000000-0000-4000-8000-000000000101","passengerName":"Child 3","dateOfBirth":"2023-03-10T00:00:00.000Z","passengerCategory":"CHILD","idDocumentType":"NATIONAL_ID","idDocumentNumber":null,"passportNumber":"","passportCountry":"","verifaydaVerified":false,"verifaydaData":null,"faydaVerifiedAt":null,"faydaSub":null,"faydaVerifiedName":null,"seatLabelSnapshot":null,"fareMinor":75000,"displayCurrency":"ETB","displayFareMinor":null,"seat":{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","coachId":"00000000-0000-4000-8000-000000000102","seatNumber":"2C","row":2,"col":"C","kind":"STANDARD","status":"AVAILABLE","heldUntil":null,"isWindow":false,"isAisle":true,"bedPosition":null,"premiumFeeMinor":0}},{"id":"fb304697-eb1b-47dc-9bfc-58cbfa8fb224","bookingId":"032991e7-7bce-4e09-b43a-72afbb08504b","seatId":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","leg":1,"scheduleId":"00000000-0000-4000-8000-000000000101","passengerName":"Adult 2","dateOfBirth":"1990-06-15T00:00:00.000Z","passengerCategory":"ADULT","idDocumentType":"NATIONAL_ID","idDocumentNumber":null,"passportNumber":"","passportCountry":"","verifaydaVerified":false,"verifaydaData":null,"faydaVerifiedAt":null,"faydaSub":null,"faydaVerifiedName":null,"seatLabelSnapshot":null,"fareMinor":75000,"displayCurrency":"ETB","displayFareMinor":null,"seat":{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","coachId":"00000000-0000-4000-8000-000000000102","seatNumber":"2B","row":2,"col":"B","kind":"STANDARD","status":"AVAILABLE","heldUntil":null,"isWindow":false,"isAisle":true,"bedPosition":null,"premiumFeeMinor":0}},{"id":"675461f6-6a4e-42c2-89ee-b0c5d5532d68","bookingId":"032991e7-7bce-4e09-b43a-72afbb08504b","seatId":"fae276bc-386b-4045-9242-f3a7f295423f","leg":1,"scheduleId":"00000000-0000-4000-8000-000000000101","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","passengerCategory":"ADULT","idDocumentType":"NATIONAL_ID","idDocumentNumber":null,"passportNumber":"","passportCountry":"","verifaydaVerified":false,"verifaydaData":null,"faydaVerifiedAt":null,"faydaSub":null,"faydaVerifiedName":null,"seatLabelSnapshot":null,"fareMinor":75000,"displayCurrency":"ETB","displayFareMinor":null,"seat":{"id":"fae276bc-386b-4045-9242-f3a7f295423f","coachId":"00000000-0000-4000-8000-000000000102","seatNumber":"2A","row":2,"col":"A","kind":"STANDARD","status":"AVAILABLE","heldUntil":null,"isWindow":true,"isAisle":false,"bedPosition":null,"premiumFeeMinor":0}}],"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainId":"00000000-0000-4000-8000-000000000100","routeId":"00000000-0000-4000-8000-000000000030","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stopsCount":3,"reservedCount":0,"onTimePercent":100,"carbonRating":"A","notes":null,"isPackageOnly":false,"originStation":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","countryCode":null,"sequence":1,"isOperational":true,"lat":null,"lng":null},"destinationStation":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","countryCode":null,"sequence":3,"isOperational":true,"lat":null,"lng":null},"train":{"id":"00000000-0000-4000-8000-000000000100","number":"UI-100","name":"UI Test Express","operatorId":"op_edr","operatorName":null,"description":null,"isActive":true,"createdAt":"2026-07-21T10:44:20.893Z","updatedAt":"2026-07-21T10:44:20.893Z"}},"fareBreakdown":{"baseFareMinor":75000,"adultCount":2,"adultFareMinor":150000,"childCount":1,"freeChildrenCount":1,"paidChildrenCount":0,"childFareMinor":0,"totalBaseFareMinor":150000,"discountMinor":0,"loyaltyRedemptionMinor":0,"taxesFeesMinor":0,"totalMinor":150000}},"timestamp":"2026-07-21T10:44:59.870Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/b332d3f7256b88cc3869801982b830dbcdbc38ca.json b/test-results/.playwright-artifacts-0/traces/resources/b332d3f7256b88cc3869801982b830dbcdbc38ca.json new file mode 100644 index 000000000..cb307e3ae --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/b332d3f7256b88cc3869801982b830dbcdbc38ca.json @@ -0,0 +1 @@ +{"success":false,"statusCode":400,"message":"Booking total does not match the authoritative fare","error":"Bad Request","timestamp":"2026-07-21T10:44:42.731Z","path":"/bookings"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/b41b79323eca6e7f111d8bb093f70c4515758ab8.json b/test-results/.playwright-artifacts-0/traces/resources/b41b79323eca6e7f111d8bb093f70c4515758ab8.json new file mode 100644 index 000000000..070262080 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/b41b79323eca6e7f111d8bb093f70c4515758ab8.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":26927,"column":1,"methodName":"beginWork","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/b457b71bb3a5e3c8e0ee6908d9539326b7cdf2a2.html b/test-results/.playwright-artifacts-0/traces/resources/b457b71bb3a5e3c8e0ee6908d9539326b7cdf2a2.html new file mode 100644 index 000000000..3fe1b668d --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/b457b71bb3a5e3c8e0ee6908d9539326b7cdf2a2.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway

Searching for trains...

Finding the best options for your journey

\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/b84b28a69bd6637b8142fa213359c4307809c09c.json b/test-results/.playwright-artifacts-0/traces/resources/b84b28a69bd6637b8142fa213359c4307809c09c.json new file mode 100644 index 000000000..14753ec3a --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/b84b28a69bd6637b8142fa213359c4307809c09c.json @@ -0,0 +1 @@ +{"success":true,"data":{"holdId":"de572bf1-1732-4cb4-9d4a-5c64634b72de","expiresAt":"2026-07-21T10:50:07.196Z","createdAt":"2026-07-21T10:45:07.210Z","ttlSeconds":299,"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","fullRouteOrigin":"Alpha","fullRouteDestination":"Charlie"},"leg":{"originStationId":"00000000-0000-4000-8000-000000000020","originStationName":"Alpha","originStationCode":"AAA","originSequence":1,"destinationStationId":"00000000-0000-4000-8000-000000000022","destinationStationName":"Charlie","destinationStationCode":"CCC","destinationSequence":3},"passengers":[{"passengerId":"temp-1784630707192-0","seat":{"id":"d25631fa-6857-446d-ad23-094a27deda66","label":"2D","seatNumber":"2D","coach":"UI-C1","seatClass":"Standard","row":2,"col":"D"}}]},"timestamp":"2026-07-21T10:45:07.216Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/b88ca0c72926080a816da4aa07adde3a78d21b93.json b/test-results/.playwright-artifacts-0/traces/resources/b88ca0c72926080a816da4aa07adde3a78d21b93.json new file mode 100644 index 000000000..990ca8d15 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/b88ca0c72926080a816da4aa07adde3a78d21b93.json @@ -0,0 +1 @@ +{"success":true,"data":{"booking_id":"0ed21f92-0885-4933-963e-9a64f2efbfc5","currency":"ETB","amount":1250},"timestamp":"2026-07-21T10:45:09.282Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/b98d676a8d1a11329117aa54f3461ed344a274f6.json b/test-results/.playwright-artifacts-0/traces/resources/b98d676a8d1a11329117aa54f3461ed344a274f6.json new file mode 100644 index 000000000..18a7bfc45 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/b98d676a8d1a11329117aa54f3461ed344a274f6.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:44:44.152Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ba3317dbfe9eb4fb27f3193ec0597633a5704fa0.json b/test-results/.playwright-artifacts-0/traces/resources/ba3317dbfe9eb4fb27f3193ec0597633a5704fa0.json new file mode 100644 index 000000000..7cca5cefe --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ba3317dbfe9eb4fb27f3193ec0597633a5704fa0.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":4250,"lifetimePoints":0},"wallet":{"balanceMinor":99625000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:45:03.888Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ba6a2e0be48b858c962ce9890c99a2a60b495168.json b/test-results/.playwright-artifacts-0/traces/resources/ba6a2e0be48b858c962ce9890c99a2a60b495168.json new file mode 100644 index 000000000..f396c1da2 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ba6a2e0be48b858c962ce9890c99a2a60b495168.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:58.925Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/bc3355add9b60b188f5130f55571e8f5.jsonl b/test-results/.playwright-artifacts-0/traces/resources/bc3355add9b60b188f5130f55571e8f5.jsonl new file mode 100644 index 000000000..efa0e64dc --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/bc3355add9b60b188f5130f55571e8f5.jsonl @@ -0,0 +1,2 @@ +{"type":"receive","time":1784630688201.203,"opcode":1,"data":"{\"action\":\"sync\",\"hash\":\"27234cfe8de65dd5\",\"errors\":[],\"warnings\":[],\"versionInfo\":{\"staleness\":\"stale-major\",\"expected\":\"16.2.10\",\"installed\":\"14.2.35\"}}"} +{"type":"send","time":1784630688201.4429,"opcode":1,"data":"{\"event\":\"client-success\",\"clientId\":1784630688167}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/bcf0740ca067b04d6e4c1de1dbd03d7792023e40.json b/test-results/.playwright-artifacts-0/traces/resources/bcf0740ca067b04d6e4c1de1dbd03d7792023e40.json new file mode 100644 index 000000000..77665a4cf --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/bcf0740ca067b04d6e4c1de1dbd03d7792023e40.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":25464,"column":1,"methodName":"workLoopSync","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/bd1968ed11a0ff0860c0e421372788c23771a5f6.json b/test-results/.playwright-artifacts-0/traces/resources/bd1968ed11a0ff0860c0e421372788c23771a5f6.json new file mode 100644 index 000000000..e4abcafc7 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/bd1968ed11a0ff0860c0e421372788c23771a5f6.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:44:32.171Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/be87e0007caa67da5f7652c29d7d3214230d3ea8.json b/test-results/.playwright-artifacts-0/traces/resources/be87e0007caa67da5f7652c29d7d3214230d3ea8.json new file mode 100644 index 000000000..6550ca542 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/be87e0007caa67da5f7652c29d7d3214230d3ea8.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"a9be972d-c95f-4ef3-b91b-4084df183dc3","bookingRef":"GLLGTK","passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","packageId":null,"priceTierId":null,"bookingType":"ONE_WAY","status":"PENDING_PAYMENT","currency":"ETB","totalMinor":75000,"adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"returnScheduleId":null,"returnOriginStationId":null,"returnDestinationStationId":null,"returnHoldId":null,"returnSeatClassId":null,"returnLegStatus":"NOT_APPLICABLE","leg2ScheduleId":null,"leg2OriginStationId":null,"leg2DestinationStationId":null,"leg2SeatClassId":null,"returnLeg2ScheduleId":null,"returnLeg2OriginStationId":null,"returnLeg2DestStationId":null,"returnLeg2SeatClassId":null,"originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"userAgent":null,"source":"WEB","promoCode":null,"paidAt":null,"paymentReminderSentAt":null,"packageDepartureStationId":null,"createdAt":"2026-07-21T10:44:47.464Z","updatedAt":"2026-07-21T10:44:47.464Z","seats":[{"id":"25da95fa-e111-43be-a15a-24f63bade080","bookingId":"a9be972d-c95f-4ef3-b91b-4084df183dc3","seatId":"6f8c0175-ba7d-4077-b59f-b501182b4c98","leg":1,"scheduleId":"00000000-0000-4000-8000-000000000101","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","passengerCategory":"ADULT","idDocumentType":"NATIONAL_ID","idDocumentNumber":null,"passportNumber":"","passportCountry":"","verifaydaVerified":false,"verifaydaData":null,"faydaVerifiedAt":null,"faydaSub":null,"faydaVerifiedName":null,"seatLabelSnapshot":null,"fareMinor":75000,"displayCurrency":"ETB","displayFareMinor":null,"seat":{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","coachId":"00000000-0000-4000-8000-000000000102","seatNumber":"1D","row":1,"col":"D","kind":"STANDARD","status":"AVAILABLE","heldUntil":null,"isWindow":true,"isAisle":false,"bedPosition":null,"premiumFeeMinor":0}}],"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainId":"00000000-0000-4000-8000-000000000100","routeId":"00000000-0000-4000-8000-000000000030","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stopsCount":3,"reservedCount":0,"onTimePercent":100,"carbonRating":"A","notes":null,"isPackageOnly":false,"originStation":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","countryCode":null,"sequence":1,"isOperational":true,"lat":null,"lng":null},"destinationStation":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","countryCode":null,"sequence":3,"isOperational":true,"lat":null,"lng":null},"train":{"id":"00000000-0000-4000-8000-000000000100","number":"UI-100","name":"UI Test Express","operatorId":"op_edr","operatorName":null,"description":null,"isActive":true,"createdAt":"2026-07-21T10:44:20.893Z","updatedAt":"2026-07-21T10:44:20.893Z"}},"fareBreakdown":{"baseFareMinor":75000,"adultCount":1,"adultFareMinor":75000,"childCount":0,"freeChildrenCount":0,"paidChildrenCount":0,"childFareMinor":0,"totalBaseFareMinor":75000,"discountMinor":0,"loyaltyRedemptionMinor":0,"taxesFeesMinor":0,"totalMinor":75000}},"timestamp":"2026-07-21T10:44:47.476Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/bf49c87008b9e30ed36063cbb448f9a1f06ae0d9.json b/test-results/.playwright-artifacts-0/traces/resources/bf49c87008b9e30ed36063cbb448f9a1f06ae0d9.json new file mode 100644 index 000000000..bce4a21ab --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/bf49c87008b9e30ed36063cbb448f9a1f06ae0d9.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":17193,"column":1,"methodName":"updateSuspenseComponent","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/bf8103cbde07afcc93181c858345d17a365a2ca8.html b/test-results/.playwright-artifacts-0/traces/resources/bf8103cbde07afcc93181c858345d17a365a2ca8.html new file mode 100644 index 000000000..3a00df4aa --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/bf8103cbde07afcc93181c858345d17a365a2ca8.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway

Searching for trains...

Finding the best options for your journey

\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/c0642eeeec53bb46964883e531935fca64a39906.json b/test-results/.playwright-artifacts-0/traces/resources/c0642eeeec53bb46964883e531935fca64a39906.json new file mode 100644 index 000000000..5caf64f5b --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/c0642eeeec53bb46964883e531935fca64a39906.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":4250,"lifetimePoints":0},"wallet":{"balanceMinor":99625000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:45:05.300Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/c5d48818c8a757cd73d7566da1b2271000a17f96.json b/test-results/.playwright-artifacts-0/traces/resources/c5d48818c8a757cd73d7566da1b2271000a17f96.json new file mode 100644 index 000000000..52f9ae7fc --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/c5d48818c8a757cd73d7566da1b2271000a17f96.json @@ -0,0 +1 @@ +{"success":true,"data":{"unreadCount":0},"timestamp":"2026-07-21T10:44:54.179Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/c70ccf8fa13e29ee97aa204b2b37aa80.jsonl b/test-results/.playwright-artifacts-0/traces/resources/c70ccf8fa13e29ee97aa204b2b37aa80.jsonl new file mode 100644 index 000000000..8a2d71631 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/c70ccf8fa13e29ee97aa204b2b37aa80.jsonl @@ -0,0 +1,2 @@ +{"type":"receive","time":1784630703939.507,"opcode":1,"data":"{\"action\":\"sync\",\"hash\":\"27234cfe8de65dd5\",\"errors\":[],\"warnings\":[],\"versionInfo\":{\"staleness\":\"stale-major\",\"expected\":\"16.2.10\",\"installed\":\"14.2.35\"}}"} +{"type":"send","time":1784630703939.734,"opcode":1,"data":"{\"event\":\"client-success\",\"clientId\":1784630703861}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/c8c379301af388ba8fd91d5a4c7bba3e.jsonl b/test-results/.playwright-artifacts-0/traces/resources/c8c379301af388ba8fd91d5a4c7bba3e.jsonl new file mode 100644 index 000000000..3791ae5e4 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/c8c379301af388ba8fd91d5a4c7bba3e.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630663127.6458,"opcode":1,"data":"{\"action\":\"sync\",\"hash\":\"27234cfe8de65dd5\",\"errors\":[],\"warnings\":[],\"versionInfo\":{\"staleness\":\"stale-major\",\"expected\":\"16.2.10\",\"installed\":\"14.2.35\"}}"} +{"type":"send","time":1784630663127.835,"opcode":1,"data":"{\"event\":\"client-success\",\"clientId\":1784630663049}"} +{"type":"send","time":1784630670017.1829,"opcode":1,"data":"{\"event\":\"ping\",\"tree\":[\"\",{\"children\":[\"booking\",{\"children\":[\"payment\",{\"children\":[\"__PAGE__\",{},\"/booking/payment\",\"refresh\"]}]},null,null]},null,null,true],\"appDirRoute\":true}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/c9f199370ff7a31f54b96a607ccd2c2cace87711.json b/test-results/.playwright-artifacts-0/traces/resources/c9f199370ff7a31f54b96a607ccd2c2cace87711.json new file mode 100644 index 000000000..80e6f7fe9 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/c9f199370ff7a31f54b96a607ccd2c2cace87711.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"b55a26b7-23d7-468e-a183-72025a675bb0","type":"WALLET","displayName":"Wallet","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":true,"enabled":true,"sortOrder":0,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"},{"id":"7f9b13ca-0729-4454-a2bf-1439714e5f66","type":"TELEBIRR","displayName":"telebirr","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":false,"enabled":true,"sortOrder":1,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"}],"timestamp":"2026-07-21T10:45:08.435Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ca4c11ed17dc9a3b3ef54753b1deb7e46286d2df.json b/test-results/.playwright-artifacts-0/traces/resources/ca4c11ed17dc9a3b3ef54753b1deb7e46286d2df.json new file mode 100644 index 000000000..1c25cf18f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ca4c11ed17dc9a3b3ef54753b1deb7e46286d2df.json @@ -0,0 +1 @@ +{"success":true,"data":{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","passengers":[{"passengerName":"Adult 1","dateOfBirth":"1990-06-15","category":"ADULT","ageYears":36,"seatClassId":"00000000-0000-4000-8000-000000000010","seatClassName":"Economy Regular","nationality":"ETHIOPIAN","baseFareMinor":75000,"premiumMinor":0,"insuranceFeeMinor":0,"fareMinor":75000,"isFree":false,"displayCurrency":"ETB","displayFareMinor":75000}],"subtotalMinor":75000,"discountMinor":0,"totalMinor":75000,"currency":"ETB","displayCurrency":"ETB","displayTotalMinor":75000},"timestamp":"2026-07-21T10:44:46.594Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/cd415e5e995c4cad120dbb28ed89e68edc16f259.json b/test-results/.playwright-artifacts-0/traces/resources/cd415e5e995c4cad120dbb28ed89e68edc16f259.json new file mode 100644 index 000000000..f952bba5f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/cd415e5e995c4cad120dbb28ed89e68edc16f259.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:54.098Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ce000626e27f268e5fbd1077b5f971de1d452886.json b/test-results/.playwright-artifacts-0/traces/resources/ce000626e27f268e5fbd1077b5f971de1d452886.json new file mode 100644 index 000000000..9e27bab10 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ce000626e27f268e5fbd1077b5f971de1d452886.json @@ -0,0 +1 @@ +{"success":true,"data":{"intentId":"c382e1ad-63d8-4dbf-9d56-df1f1efda112","status":"SUCCEEDED"},"timestamp":"2026-07-21T10:45:09.375Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/cfd978cfd55f2216715fe252a8a0e5fe8a4cfaef.json b/test-results/.playwright-artifacts-0/traces/resources/cfd978cfd55f2216715fe252a8a0e5fe8a4cfaef.json new file mode 100644 index 000000000..44056fa75 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/cfd978cfd55f2216715fe252a8a0e5fe8a4cfaef.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":7040,"column":1,"methodName":"tryToClaimNextHydratableInstance","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d0c065539ba437482410513259e75bb28435950d.json b/test-results/.playwright-artifacts-0/traces/resources/d0c065539ba437482410513259e75bb28435950d.json new file mode 100644 index 000000000..d25396e8a --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d0c065539ba437482410513259e75bb28435950d.json @@ -0,0 +1 @@ +{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","journeyDirection":"OUTBOUND","passengers":[{"passengerId":"temp-1784630686421-0","seatId":"6f8c0175-ba7d-4077-b59f-b501182b4c98"}]} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d1b32a05d9f18c51a10b46ca59b316ee808e5865.json b/test-results/.playwright-artifacts-0/traces/resources/d1b32a05d9f18c51a10b46ca59b316ee808e5865.json new file mode 100644 index 000000000..1b9764e37 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d1b32a05d9f18c51a10b46ca59b316ee808e5865.json @@ -0,0 +1 @@ +{"scheduleId":"00000000-0000-4000-8000-000000000101","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","journeyDirection":"OUTBOUND","passengers":[{"passengerId":"temp-1784630698791-0","seatId":"fae276bc-386b-4045-9242-f3a7f295423f"},{"passengerId":"temp-1784630698791-1","seatId":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100"},{"passengerId":"temp-1784630698791-2","seatId":"82d00a65-f7cf-40a6-b889-f45584ac54be"}]} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d2e9ab3bb74d74f81d732efe4877d4d77da58422.json b/test-results/.playwright-artifacts-0/traces/resources/d2e9ab3bb74d74f81d732efe4877d4d77da58422.json new file mode 100644 index 000000000..e0a8bf2c2 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d2e9ab3bb74d74f81d732efe4877d4d77da58422.json @@ -0,0 +1 @@ +{"success":true,"data":{"processed":false,"reason":"amount-mismatch"},"timestamp":"2026-07-21T10:44:47.724Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d30fbe5a99b3b91db268c7f9db33e619343a794f.json b/test-results/.playwright-artifacts-0/traces/resources/d30fbe5a99b3b91db268c7f9db33e619343a794f.json new file mode 100644 index 000000000..0176fb962 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d30fbe5a99b3b91db268c7f9db33e619343a794f.json @@ -0,0 +1 @@ +{"success":true,"data":{"count":1,"passengerIds":["c601df13-361e-453f-abc0-0f7a19a8cd91"],"passengers":[{"id":"c601df13-361e-453f-abc0-0f7a19a8cd91","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","nationality":"ETHIOPIAN","phone":"+251912345678","email":""}],"message":"Passenger details saved successfully"},"timestamp":"2026-07-21T10:44:45.449Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d37809e6dbd792a154d904e087e56894434b492f.json b/test-results/.playwright-artifacts-0/traces/resources/d37809e6dbd792a154d904e087e56894434b492f.json new file mode 100644 index 000000000..9d6023394 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d37809e6dbd792a154d904e087e56894434b492f.json @@ -0,0 +1 @@ +{"success":true,"data":{"journeyType":"ONE_WAY","outbound":[{"type":"DIRECT","scheduleId":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","sequence":1},"destination":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","sequence":3},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stops":[{"stationId":"00000000-0000-4000-8000-000000000020","stationName":"Alpha","sequence":1,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T06:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000021","stationName":"Bravo","sequence":2,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T08:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000022","stationName":"Charlie","sequence":3,"plannedArrivalAt":"2026-07-23T10:00:00.000Z","plannedDepartureAt":null}],"availabilityByClass":{"Economy Regular":47},"hasAvailability":true,"displayCurrency":"ETB","faresByClass":[{"seatClassName":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000}],"coachTypes":[{"coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","coachTypeCode":"STD","coachId":"00000000-0000-4000-8000-000000000102","classes":[{"name":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000,"available":47}]}]}]},"timestamp":"2026-07-21T10:44:31.367Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d42100e30ae535c5686ee1acf09d195f7f172ccb.json b/test-results/.playwright-artifacts-0/traces/resources/d42100e30ae535c5686ee1acf09d195f7f172ccb.json new file mode 100644 index 000000000..38d084708 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d42100e30ae535c5686ee1acf09d195f7f172ccb.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"00000000-0000-4000-8000-000000000010","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular","description":null,"nationalityType":"LOCAL","bedPosition":null,"baseFareMinor":300,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.890Z"},{"id":"00000000-0000-4000-8000-000000000011","coachTypeId":"00000000-0000-4000-8000-000000000001","name":"Economy Regular Intl","description":null,"nationalityType":"INTERNATIONAL","bedPosition":null,"baseFareMinor":500,"premiumMinor":0,"insuranceFeeMinor":0,"isActive":true,"createdAt":"2026-07-21T10:44:20.880Z","updatedAt":"2026-07-21T10:44:20.891Z"}],"timestamp":"2026-07-21T10:44:26.404Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d60b45ee1c9ff9295dcaeede0bf16badae952fd4.json b/test-results/.playwright-artifacts-0/traces/resources/d60b45ee1c9ff9295dcaeede0bf16badae952fd4.json new file mode 100644 index 000000000..59c903f6f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d60b45ee1c9ff9295dcaeede0bf16badae952fd4.json @@ -0,0 +1 @@ +{"success":true,"data":{"holdId":"98316675-b88b-4557-b750-9be997efadba","expiresAt":"2026-07-21T10:49:41.704Z","createdAt":"2026-07-21T10:44:41.712Z","ttlSeconds":299,"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","fullRouteOrigin":"Alpha","fullRouteDestination":"Charlie"},"leg":{"originStationId":"00000000-0000-4000-8000-000000000020","originStationName":"Alpha","originStationCode":"AAA","originSequence":1,"destinationStationId":"00000000-0000-4000-8000-000000000022","destinationStationName":"Charlie","destinationStationCode":"CCC","destinationSequence":3},"passengers":[{"passengerId":"temp-1784630681700-0","seat":{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","label":"1C","seatNumber":"1C","coach":"UI-C1","seatClass":"Standard","row":1,"col":"C"}}]},"timestamp":"2026-07-21T10:44:41.716Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp b/test-results/.playwright-artifacts-0/traces/resources/d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp new file mode 100644 index 000000000..3ee751460 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/d61faf8539b0b0fa4fb2a3d41877705244026fbd.webp differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/d70dde50546bafb81c78009cdde3ac2771369a25.json b/test-results/.playwright-artifacts-0/traces/resources/d70dde50546bafb81c78009cdde3ac2771369a25.json new file mode 100644 index 000000000..91b4a706f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d70dde50546bafb81c78009cdde3ac2771369a25.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"GOLD","pointsBalance":5500,"lifetimePoints":0},"wallet":{"balanceMinor":99500000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:45:12.231Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d72e8acc278056601283322a7a9a0d9e73f86ca5.json b/test-results/.playwright-artifacts-0/traces/resources/d72e8acc278056601283322a7a9a0d9e73f86ca5.json new file mode 100644 index 000000000..7d70e3aab --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d72e8acc278056601283322a7a9a0d9e73f86ca5.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:54.735Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d8ec3ffa63ee04acad19ca0b861c8e47.jsonl b/test-results/.playwright-artifacts-0/traces/resources/d8ec3ffa63ee04acad19ca0b861c8e47.jsonl new file mode 100644 index 000000000..9f126fdef --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d8ec3ffa63ee04acad19ca0b861c8e47.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630671436.008,"opcode":1,"data":"0{\"sid\":\"h6K_xOCRn3BmbcYHAAAE\",\"upgrades\":[],\"pingInterval\":25000,\"pingTimeout\":20000,\"maxPayload\":1000000}"} +{"type":"send","time":1784630671436.462,"opcode":1,"data":"40/passenger-support-chat,{\"guestId\":\"a1995b6f-be85-48a6-bfe1-72208b8aeaaa\"}"} +{"type":"receive","time":1784630671437.013,"opcode":1,"data":"40/passenger-support-chat,{\"sid\":\"gNuZxxX63UMNtufLAAAF\"}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/d900fec9b1aba6cbe47020c214405316f7fa6fcd.json b/test-results/.playwright-artifacts-0/traces/resources/d900fec9b1aba6cbe47020c214405316f7fa6fcd.json new file mode 100644 index 000000000..17d4a2aa8 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d900fec9b1aba6cbe47020c214405316f7fa6fcd.json @@ -0,0 +1 @@ +{"passengers":[{"name":"Adult 1","dateOfBirth":"1990-06-15","gender":"Male","nationality":"OTHER","nationalId":"","passportNumber":"P1234567","passportCountry":"Canada","passportIssueDate":"2020-01-01","passportExpiryDate":"2032-01-01","passportIssuingAuthority":"","phone":"+14155552671","email":"","isPrimaryPassenger":true}],"deviceId":"4f76e914-3620-4ae1-8a25-db0ed7f1e28a"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d9627a1db5c315f31ecf20351389f4d37e64cc43.json b/test-results/.playwright-artifacts-0/traces/resources/d9627a1db5c315f31ecf20351389f4d37e64cc43.json new file mode 100644 index 000000000..a06112899 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d9627a1db5c315f31ecf20351389f4d37e64cc43.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"HELD","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:46.581Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/d97ebf40f19565641ca818024c17cd2c027c3a31.json b/test-results/.playwright-artifacts-0/traces/resources/d97ebf40f19565641ca818024c17cd2c027c3a31.json new file mode 100644 index 000000000..a82a40ac4 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/d97ebf40f19565641ca818024c17cd2c027c3a31.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:45:05.408Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/da60b2bf415bfc8c492d4b3d060f7cd4bdb541c5.json b/test-results/.playwright-artifacts-0/traces/resources/da60b2bf415bfc8c492d4b3d060f7cd4bdb541c5.json new file mode 100644 index 000000000..1636b10f5 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/da60b2bf415bfc8c492d4b3d060f7cd4bdb541c5.json @@ -0,0 +1 @@ +{"success":true,"data":{"booking_id":"032991e7-7bce-4e09-b43a-72afbb08504b","currency":"ETB","amount":2250},"timestamp":"2026-07-21T10:45:00.924Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/dbe449c5d83215a1265c1c6fb26ea1b267d17be6.json b/test-results/.playwright-artifacts-0/traces/resources/dbe449c5d83215a1265c1c6fb26ea1b267d17be6.json new file mode 100644 index 000000000..0db2ecde6 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/dbe449c5d83215a1265c1c6fb26ea1b267d17be6.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"b55a26b7-23d7-468e-a183-72025a675bb0","type":"WALLET","displayName":"Wallet","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":true,"enabled":true,"sortOrder":0,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"},{"id":"7f9b13ca-0729-4454-a2bf-1439714e5f66","type":"TELEBIRR","displayName":"telebirr","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":false,"enabled":true,"sortOrder":1,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"}],"timestamp":"2026-07-21T10:45:00.072Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/dca43f6eec0f2287eabce0b4f0dcab9eebd485c2.json b/test-results/.playwright-artifacts-0/traces/resources/dca43f6eec0f2287eabce0b4f0dcab9eebd485c2.json new file mode 100644 index 000000000..4b5e3ee5a --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/dca43f6eec0f2287eabce0b4f0dcab9eebd485c2.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:44:32.175Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/dd50aca19bcf85b53846e5d599726ce434ec9622.json b/test-results/.playwright-artifacts-0/traces/resources/dd50aca19bcf85b53846e5d599726ce434ec9622.json new file mode 100644 index 000000000..0f28d9bff --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/dd50aca19bcf85b53846e5d599726ce434ec9622.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"b55a26b7-23d7-468e-a183-72025a675bb0","type":"WALLET","displayName":"Wallet","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":true,"enabled":true,"sortOrder":0,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"},{"id":"7f9b13ca-0729-4454-a2bf-1439714e5f66","type":"TELEBIRR","displayName":"telebirr","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":false,"enabled":true,"sortOrder":1,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"}],"timestamp":"2026-07-21T10:44:35.703Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/de07c86cc64bda73e654d27a199f6610c0e4ebad.htc b/test-results/.playwright-artifacts-0/traces/resources/de07c86cc64bda73e654d27a199f6610c0e4ebad.htc new file mode 100644 index 000000000..2f16d4894 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/de07c86cc64bda73e654d27a199f6610c0e4ebad.htc @@ -0,0 +1 @@ +0:["development",[["children","booking","children","payment",["payment",{"children":["__PAGE__",{}]}],null,null]]] diff --git a/test-results/.playwright-artifacts-0/traces/resources/dee9c1beb9b6a9e20e35210bdf00af37aa8beea0.json b/test-results/.playwright-artifacts-0/traces/resources/dee9c1beb9b6a9e20e35210bdf00af37aa8beea0.json new file mode 100644 index 000000000..f46d54e04 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/dee9c1beb9b6a9e20e35210bdf00af37aa8beea0.json @@ -0,0 +1 @@ +{"passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","holdId":"de572bf1-1732-4cb4-9d4a-5c64634b72de","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","seatClassId":"00000000-0000-4000-8000-000000000011","bookingType":"ONE_WAY","displayCurrency":"USD","passengers":[{"seatId":"d25631fa-6857-446d-ad23-094a27deda66","passengerName":"Adult 1","dateOfBirth":"1990-06-15","idDocumentType":"PASSPORT","idDocumentNumber":"","passportNumber":"P1234567","passportCountry":"Canada","nationality":"OTHER","seatFareMinor":1250}],"reviewedTotalMinor":1250} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/e3b219a9a2b647f8f8176271caffcc299b154179.json b/test-results/.playwright-artifacts-0/traces/resources/e3b219a9a2b647f8f8176271caffcc299b154179.json new file mode 100644 index 000000000..dba1294fb --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/e3b219a9a2b647f8f8176271caffcc299b154179.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:43.377Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/e721e0967c45c483fc4cc50ae21d9ed28b1a93db.json b/test-results/.playwright-artifacts-0/traces/resources/e721e0967c45c483fc4cc50ae21d9ed28b1a93db.json new file mode 100644 index 000000000..60218686f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/e721e0967c45c483fc4cc50ae21d9ed28b1a93db.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"HELD","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:34.608Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/e7363aad02e96a4dcae1609da1a06a9ffc5720b0.json b/test-results/.playwright-artifacts-0/traces/resources/e7363aad02e96a4dcae1609da1a06a9ffc5720b0.json new file mode 100644 index 000000000..1bd51e52a --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/e7363aad02e96a4dcae1609da1a06a9ffc5720b0.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"HELD","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"BOOKED","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"BOOKED","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"BOOKED","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"HELD","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:45:07.330Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/e782d727cbe084d57f8a97158b86005a27c61a2e.json b/test-results/.playwright-artifacts-0/traces/resources/e782d727cbe084d57f8a97158b86005a27c61a2e.json new file mode 100644 index 000000000..c58d3fe34 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/e782d727cbe084d57f8a97158b86005a27c61a2e.json @@ -0,0 +1 @@ +{"passengers":[{"name":"Adult 1","dateOfBirth":"1990-06-15","gender":"Male","nationality":"ETHIOPIAN","nationalId":"","passportNumber":"","passportCountry":"","passportIssueDate":"","passportExpiryDate":"","passportIssuingAuthority":"","phone":"+251912345678","email":"","isPrimaryPassenger":true}],"deviceId":"04b2bce1-5121-4264-9a57-45b574550d79"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/e8572080f53e312b67d60d60f92143cb8f9f11e8.json b/test-results/.playwright-artifacts-0/traces/resources/e8572080f53e312b67d60d60f92143cb8f9f11e8.json new file mode 100644 index 000000000..e94c26e72 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/e8572080f53e312b67d60d60f92143cb8f9f11e8.json @@ -0,0 +1 @@ +{"success":true,"data":[{"id":"b55a26b7-23d7-468e-a183-72025a675bb0","type":"WALLET","displayName":"Wallet","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":true,"enabled":true,"sortOrder":0,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"},{"id":"7f9b13ca-0729-4454-a2bf-1439714e5f66","type":"TELEBIRR","displayName":"telebirr","region":"GLOBAL","currency":"ETB","providerId":null,"isDefault":false,"enabled":true,"sortOrder":1,"createdAt":"2026-07-21T10:44:20.892Z","updatedAt":"2026-07-21T10:44:20.892Z"}],"timestamp":"2026-07-21T10:44:27.525Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/e92c23490f27529597aad63869b7fb74f3350ab8.json b/test-results/.playwright-artifacts-0/traces/resources/e92c23490f27529597aad63869b7fb74f3350ab8.json new file mode 100644 index 000000000..83463c62c --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/e92c23490f27529597aad63869b7fb74f3350ab8.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":4250,"lifetimePoints":0},"wallet":{"balanceMinor":99625000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:45:03.895Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/e93cb83cf838bc69cbc7946693003fad3e860226.json b/test-results/.playwright-artifacts-0/traces/resources/e93cb83cf838bc69cbc7946693003fad3e860226.json new file mode 100644 index 000000000..9448085c9 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/e93cb83cf838bc69cbc7946693003fad3e860226.json @@ -0,0 +1 @@ +{"success":true,"data":{"intentId":"5e92d423-2a2f-47a7-96d1-1deb233ffd66","status":"SUCCEEDED"},"timestamp":"2026-07-21T10:44:28.492Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/eb0ba22546b8b07928b5d4c10730c645df6be8b4.json b/test-results/.playwright-artifacts-0/traces/resources/eb0ba22546b8b07928b5d4c10730c645df6be8b4.json new file mode 100644 index 000000000..f10259749 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/eb0ba22546b8b07928b5d4c10730c645df6be8b4.json @@ -0,0 +1 @@ +{"bookingId":"2133d122-fa06-4e53-a213-7afb4a986a8b","method":"WALLET","paymentMethodId":"b55a26b7-23d7-468e-a183-72025a675bb0","platform":"web"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ebedef479342d5f34ad7a4836445f344c783ab09.json b/test-results/.playwright-artifacts-0/traces/resources/ebedef479342d5f34ad7a4836445f344c783ab09.json new file mode 100644 index 000000000..f3e78ea2f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ebedef479342d5f34ad7a4836445f344c783ab09.json @@ -0,0 +1 @@ +{"success":true,"data":{"count":1,"passengerIds":["70742e2b-ad8c-4b35-a788-2339257aa2a2"],"passengers":[{"id":"70742e2b-ad8c-4b35-a788-2339257aa2a2","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","nationality":"OTHER","phone":"+14155552671","email":""}],"message":"Passenger details saved successfully"},"timestamp":"2026-07-21T10:45:06.215Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ebf7b4f3bdb621897ba227a0a64a9e25ea085abe.json b/test-results/.playwright-artifacts-0/traces/resources/ebf7b4f3bdb621897ba227a0a64a9e25ea085abe.json new file mode 100644 index 000000000..ec68f3fde --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ebf7b4f3bdb621897ba227a0a64a9e25ea085abe.json @@ -0,0 +1 @@ +{"success":true,"data":{"journeyType":"ONE_WAY","outbound":[{"type":"DIRECT","scheduleId":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","sequence":1},"destination":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","sequence":3},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stops":[{"stationId":"00000000-0000-4000-8000-000000000020","stationName":"Alpha","sequence":1,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T06:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000021","stationName":"Bravo","sequence":2,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T08:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000022","stationName":"Charlie","sequence":3,"plannedArrivalAt":"2026-07-23T10:00:00.000Z","plannedDepartureAt":null}],"availabilityByClass":{"Economy Regular Intl":41},"hasAvailability":true,"displayCurrency":"USD","faresByClass":[{"seatClassName":"Economy Regular Intl","baseFareMinor":125000,"displayCurrency":"USD","displayAmountMinor":1250}],"coachTypes":[{"coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","coachTypeCode":"STD","coachId":"00000000-0000-4000-8000-000000000102","classes":[{"name":"Economy Regular Intl","baseFareMinor":125000,"displayCurrency":"USD","displayAmountMinor":1250,"available":41}]}]}]},"timestamp":"2026-07-21T10:45:03.900Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ecfba8ea15317604ca02bb481cb7188c253114ed.json b/test-results/.playwright-artifacts-0/traces/resources/ecfba8ea15317604ca02bb481cb7188c253114ed.json new file mode 100644 index 000000000..03360158a --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ecfba8ea15317604ca02bb481cb7188c253114ed.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"AVAILABLE","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:44:25.440Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ed38ee4536f3b5c8b41530c4447b6d8e6016e94e.json b/test-results/.playwright-artifacts-0/traces/resources/ed38ee4536f3b5c8b41530c4447b6d8e6016e94e.json new file mode 100644 index 000000000..6db6a6697 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ed38ee4536f3b5c8b41530c4447b6d8e6016e94e.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:40.254Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ed4d42fd059a2d3291dc2b8ab5de99d54b1ba825.json b/test-results/.playwright-artifacts-0/traces/resources/ed4d42fd059a2d3291dc2b8ab5de99d54b1ba825.json new file mode 100644 index 000000000..190f436a7 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ed4d42fd059a2d3291dc2b8ab5de99d54b1ba825.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:44:23.974Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/ef44988c96d65e1d53c19e144d67c71adf9b371b.json b/test-results/.playwright-artifacts-0/traces/resources/ef44988c96d65e1d53c19e144d67c71adf9b371b.json new file mode 100644 index 000000000..5d3a07fe5 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ef44988c96d65e1d53c19e144d67c71adf9b371b.json @@ -0,0 +1 @@ +{"success":true,"data":[],"timestamp":"2026-07-21T10:44:48.705Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/efaabda3d61e31f422e37f941a3fc7288ff77735.json b/test-results/.playwright-artifacts-0/traces/resources/efaabda3d61e31f422e37f941a3fc7288ff77735.json new file mode 100644 index 000000000..f536721c2 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/efaabda3d61e31f422e37f941a3fc7288ff77735.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":17594,"column":1,"methodName":"updateDehydratedSuspenseComponent","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/efc18e093e9560b1f05c3bd786098516c99407f5.htc b/test-results/.playwright-artifacts-0/traces/resources/efc18e093e9560b1f05c3bd786098516c99407f5.htc new file mode 100644 index 000000000..6d0cd8500 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/efc18e093e9560b1f05c3bd786098516c99407f5.htc @@ -0,0 +1 @@ +0:["development",[["children","booking","children","review",["review",{"children":["__PAGE__",{}]}],null,null]]] diff --git a/test-results/.playwright-artifacts-0/traces/resources/efcfc61ae09b9c3306b58148cfad93099b954641.json b/test-results/.playwright-artifacts-0/traces/resources/efcfc61ae09b9c3306b58148cfad93099b954641.json new file mode 100644 index 000000000..323cb50a6 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/efcfc61ae09b9c3306b58148cfad93099b954641.json @@ -0,0 +1 @@ +{"success":true,"data":{"unreadCount":0},"timestamp":"2026-07-21T10:44:39.612Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f05d4a2c0af67af4220a3c1a3d2e89716990bdc3.json b/test-results/.playwright-artifacts-0/traces/resources/f05d4a2c0af67af4220a3c1a3d2e89716990bdc3.json new file mode 100644 index 000000000..af5154eb3 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f05d4a2c0af67af4220a3c1a3d2e89716990bdc3.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"032991e7-7bce-4e09-b43a-72afbb08504b","bookingRef":"CTFDAP","status":"CONFIRMED","totalMinor":225000,"currency":"ETB","adultCount":2,"childCount":1,"displayCurrency":"ETB","displayTotalMinor":225000,"bookingType":"ONE_WAY","packageId":null,"isPackageBooking":false,"returnLegStatus":"NOT_APPLICABLE","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"createdAt":"2026-07-21T10:44:59.858Z","schedule":{"id":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","name":"Alpha","code":"AAA","city":"Alpha City"},"destination":{"id":"00000000-0000-4000-8000-000000000022","name":"Charlie","code":"CCC","city":"Charlie City"},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z"},"returnSchedule":null,"passengers":[{"fullName":"Child 3","category":"CHILD","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","number":"2C","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}},{"fullName":"Adult 2","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","number":"2B","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}},{"fullName":"Adult 1","category":"ADULT","leg":1,"fareMinor":75000,"verifaydaVerified":false,"seat":{"id":"fae276bc-386b-4045-9242-f3a7f295423f","number":"2A","coach":"UI-C1","coachId":"00000000-0000-4000-8000-000000000102","seatClass":"Economy Regular"}}],"payment":{"method":"WALLET","status":"SUCCEEDED","amountMinor":225000,"currency":"ETB"},"tickets":[{"id":"aa02dfe0-f0a1-4c63-970b-f794a28e15ed","passengerName":"Child 3","leg":1,"qrPayload":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPQAAAD0CAYAAACsLwv+AAAAAklEQVR4AewaftIAAA4ISURBVO3BQY4cy5LAQDLR978yR0tfBZCoaun9GDezP1hrXeFhrXWNh7XWNR7WWtd4WGtd42GtdY2HtdY1HtZa13hYa13jYa11jYe11jUe1lrXeFhrXeNhrXWNh7XWNR7WWtf44UMqf1PFGyqfqJhUpoo3VKaKSWWqOFE5qZhUflPFicpJxYnKScWkMlW8ofI3VXziYa11jYe11jUe1lrX+OHLKr5J5Q2VqWJSmSomlZOKSWWqmFS+SeWk4qTiROUTKicVb6icVLyhMlW8UfFNKt/0sNa6xsNa6xoPa61r/PDLVN6oeENlqjipmFSmihOVqWJSmSomlUllqphUTio+oTJVnKh8k8pUMVVMKm9UTCrfpPJGxW96WGtd42GtdY2HtdY1friMyhsVk8obKlPFpDJVvFHxCZWTikllqjipmFR+U8WJyknFpDJV/C97WGtd42GtdY2HtdY1frhMxYnKN1WcVEwqJxUnKt+kcqIyVUwqJxV/U8WkclJxk4e11jUe1lrXeFhrXeOHX1bxX1LxTSpTxaRyUjGpTBVTxaQyVbyhclIxqbyhMlW8oTJVTCpTxd9U8V/ysNa6xsNa6xoPa61r/PBlKv8lKlPFpDJVTCpTxaTyRsWkMlVMKlPFGypTxUnFpDJVTCpTxaTyX6YyVZyo/Jc9rLWu8bDWusbDWusaP3yo4n+JyonKVDGpTBVvqEwVb6i8UfGbKiaVqeKkYlKZKiaVb6o4qfhf8rDWusbDWusaD2uta9gffEBlqphUvqniDZWTim9SOan4JpW/qeITKicVJypTxaQyVUwqJxWTyjdV/KaHtdY1HtZa13hYa13D/uAXqUwVJypTxaTyRsWJylRxonJS8U0qb1ScqJxUTCpTxW9SmSpOVN6oOFGZKr5J5aTiEw9rrWs8rLWu8bDWusYPX6YyVZyoTBWTyknFpPJGxRsVk8qJylRxojJVfEJlqnij4hMqU8WkcqJyUjGpvKFyovKJipOKb3pYa13jYa11jYe11jV++JDKVDGpTBVvVLxRMal8U8WJyjepTBWTylQxVXxC5Y2KNyo+ofKJik+ovFExqUwVn3hYa13jYa11jYe11jV++FDFpPJNKicVb1RMKlPFGxVvqEwVJxUnFScqU8UnKk5UpopJ5aRiUpkqpopPqJxUfJPKb3pYa13jYa11jYe11jV++McqTiomlU+oTBVvqJxUTCpTxaQyVUwqU8WJyonKScUbKlPFN1VMKicVk8pJxaTymyomlW96WGtd42GtdY2HtdY17A8+oPKJiknlpGJSmSreUJkqJpW/qWJSOal4Q2WqOFGZKiaVb6qYVE4qJpWp4hMqU8Wk8omKb3pYa13jYa11jYe11jXsD75I5Y2KSWWqmFROKiaVk4oTlaliUpkqJpVPVEwqJxUnKt9UMalMFZPKVPEvqbxRcaIyVUwqJxWfeFhrXeNhrXWNh7XWNX74ZRUnKicqb6h8QmWqOKk4qZhUTiq+SeWkYlL5TRWTyhsVJyq/SeWkYlI5qfimh7XWNR7WWtd4WGtdw/7gAypTxSdUpoo3VE4qJpU3Kk5UTiomlTcqJpWp4g2VNyomlTcqfpPKScWJylQxqUwVk8onKj7xsNa6xsNa6xoPa61r2B98QOWNiknljYpJ5ZsqJpWp4m9SmSomlZOK36TyRsWk8omKN1SmiknljYo3VKaKb3pYa13jYa11jYe11jV++FDFpPJGxb9UMamcqEwVJypTxaTyhspvUnmjYlKZKk4qJpWTik9UvFExqXyTylTxiYe11jUe1lrXeFhrXcP+4ItU3qiYVD5RMam8UXGi8kbFpHJSMalMFScqJxUnKlPFpDJVnKh8ouK/TGWqmFROKr7pYa11jYe11jUe1lrXsD/4gMpJxRsqU8Wk8kbFpHJSMal8U8WkclJxojJVTConFZPKGxWfUJkqTlSmihOVk4rfpPJGxSce1lrXeFhrXeNhrXWNHz5U8YbKGyonFZPKScWJylQxqUwVk8pUMamcVJyoTBUnFZPKScWk8obKf0nFicobFZPKVHFS8Zse1lrXeFhrXeNhrXWNHz6k8k0Vn6g4UZkqpoo3VKaKk4pJZVKZKk5UTio+UfGJihOVT6hMFZPKVDFVTCpTxScqJpWTik88rLWu8bDWusbDWusaP3yoYlKZKk5UJpV/SWWq+ITKVDFV/CaVE5WTikllqjhRmSreUDmpmFSmiknlDZVPqEwVk8o3Pay1rvGw1rrGw1rrGvYHX6QyVUwqJxVvqJxUnKhMFZPKVPGbVKaKE5Wp4g2VqWJSmSo+oXJS8TepTBVvqEwVJypTxTc9rLWu8bDWusbDWusaP3xIZaqYVKaKSeVEZap4Q+WkYlKZKk5UTipOVN5QeUNlqnijYlKZKiaVqeKk4kTlmyreUJkq3lCZKn7Tw1rrGg9rrWs8rLWu8cN/XMXfVHGiclJxonJSMal8ouINlaliqjipOKn4RMWk8psq3lCZKiaVqeKbHtZa13hYa13jYa11DfuDv0jlN1VMKlPFGypTxSdUTipOVH5TxaQyVZyoTBUnKicVk8pUcaIyVUwqf1PFb3pYa13jYa11jYe11jV++JDKVDGpnFS8oTJVvKEyVUwqJypTxRsVk8qk8kbFicpU8Zsq/iWVNyomlaliUjmpeENlqvjEw1rrGg9rrWs8rLWuYX/wi1ROKiaVb6qYVN6omFTeqHhDZao4UZkqTlROKr5J5aRiUnmj4kRlqjhRmSr+lzysta7xsNa6xsNa6xr2Bx9QOak4UTmpmFROKiaVNyreUJkqJpWpYlJ5o+INlaniDZU3Kj6h8jdVTCpTxYnKVPGGylTxiYe11jUe1lrXeFhrXeOHv0zlDZWp4kTlpOJE5RMqU8WkMlV8k8pUcaIyVZxUfELlpOJEZaqYVE4qvqliUnmj4pse1lrXeFhrXeNhrXWNH76sYlKZKiaVk4oTlaliUplUPlExqXyTylQxqbyhclLxCZWp4o2Kb6qYVD6h8omKSWVSmSo+8bDWusbDWusaD2uta9gf/EUqU8WkclJxovIvVUwqb1S8oTJVnKicVEwqU8WJyknFpDJVTCpTxaQyVZyoTBWTylQxqbxRMalMFd/0sNa6xsNa6xoPa61r/PAhld9U8UbFicpJxaQyVbxRMalMFW+ovKEyVZyoTBWTyknFGxUnFZPKVDGpTBUnKlPFpPK/5GGtdY2HtdY1HtZa17A/+CKVNypOVKaKSWWqmFTeqJhUpopJ5aRiUjmpeENlqnhD5Y2KE5Wp4kTlpOITKlPFpHJS8YbKScVvelhrXeNhrXWNh7XWNX74sopJ5UTlpOKbKiaVSeVE5aTiEypTxaQyVUwqb1RMKm+oTBUnKicVJypTxaRyojJVTCpvqEwVJyonFZ94WGtd42GtdY2HtdY1fviQyknFJ1Q+UTGpnFS8oTKpTBVTxaTyRsWkMlWcqEwqU8UbFZPKVPEJlanipOK/ROWk4pse1lrXeFhrXeNhrXWNH36ZylTxRsWkcqJyUvEJlZOKSeWNim9SOak4UZkq3lA5qTipmFSmihOVqWJSmSomlaniRGWqOFGZKj7xsNa6xsNa6xoPa61r2B98QGWqmFROKk5UpopJ5aTiDZVPVEwqU8WJylRxonJS8YbKGxUnKm9UnKhMFd+kMlV8QuWk4pse1lrXeFhrXeNhrXUN+4MvUpkqJpWpYlKZKr5J5aRiUpkqTlROKj6h8i9VTCpTxW9SmSomlZOKE5VPVJyonFR84mGtdY2HtdY1HtZa1/jhQyqfUDlRmSomlaliUpkqTlT+JZWTiknlpGJS+YTKicpJxaQyVfxLFScqU8WJylTxmx7WWtd4WGtd42GtdQ37gy9SOan4hMobFZPKVHGiMlV8QuWk4kTlpOKbVN6omFROKiaVNyreUJkqJpWp4kRlqviXHtZa13hYa13jYa11DfuDv0hlqjhReaPiN6l8omJSmSpOVH5TxYnKVHGiMlVMKlPF36Tymyr+poe11jUe1lrXeFhrXcP+4H+YylRxojJVfELlpOINlU9UvKHyiYo3VKaKf0llqnhDZao4UZkqvulhrXWNh7XWNR7WWtf44UMqf1PFVDGpvKFyUvFGxYnKScWkMlVMKicqU8UbFZPKicpUcaIyVUwqU8UbKp9QmSreUJkqftPDWusaD2utazysta7xw5dVfJPKicpUMal8QmWqmComlanipGJSOVF5o+KNikllqvhExRsVk8onKiaVk4o3VKaKSeWk4hMPa61rPKy1rvGw1rrGD79M5Y2Kb6r4hMqkMlVMFScVJxWTylQxqUwq31QxqZxUTCpTxaQyVbxR8YbKiconKiaVqeI3Pay1rvGw1rrGw1rrGj/8P6fyRsUbKp+omFROKk5UTlROKk5UpoqTikllqnhD5aTiRGWq+F/ysNa6xsNa6xoPa61r/HA5laliqphUpooTlZOKSeWk4o2KE5WTikllqviEylQxqUwVk8pUcVIxqbxRMalMFZPKVDFVTConFZ94WGtd42GtdY2HtdY1fvhlFb+p4g2Vf6niRGWqmCpOVKaKT6hMFZPKVHGiMlWcVEwqJxXfVHFS8YmKb3pYa13jYa11jYe11jV++DKVv0llqpgqvknlpGJSOal4Q+U3VbxRcaJyojJVTConFScVb6icVEwqb1T8poe11jUe1lrXeFhrXcP+YK11hYe11jUe1lrXeFhrXeNhrXWNh7XWNR7WWtd4WGtd42GtdY2HtdY1HtZa13hYa13jYa11jYe11jUe1lrXeFhrXeP/AC20BejB5dvRAAAAAElFTkSuQmCC","barcodePayload":"CTFDAP82D00A65","status":"ACTIVE"},{"id":"1c92c6e6-96d8-4db6-af88-7c09c0029cd9","passengerName":"Adult 2","leg":1,"qrPayload":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPQAAAD0CAYAAACsLwv+AAAAAklEQVR4AewaftIAAA4SSURBVO3BQY7cSBDAQFLo/3+Z62OeChDUM/YKGWF/sNZ6hYu11mtcrLVe42Kt9RoXa63XuFhrvcbFWus1LtZar3Gx1nqNi7XWa1ystV7jYq31Ghdrrde4WGu9xsVa6zUu1lqv8eEhld9UMan8pIpJZap4QmWqOFGZKiaVqWJSmSpOVKaKSeWkYlJ5ouJE5aTiDpXfVPHExVrrNS7WWq9xsdZ6DfuDB1Smim9SmSq+SWWqeELlpOI3qUwVk8pUMalMFXeoTBUnKndUnKicVJyoTBXfpDJVPHGx1nqNi7XWa1ystV7jww9TuaPiCZWTiidUpoqpYlK5Q+WkYlL5TSp3VNxRcaIyqZxUTCrfpHJHxU+6WGu9xsVa6zUu1lqv8eF/TuWkYlK5Q2WqmFSmiqnijopJ5aRiUjlROVGZKiaVqeJE5Y6Kk4o7VKaKSWWq+D+7WGu9xsVa6zUu1lqv8eFlKiaVqWJSmVROVE5Upoo7VO5Q+aaKb6q4Q+Wk4kTljoo3uVhrvcbFWus1LtZar/Hhh1X8TRV3VPwmlTtUTiruUDlRmSpOVE4qJpWTiknlpGJS+UkV/5KLtdZrXKy1XuNirfUaH75M5V+iMlXcoTJVTCpTxaQyVZxUTCpTxaRyojJVfJPKVDGp3FExqUwVk8oTKlPFicq/7GKt9RoXa63XuFhrvcaHhyr+JSpTxaRyojJVTCpTxaQyVUwqv6niDpWp4qRiUrmjYlKZKk4qJpWpYlK5o+L/5GKt9RoXa63XuFhrvcaHh1SmijtUpopJ5Y6KSeWOijtUpoq/SeWJiknliYo7KiaVqWJS+SaVb6o4UZkqnrhYa73GxVrrNS7WWq9hf/CAylQxqZxUfJPKN1XcoTJVTCp3VJyoPFFxh8pPqnhC5Y6Kn6QyVUwqU8UTF2ut17hYa73GxVrrNewPvkhlqphUnqiYVE4qTlSmim9SOamYVKaKSWWqOFGZKk5Upoo7VO6ouENlqvgmlaniDpUnKp64WGu9xsVa6zUu1lqv8eEhlW+quKPiDpWpYlKZKp6omFQmlaliUpkqJpWpYqo4UblD5aRiUpkq/iUqU8WkclJxUvGbLtZar3Gx1nqNi7XWa9gf/CCVk4pJ5aRiUpkqTlSmihOVqeIOlTsq7lA5qZhUpooTlZOKSWWqmFSmiknliYpJZar4JpWTihOVqeKJi7XWa1ystV7jYq31GvYHP0jlpOIOlaliUpkq7lCZKiaVqWJSeaLiCZWp4gmVOyomlScqJpWp4g6VqeJEZaqYVKaKSWWq+EkXa63XuFhrvcbFWus1PnyZyknFHSonKlPFpHJHxaQyVZxUnKhMFScqJxV3qEwVJxWTylRxR8U3qZxU3KEyVUwqU8WkMlVMKlPFN12stV7jYq31Ghdrrdf48JDKVPGEylRxojKp3FExqdyhclIxVUwqU8VJxaRyonKiMlWcVEwqd6hMFZPKVDFVTCr/MpUTlaniiYu11mtcrLVe42Kt9RofHqp4QmWqmFTuqLhD5aTijopvqphUnqg4UTmpmComlaniCZWTikllUpkqJpU7Kp6omFS+6WKt9RoXa63XuFhrvcaHH6ZyUnFSMancoTJVnFTcUTGpnFTcoXJSMamcqHyTylRxh8pJxaRyR8WkMlXcoXJHxUnFN12stV7jYq31Ghdrrdf48JDKHRWTylQxqUwVT6hMFXeonFQ8oXKHylRxh8odKicqT1TcoTJVPKFyUnGicqIyVXzTxVrrNS7WWq9xsdZ6DfuDX6RyUnGickfFpPJNFScqU8UdKicVJypTxaQyVZyoTBWTyhMVT6icVDyhMlWcqNxR8cTFWus1LtZar3Gx1noN+4MHVKaKSeWOiknlpGJSmSomlaliUpkqnlC5o+IJlTsqJpWTiknlN1VMKj+p4g6Vk4qfdLHWeo2LtdZrXKy1XuPDl6lMFZPKVDGpTBUnKlPFpDJVTCpTxaRyR8VUMalMFZPKVHGiMlVMKlPFb6o4UXmiYlI5qZhUpopJZaqYVE4qJpWp4psu1lqvcbHWeo2LtdZrfHioYlI5qZhUpopJ5YmKSeVE5aRiUjlReULlpGJSmSomlaniDpVvqphUpopJZaqYKp5QmSomlZOKv+lirfUaF2ut17hYa72G/cEDKlPFicpUcYfKVDGpTBX/JypTxaQyVZyofFPFEypTxR0qT1ScqJxUnKhMFScqU8UTF2ut17hYa73GxVrrNewPvkjlb6qYVJ6ouENlqphUpoonVH5TxaRyUnGiclLxTSr/soonLtZar3Gx1nqNi7XWa3x4SGWquENlqrhDZVK5o2JSOVG5Q2WqOFE5qTipuEPlpGJSOan4JpWTihOVOyruULmj4iddrLVe42Kt9RoXa63X+PBlKlPFpHKHylRxR8UdFXdUnKhMKlPFVDGpPKEyVXxTxR0qU8WJylQxqZxUnKicqEwVJxWTyqRyUvHExVrrNS7WWq9xsdZ6DfuDH6QyVUwqU8UdKicVP0nlpGJSOamYVO6ouEPljopvUpkqTlROKu5QmSruUDmpmFSmim+6WGu9xsVa6zUu1lqv8eEhlTtUTlS+SeWk4kRlqjipmFSmiknlm1R+kspJxR0VJypTxaRyojJVnKg8UfE3Xay1XuNirfUaF2ut1/jwUMWkclIxqUwV36TyTSpTxR0qU8Wk8kTFpDJVnKhMFZPKHSpPVJxUTConKicVd6g8oTJVPHGx1nqNi7XWa1ystV7jwz9G5Y6KSWWquEPlpOJEZao4UTmpOFGZVKaKSWWquKPiROUnqUwVJxV3qJxUTBV3VEwq33Sx1nqNi7XWa1ystV7jw5dVnKjcUTGpnFRMKicVT6hMFZPKVHGHyt+kMlWcVJyoTBUnKlPFpHKi8pNU/iUXa63XuFhrvcbFWus17A++SGWqmFSeqJhUpooTlZOKJ1SmikllqjhRmSomlaliUjmpmFROKn6Tyh0Vk8pUMalMFf9nF2ut17hYa73GxVrrNT48pHJHxf+JylTxTSpTxVTxRMWkMqncoXJSMancUTFVTCpTxUnFpHKHyhMVJypTxRMXa63XuFhrvcbFWus1PnxZxaQyVZyo3FExqUwVU8Wk8pNUpoo7VKaKqeKbKu5QmVROKn6Tyh0qJxXfVPFNF2ut17hYa73GxVrrNT78sIoTlaniRGVSOVGZKu6o+CaVqeIOlaniROWk4kRlqnhC5aRiUjlROak4UZkqvknljoonLtZar3Gx1nqNi7XWa3x4qOInqZxUnKhMKlPFicpJxVRxh8pUcYfKN6n8popJ5Y6KE5WpYqo4UZkqJpU7KiaVb7pYa73GxVrrNS7WWq/x4ctU7qg4qZhUJpWpYqqYVJ6omFTuqJgqJpWp4ptUflLFHSonFU9UTConFU9UnKj8pIu11mtcrLVe42Kt9Rr2B1+k8kTFpDJVTCpTxaQyVXyTyknFT1KZKp5QOamYVH5TxaRyUnGi8kTFpDJVTCpTxTddrLVe42Kt9RoXa63X+PCQylQxqTxRMalMFZPKVHGiclLxk1ROKiaVE5WpYlKZKqaKE5U7Kk5U7lA5qfimiknlpGJSOVGZKp64WGu9xsVa6zUu1lqvYX/wgMpJxaQyVZyoTBWTylRxojJV3KFyR8UdKicVk8pJxRMqU8Wk8jdVTCp3VEwqU8WJylRxh8pU8cTFWus1LtZar3Gx1noN+4MHVH5SxaTyTRWTylRxonJScaIyVZyoPFExqUwVd6icVHyTylRxojJVTConFXeo3FHxTRdrrde4WGu9xsVa6zU+/LCKSeUOlZOKE5Wp4g6VqeIOlaliqphU7qg4UZlUpopJZaqYVKaKSeVEZaqYVO5QeaJiUnmi4kTlJ12stV7jYq31Ghdrrdf48FDFpDKpTBXfpHJS8ZsqTlSeqLij4kRlqphUTlR+U8WJylQxqUwVU8WkMlVMKlPFpDJVTCpTxRMXa63XuFhrvcbFWus17A9+kcpUcaJyUjGpnFScqNxRcYfKScWk8i+pmFROKk5U7qiYVKaKSeVfUjGpTBVPXKy1XuNirfUaF2ut1/jwyyruqDhRmSomlROVqeIOlaliUpkq7qiYVE4q7lCZKp6o+E0V31Rxh8odKlPFN12stV7jYq31Ghdrrdf48JDKb6q4o+KkYlKZKp6omFSmiknlpGJSOVGZKp5QmSpOVKaKqeJE5UTlpGJSuUNlqjipmFSmikllqnjiYq31Ghdrrde4WGu9xocvq/gmlZOKE5Wp4g6VqeJE5Q6VqWJSeaLiCZWp4kRlqphUpopJZaqYVE4qTiomlZOKO1Smit90sdZ6jYu11mtcrLVe48MPU7mj4g6Vk4o7KiaVSWWqOFF5omJSOVF5QuVE5aTipOIOld+k8n92sdZ6jYu11mtcrLVe48P/XMUTKndUTConFZPKicpUcUfFHSpTxYnKicpJxaRyUnGHyhMVT6j8TRdrrde4WGu9xsVa6zU+vIzKScVJxR0V31RxUnGHyh0qU8VUcaIyVUwqU8UdKndUTCpTxaRyUjGpnKj8pou11mtcrLVe42Kt9RoffljF31TxhMpUcYfKScVPqjhReULljooTlZ9UcUfFpDJV3KHyky7WWq9xsdZ6jYu11mvYHzyg8psqJpWpYlKZKiaVJyomlZOKSeWkYlKZKk5Upoo7VKaK36QyVUwqU8WkckfFN6mcVHzTxVrrNS7WWq9xsdZ6DfuDtdYrXKy1XuNirfUaF2ut17hYa73GxVrrNS7WWq9xsdZ6jYu11mtcrLVe42Kt9RoXa63XuFhrvcbFWus1LtZar3Gx1nqN/wC/WtlFM28NHQAAAABJRU5ErkJggg==","barcodePayload":"CTFDAPB7AFDC36","status":"ACTIVE"},{"id":"f14783ab-556e-419d-b6a3-e4117bf17619","passengerName":"Adult 1","leg":1,"qrPayload":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPQAAAD0CAYAAACsLwv+AAAAAklEQVR4AewaftIAAA4fSURBVO3BQY7cSBDAQFKY/3+Z62OeChDUPfYKGWF/sNZ6hYu11mtcrLVe42Kt9RoXa63XuFhrvcbFWus1LtZar3Gx1nqNi7XWa1ystV7jYq31Ghdrrde4WGu9xsVa6zUu1lqv8cNDKr+pYlL5popJZap4QmWqOFGZKiaVqWJSmSpOVKaKSeWkYlJ5ouJE5aTiDpXfVPHExVrrNS7WWq9xsdZ6DfuDB1Smik9SmSruUJkqJpWp4gmVk4rfpDJVTCpTxaQyVdyhMlWcqNxRcaJyUnGiMlV8kspU8cTFWus1LtZar3Gx1nqNH75M5Y6KJ1S+SWWqmComlTtUTiomld+kckfFHRUnKpPKScWk8kkqd1R808Va6zUu1lqvcbHWeo0f/udUTiomlTtUpopJZaqYKu6omFROKiaVE5UTlaliUpkqTlTuqDipuENlqphUpor/s4u11mtcrLVe42Kt9Ro/vEzFpDJVTCqTyonKicpUMalMFZPKHSqfVPFJFXeonFScqNxR8SYXa63XuFhrvcbFWus1fviyit+kMlU8UfFJFU+onFTcoXKiMlWcqJxUTConFZPKScWk8k0V/5KLtdZrXKy1XuNirfUaP3yYyt9UMalMFScVk8pUMalMFZPKVDGpTBWTylQxqZyoTBWfpDJVTCp3VEwqU8Wk8oTKVHGi8i+7WGu9xsVa6zUu1lqv8cNDFf8SlaliUjlRmSomlaliUpkq/qaKO1SmipOKSeWOikllqjipmFSmiknljor/k4u11mtcrLVe42Kt9Ro/PKQyVdyhMlVMKndUTCq/qeJEZar4JJUnKiaVJyruqJhUpopJ5ZNUPqniRGWqeOJirfUaF2ut17hYa72G/cEDKicVk8pUMalMFScqJxWTyknFEypTxYnKScWJyhMVd6h8U8UTKndUfJPKVDGpTBVPXKy1XuNirfUaF2ut17A/+CKVqeJE5Y6KSWWqOFE5qXhC5YmKSWWqOFGZKk5Upoo7VO6ouENlqvgklaniDpUnKp64WGu9xsVa6zUu1lqv8cOHqTxR8UTFicpU8YTKJ1VMKlPFpDJVTBUnKneonFRMKlPFv0TlROWk4qTiN12stV7jYq31GhdrrdewP/gilU+qmFSmihOVOyomlaniDpWTijtUTiomlaniROWkYlKZKiaVqWJSeaJiUpkq7lCZKiaVk4oTlaniiYu11mtcrLVe42Kt9Ro/PKTyRMWkMlVMKlPFpDJVTBWTylRxUjGpTBW/qWJSOan4JJWpYlI5UTmpmFSmipOKSWWq+KSKSWWqmCo+6WKt9RoXa63XuFhrvcYPD1VMKicVk8qJyonKVDGpnFScqEwVU8WkMlWcVJyonFTcoTJVnFRMKlPFHRWfpHJScYfKicpUMalMFZPKVPFJF2ut17hYa73GxVrrNX54SGWquKNiUpkqTlQmlSdUvqliUpkqTiomlROVE5Wp4qRiUrlDZaqYVKaKqWJS+aaKSeUOlROVqeKJi7XWa1ystV7jYq31GvYHf5HKVDGp3FFxonJHxYnKHRWTylRxovJExYnKScWJylRxh8odFZPKScWkclJxh8pJxaQyVTxxsdZ6jYu11mtcrLVe44cvUzmpOKmYVO5QmSo+qeKbVE4qJpUTlU9SmSruUDmpmFTuqJhUpoo7VO6oOKn4pIu11mtcrLVe42Kt9Ro/PKRyR8WkMlVMKlPF36RyUvGEyh0qU8UdKneonKg8UXGHylTxhMpJxYnKicpU8UkXa63XuFhrvcbFWus17A9+kcpJxYnKHRWTyidVnKhMFXeonFScqEwVk8pUcaIyVUwqT1Q8oXJS8YTKVHGickfFExdrrde4WGu9xsVa6zXsDx5QmSomlTsqJpWTikllqphUpopJZap4QuWOiidU7qiYVE4qJpXfVDGpfFPFHSonFd90sdZ6jYu11mtcrLVe44cPU5kqJpWpYlKZKk5UpopJZaqYVKaKSeWOiqliUpkqJpWp4kRlqphUporfVHGi8kTFpHJSMalMFZPKVDGpnFRMKlPFJ12stV7jYq31Ghdrrdf44aGKSeWkYlKZKiaVO1ROVE5UTiomlROVJ1ROKiaVqWJSmSruUPmkikllqphUpoqp4gmVqWJSOan4my7WWq9xsdZ6jYu11mvYHzygMlWcqEwVd6icVPyfqUwVk8pUcaLySRVPqEwVd6g8UXGickfFpDJVnKhMFU9crLVe42Kt9RoXa63XsD/4IJWTiknlX1Zxh8pUMalMFU+o/KaKSeWk4kTlpOKTVP5lFU9crLVe42Kt9RoXa63X+OEhlaliUplUTiruUJkqTlSmiknlROUOlaniROWk4qTiDpWTiknlpOKTVE4qTlTuqLhD5Y6Kb7pYa73GxVrrNS7WWq/xwz9OZaq4Q2WqOKm4o+JE5Y6KSeUJlanikyruUJkqTlSmiknlpOJE5URlqjipmFQmlZOKJy7WWq9xsdZ6jYu11mv88FDFScWkckfF36QyVUwqJxUnKlPFicodFU+oTBVPVEwqU8VUMamcVHxSxR0qU8WkMlV80sVa6zUu1lqvcbHWeo0fflnFpDKpfFLFpDJVTCpTxUnFicpvUvkmlZOKOypOVKaKSeVEZao4UXmi4m+6WGu9xsVa6zUu1lqv8cOHqTxRcYfKN6ncUXFSMalMKk9UTCpTxYnKVDGp3KHyRMVJxaRyonJS8ZtUpoonLtZar3Gx1nqNi7XWa9gfPKAyVUwqU8WkckfFpHJS8YTKVHGi8kTFpDJVTConFZPKVDGpTBV3qHxSxYnKScUdKicVk8pJxYnKVPHExVrrNS7WWq9xsdZ6jR8eqjipmFTuqJhUpooTlZOKO1SmipOKSWWqmFROVH6TylRxUnGiMlWcqEwVd6h8U8WkcqLyTRdrrde4WGu9xsVa6zV+eEhlqvgklaliUpkqpopJ5URlqphU7lC5o2JSmSomlaliUvmXVDyhclIxqUwVk8pU8UTFpDJVfNPFWus1LtZar3Gx1noN+4MHVKaKO1ROKiaVk4oTlTsqPknlpOIOlaniROWbKiaVOypOVKaKO1ROKiaVJypOVKaKJy7WWq9xsdZ6jYu11mv88GUqU8VUMalMKlPFpDKpTBV3VEwqJxWTyknFHSpTxVTxSRV3qEwqJxW/SeUOlZOKT6r4pIu11mtcrLVe42Kt9Rr2Bw+oTBV3qEwVJypPVHySyhMVJyonFScqJxUnKlPFpPJJFZPKExUnKlPFJ6ncUfHExVrrNS7WWq9xsdZ6jR8eqvgmlZOKE5UTlaliUjmpmFSmihOVqeIOlU9S+U0Vk8odFScqU8VU8YTKHRWTyiddrLVe42Kt9RoXa63X+OHDVO6omFSmikllUpkqpoqTijsqJpUnKiaVqeKTVL6p4g6Vk4onKiaVk4pJZao4qThR+aaLtdZrXKy1XuNirfUaP/zjVKaKSeVE5Y6KqeI3VdyhMlWcVHyTyiepTBWTyknFVDGp3KEyVUwqU8VJxSddrLVe42Kt9RoXa63XsD94QGWqmFTuqDhRmSomlaniROWk4kTlpOJE5aRiUrmjYlKZKu5QuaPiROWTKu5QmSpOVKaKE5U7Kp64WGu9xsVa6zUu1lqvYX/wgMpJxaQyVZyoTBWTylRxojJV3KFyR8UdKicVk8pJxRMqU8Wk8jdVTConFZPKScWJylRxh8pU8cTFWus1LtZar3Gx1noN+4MHVL6pYlL5pIpJZao4UTmpOFGZKk5UnqiYVKaKO1ROKj5JZao4UZkqTlSmijtU7qj4pIu11mtcrLVe42Kt9Ro/fFnFpHKHyknFpHJScYfKVHGHylQxVUwqd1ScqEwqU8WkMlVMKlPFpHKiMlVMKneo3KEyVXxSxYnKN12stV7jYq31Ghdrrdf44aGKSWVSmSo+SWWqmFR+U8WJyhMVd1ScqEwVk8qJym+qOFGZKiaVk4pJZaqYVKaKSWWqmFSmiicu1lqvcbHWeo2LtdZr/PBhFScqU8WJyknFpPJNKlPFJ1VMKpPKN6mcVEwqd1RMKk+oTBWTyonKHSonKn/TxVrrNS7WWq9xsdZ6jR9+WcUdFScqU8UdKlPFHSpTxaRyUnFSMamcVNyhMlU8UfGbKj6p4g6VO1Smik+6WGu9xsVa6zUu1lqv8cNDKr+p4pMqTlSmijsqJpVJ5Y6KSeVEZap4QmWqOFGZKqaKE5UTlZOKSeUOlanipGJSmSomlaniiYu11mtcrLVe42Kt9Ro/fFjFJ6mcVEwqU8VvUjmpmFSmiknliYonVKaKE5WpYlKZKiaVqWJSOak4qZhUTiruUJkqftPFWus1LtZar3Gx1nqNH75M5Y6KO1SmikllqjhRmSomlaniROWk4qRiUjlReULlROWk4qTiDpXfpPJ/drHWeo2LtdZrXKy1XuOH/7mKJ1SmikllqjhRmSpOVE4q7qi4Q2WqOFE5UTmpmFROKu5QeaLik1Smim+6WGu9xsVa6zUu1lqv8cPLqHxSxYnKVHFHxR0Vd6jcoTJVTBUnKlPFpDJV3KFyR8WkMlVMKicVk8pUcaLyTRdrrde4WGu9xsVa6zV++LKKv6niCZWp4gmVqeKbKk5UnlC5o+JE5Zsq7qiYVKaKf8nFWus1LtZar3Gx1nqNHz5M5TepTBWTyknFN6lMFZPKScWkMlWcqEwVU8WJylQxVXxSxaQyVUwqU8WkckfFScWJylQxqUwVn3Sx1nqNi7XWa1ystV7D/mCt9QoXa63XuFhrvcbFWus1LtZar3Gx1nqNi7XWa1ystV7jYq31Ghdrrde4WGu9xsVa6zUu1lqvcbHWeo2LtdZrXKy1XuM/IpnwND2s46IAAAAASUVORK5CYII=","barcodePayload":"CTFDAPFAE276BC","status":"ACTIVE"}]},"timestamp":"2026-07-21T10:45:03.147Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f2ca0b4bc0a7dd1f4c00d18165e52d1053d763c9.json b/test-results/.playwright-artifacts-0/traces/resources/f2ca0b4bc0a7dd1f4c00d18165e52d1053d763c9.json new file mode 100644 index 000000000..023651058 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f2ca0b4bc0a7dd1f4c00d18165e52d1053d763c9.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"BRONZE","pointsBalance":500,"lifetimePoints":0},"wallet":{"balanceMinor":100000000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:23.870Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f35ea74af209122cd16635e69e9ab6cc45d9838e.json b/test-results/.playwright-artifacts-0/traces/resources/f35ea74af209122cd16635e69e9ab6cc45d9838e.json new file mode 100644 index 000000000..a23bad6c4 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f35ea74af209122cd16635e69e9ab6cc45d9838e.json @@ -0,0 +1 @@ +{"success":true,"data":{"enabled":false,"mode":"development","apiUrl":"https://api.verifayda.gov.et/v2"},"timestamp":"2026-07-21T10:44:54.851Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f3607199c5e8087cb032023c124c2b7c1504f629.json b/test-results/.playwright-artifacts-0/traces/resources/f3607199c5e8087cb032023c124c2b7c1504f629.json new file mode 100644 index 000000000..b817e8d00 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f3607199c5e8087cb032023c124c2b7c1504f629.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"BRONZE","pointsBalance":1250,"lifetimePoints":0},"wallet":{"balanceMinor":99925000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:32.055Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f38f23f9f28452720b1f6180255573c833d1c4df.html b/test-results/.playwright-artifacts-0/traces/resources/f38f23f9f28452720b1f6180255573c833d1c4df.html new file mode 100644 index 000000000..1e6954af2 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f38f23f9f28452720b1f6180255573c833d1c4df.html @@ -0,0 +1,40 @@ +EDR Passenger Portal – Book Train Tickets Online
Ethio-Djibouti Railway

Searching for trains...

Finding the best options for your journey

\ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f5044d518a0d8e8bae0a52e364f918dc2bc3409a.json b/test-results/.playwright-artifacts-0/traces/resources/f5044d518a0d8e8bae0a52e364f918dc2bc3409a.json new file mode 100644 index 000000000..13a0396cf --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f5044d518a0d8e8bae0a52e364f918dc2bc3409a.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:44.044Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f5e16a9946e7cbdce9793f63525a9c03.jsonl b/test-results/.playwright-artifacts-0/traces/resources/f5e16a9946e7cbdce9793f63525a9c03.jsonl new file mode 100644 index 000000000..ad82a5657 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f5e16a9946e7cbdce9793f63525a9c03.jsonl @@ -0,0 +1,3 @@ +{"type":"receive","time":1784630703991.819,"opcode":1,"data":"0{\"sid\":\"_sz5Ro4NK7datXWHAAAR\",\"upgrades\":[],\"pingInterval\":25000,\"pingTimeout\":20000,\"maxPayload\":1000000}"} +{"type":"send","time":1784630703992.206,"opcode":1,"data":"40/passenger-support-chat,{\"guestId\":\"1a14961a-0804-4835-8101-9067cf49fcad\"}"} +{"type":"receive","time":1784630703992.804,"opcode":1,"data":"40/passenger-support-chat,{\"sid\":\"Eh8YGi6uUuZSRXOEAAAS\"}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/f63c5cbf3bbaf1ce9f61b957fc4dbb02504b8c51.json b/test-results/.playwright-artifacts-0/traces/resources/f63c5cbf3bbaf1ce9f61b957fc4dbb02504b8c51.json new file mode 100644 index 000000000..036ae5829 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f63c5cbf3bbaf1ce9f61b957fc4dbb02504b8c51.json @@ -0,0 +1 @@ +{"success":true,"data":{"id":"07f85ff8-6213-4111-8e3b-0236282bef61","bookingRef":"IRASOD","passengerId":"11111111-0000-4000-8000-000000000001","scheduleId":"00000000-0000-4000-8000-000000000101","packageId":null,"priceTierId":null,"bookingType":"ONE_WAY","status":"PENDING_PAYMENT","currency":"ETB","totalMinor":75000,"adultCount":1,"childCount":0,"displayCurrency":"ETB","displayTotalMinor":75000,"returnScheduleId":null,"returnOriginStationId":null,"returnDestinationStationId":null,"returnHoldId":null,"returnSeatClassId":null,"returnLegStatus":"NOT_APPLICABLE","leg2ScheduleId":null,"leg2OriginStationId":null,"leg2DestinationStationId":null,"leg2SeatClassId":null,"returnLeg2ScheduleId":null,"returnLeg2OriginStationId":null,"returnLeg2DestStationId":null,"returnLeg2SeatClassId":null,"originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","outboundBoardedAt":null,"returnBoardedAt":null,"contactEmail":"test.passenger@edr.local","contactPhone":null,"userAgent":null,"source":"WEB","promoCode":null,"paidAt":null,"paymentReminderSentAt":null,"packageDepartureStationId":null,"createdAt":"2026-07-21T10:44:27.310Z","updatedAt":"2026-07-21T10:44:27.310Z","seats":[{"id":"c3ffbffe-29ea-4d50-8735-8f2afbcebb55","bookingId":"07f85ff8-6213-4111-8e3b-0236282bef61","seatId":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","leg":1,"scheduleId":"00000000-0000-4000-8000-000000000101","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","passengerCategory":"ADULT","idDocumentType":"NATIONAL_ID","idDocumentNumber":null,"passportNumber":"","passportCountry":"","verifaydaVerified":false,"verifaydaData":null,"faydaVerifiedAt":null,"faydaSub":null,"faydaVerifiedName":null,"seatLabelSnapshot":null,"fareMinor":75000,"displayCurrency":"ETB","displayFareMinor":null,"seat":{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","coachId":"00000000-0000-4000-8000-000000000102","seatNumber":"1A","row":1,"col":"A","kind":"STANDARD","status":"AVAILABLE","heldUntil":null,"isWindow":true,"isAisle":false,"bedPosition":null,"premiumFeeMinor":0}}],"schedule":{"id":"00000000-0000-4000-8000-000000000101","trainId":"00000000-0000-4000-8000-000000000100","routeId":"00000000-0000-4000-8000-000000000030","originStationId":"00000000-0000-4000-8000-000000000020","destinationStationId":"00000000-0000-4000-8000-000000000022","departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stopsCount":3,"reservedCount":0,"onTimePercent":100,"carbonRating":"A","notes":null,"isPackageOnly":false,"originStation":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","countryCode":null,"sequence":1,"isOperational":true,"lat":null,"lng":null},"destinationStation":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","countryCode":null,"sequence":3,"isOperational":true,"lat":null,"lng":null},"train":{"id":"00000000-0000-4000-8000-000000000100","number":"UI-100","name":"UI Test Express","operatorId":"op_edr","operatorName":null,"description":null,"isActive":true,"createdAt":"2026-07-21T10:44:20.893Z","updatedAt":"2026-07-21T10:44:20.893Z"}},"fareBreakdown":{"baseFareMinor":75000,"adultCount":1,"adultFareMinor":75000,"childCount":0,"freeChildrenCount":0,"paidChildrenCount":0,"childFareMinor":0,"totalBaseFareMinor":75000,"discountMinor":0,"loyaltyRedemptionMinor":0,"taxesFeesMinor":0,"totalMinor":75000}},"timestamp":"2026-07-21T10:44:27.323Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f7382aab14f8501df740bfebfde9f46f917132f9.json b/test-results/.playwright-artifacts-0/traces/resources/f7382aab14f8501df740bfebfde9f46f917132f9.json new file mode 100644 index 000000000..d035bc359 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f7382aab14f8501df740bfebfde9f46f917132f9.json @@ -0,0 +1 @@ +{"originalStackFrame":{"file":"../../../node_modules/.pnpm/next@14.2.35_babel-plugin-macros@3.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","lineNumber":25748,"column":1,"methodName":"performUnitOfWork","arguments":[]},"originalCodeFrame":null,"sourcePackage":"react"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f7484d3b589107ea4e7c6d4723d3cee49a45731c.json b/test-results/.playwright-artifacts-0/traces/resources/f7484d3b589107ea4e7c6d4723d3cee49a45731c.json new file mode 100644 index 000000000..e96a90e55 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f7484d3b589107ea4e7c6d4723d3cee49a45731c.json @@ -0,0 +1 @@ +{"success":true,"data":{"journeyType":"ONE_WAY","outbound":[{"type":"DIRECT","scheduleId":"00000000-0000-4000-8000-000000000101","trainNumber":"UI-100","trainName":"UI Test Express","origin":{"id":"00000000-0000-4000-8000-000000000020","code":"AAA","name":"Alpha","city":"Alpha City","sequence":1},"destination":{"id":"00000000-0000-4000-8000-000000000022","code":"CCC","name":"Charlie","city":"Charlie City","sequence":3},"departureAt":"2026-07-23T06:00:00.000Z","arrivalAt":"2026-07-23T10:00:00.000Z","durationMinutes":240,"status":"SCHEDULED","stops":[{"stationId":"00000000-0000-4000-8000-000000000020","stationName":"Alpha","sequence":1,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T06:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000021","stationName":"Bravo","sequence":2,"plannedArrivalAt":null,"plannedDepartureAt":"2026-07-23T08:00:00.000Z"},{"stationId":"00000000-0000-4000-8000-000000000022","stationName":"Charlie","sequence":3,"plannedArrivalAt":"2026-07-23T10:00:00.000Z","plannedDepartureAt":null}],"availabilityByClass":{"Economy Regular":46},"hasAvailability":true,"displayCurrency":"ETB","faresByClass":[{"seatClassName":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000}],"coachTypes":[{"coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","coachTypeCode":"STD","coachId":"00000000-0000-4000-8000-000000000102","classes":[{"name":"Economy Regular","baseFareMinor":75000,"displayCurrency":"ETB","displayAmountMinor":75000,"available":46}]}]}]},"timestamp":"2026-07-21T10:44:39.565Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/f95e1358c167631509687665cce06827d967e2c9.json b/test-results/.playwright-artifacts-0/traces/resources/f95e1358c167631509687665cce06827d967e2c9.json new file mode 100644 index 000000000..ffbc74b10 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/f95e1358c167631509687665cce06827d967e2c9.json @@ -0,0 +1 @@ +{"success":true,"data":{"iamUserId":"11111111-0000-4000-8000-000000000001","passengerId":"11111111-0000-4000-8000-000000000001","email":"test.passenger@edr.local","phone":null,"fullName":"Test Passenger","nationality":null,"faydaVerified":false,"preferredCurrency":"USD","createdAt":"2026-07-21T10:44:20.904Z","passenger":{"id":"11111111-0000-4000-8000-000000000001","preferredLanguage":null,"loyalty":{"tier":"SILVER","pointsBalance":2000,"lifetimePoints":0},"wallet":{"balanceMinor":99850000,"currency":"ETB"}}},"timestamp":"2026-07-21T10:44:40.255Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/fa080d96d824be91ef71d91c9e0a8dce4f935e9c.json b/test-results/.playwright-artifacts-0/traces/resources/fa080d96d824be91ef71d91c9e0a8dce4f935e9c.json new file mode 100644 index 000000000..8dc5f0662 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/fa080d96d824be91ef71d91c9e0a8dce4f935e9c.json @@ -0,0 +1 @@ +{"success":true,"data":{"count":5,"passengerIds":["16b625d8-3fb7-4430-9d81-1c62ec5bf1c0","bca27f90-db01-4017-9495-47421ddf8a49","d09f4f66-c842-4534-ad42-ca6ae6a182de","be969b3c-6b87-43dd-8f1e-72272c34e16e","65abcad6-7974-431b-b0e5-52a0bbbdef79"],"passengers":[{"id":"16b625d8-3fb7-4430-9d81-1c62ec5bf1c0","passengerName":"Adult 1","dateOfBirth":"1990-06-15T00:00:00.000Z","nationality":"ETHIOPIAN","phone":"+251912345678","email":""},{"id":"bca27f90-db01-4017-9495-47421ddf8a49","passengerName":"Adult 2","dateOfBirth":"1990-06-15T00:00:00.000Z","nationality":"ETHIOPIAN","phone":"+251912345678","email":""},{"id":"d09f4f66-c842-4534-ad42-ca6ae6a182de","passengerName":"Child 1","dateOfBirth":"2023-03-10T00:00:00.000Z","nationality":"ETHIOPIAN","phone":"+251912345678","email":""},{"id":"be969b3c-6b87-43dd-8f1e-72272c34e16e","passengerName":"Child 2","dateOfBirth":"2023-03-10T00:00:00.000Z","nationality":"ETHIOPIAN","phone":"+251912345678","email":""},{"id":"65abcad6-7974-431b-b0e5-52a0bbbdef79","passengerName":"Child 3","dateOfBirth":"2023-03-10T00:00:00.000Z","nationality":"ETHIOPIAN","phone":"+251912345678","email":""}],"message":"Passenger details saved successfully"},"timestamp":"2026-07-21T10:44:57.820Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/fa5ed5ada49d5e8ed635d6f5e0b0306a30a5d2e9.json b/test-results/.playwright-artifacts-0/traces/resources/fa5ed5ada49d5e8ed635d6f5e0b0306a30a5d2e9.json new file mode 100644 index 000000000..1918b3287 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/fa5ed5ada49d5e8ed635d6f5e0b0306a30a5d2e9.json @@ -0,0 +1 @@ +{"success":true,"data":{"coaches":[{"id":"00000000-0000-4000-8000-000000000102","assignmentId":"49c4b93f-f17a-4159-bd98-3f3d3805ff9a","coachNumber":"UI-C1","label":"UI-C1","mode":"ACTIVE","name":"Coach UI-C1","coachTypeId":"00000000-0000-4000-8000-000000000001","coachTypeName":"Standard Coach","isBedCoach":false,"bedCategory":null,"seatClasses":["Economy Regular","Economy Regular Intl"],"seatClass":"Economy Regular","positionNumber":1,"seatArrangement":"2+2","totalSeats":48,"seats":[{"id":"1d2c765b-8c43-41f7-8b8d-07c19bc0002b","seatNumber":"1A","label":"1A","status":"BOOKED","kind":"STANDARD","row":1,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb09fd79-b0a7-4abb-bcde-209f1781e89f","seatNumber":"1B","label":"1B","status":"BOOKED","kind":"STANDARD","row":1,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"3c0ae11f-fe80-410d-95d4-3386b00b13b7","seatNumber":"1C","label":"1C","status":"HELD","kind":"STANDARD","row":1,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f8c0175-ba7d-4077-b59f-b501182b4c98","seatNumber":"1D","label":"1D","status":"HELD","kind":"STANDARD","row":1,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"fae276bc-386b-4045-9242-f3a7f295423f","seatNumber":"2A","label":"2A","status":"BOOKED","kind":"STANDARD","row":2,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b7afdc36-61b7-4971-9b5a-bc5ad85bd100","seatNumber":"2B","label":"2B","status":"BOOKED","kind":"STANDARD","row":2,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"82d00a65-f7cf-40a6-b889-f45584ac54be","seatNumber":"2C","label":"2C","status":"BOOKED","kind":"STANDARD","row":2,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"d25631fa-6857-446d-ad23-094a27deda66","seatNumber":"2D","label":"2D","status":"AVAILABLE","kind":"STANDARD","row":2,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"bdfed45f-a619-47ca-b0d1-d7980383f166","seatNumber":"3A","label":"3A","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4d2d1c24-19cf-4705-98e5-c5314ac9c296","seatNumber":"3B","label":"3B","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"934b028d-df07-4275-946c-85dde5f6a158","seatNumber":"3C","label":"3C","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6a4c6b53-7e6e-40ef-97b7-fc2039d27667","seatNumber":"3D","label":"3D","status":"AVAILABLE","kind":"STANDARD","row":3,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7d9e7090-321d-4f9f-8789-fa79fc8f6eff","seatNumber":"4A","label":"4A","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f5683f27-7427-4aca-a323-3eacaff2ba52","seatNumber":"4B","label":"4B","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"16aab399-d317-4b8e-ac70-9d74f96d4e9a","seatNumber":"4C","label":"4C","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"dc708943-0267-444f-a0f1-8a6329fa66b4","seatNumber":"4D","label":"4D","status":"AVAILABLE","kind":"STANDARD","row":4,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f794a819-543b-49ee-a114-93bbe6ea9229","seatNumber":"5A","label":"5A","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"040c617f-5177-4e6e-ae7b-4e169d7033b1","seatNumber":"5B","label":"5B","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65508d40-d318-4eb5-bf57-45e3b8eaeaf5","seatNumber":"5C","label":"5C","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"19d14b60-7e72-4f74-ada1-4a979405799a","seatNumber":"5D","label":"5D","status":"AVAILABLE","kind":"STANDARD","row":5,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2e060581-838f-443f-b712-e9dcf2d19b21","seatNumber":"6A","label":"6A","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"07f741b8-0e93-4555-98ee-17eed9cdfd41","seatNumber":"6B","label":"6B","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9f1d769b-a2f7-4177-96ac-f3d7cf3251a3","seatNumber":"6C","label":"6C","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"be7d36c7-62ff-46f4-bccb-ed1ebbae2dd9","seatNumber":"6D","label":"6D","status":"AVAILABLE","kind":"STANDARD","row":6,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"4a0d6a06-ea59-4cf7-ade1-3ba5126dc2b0","seatNumber":"7A","label":"7A","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"2008188b-28fe-4e51-b7ef-378f7dbec940","seatNumber":"7B","label":"7B","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"4d11a8dc-0415-40f2-ba9b-f2d2381b22a0","seatNumber":"7C","label":"7C","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7c80afae-0970-4f48-9b4b-d350bf8cb048","seatNumber":"7D","label":"7D","status":"AVAILABLE","kind":"STANDARD","row":7,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"b35b7d6c-9075-4639-bdb1-d071a569a240","seatNumber":"8A","label":"8A","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"504217b8-74b2-4cfd-be36-cef3cfab944a","seatNumber":"8B","label":"8B","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"65d2a3a1-d878-4c14-9ba4-67aaad008f91","seatNumber":"8C","label":"8C","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ac93c7e6-f381-4547-934c-865d1c650569","seatNumber":"8D","label":"8D","status":"AVAILABLE","kind":"STANDARD","row":8,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"e9f77af9-4575-4ef5-bfd8-18eaf56d4ae9","seatNumber":"9A","label":"9A","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"5bdac78e-11a1-400c-9ff9-f3c7b7213c4f","seatNumber":"9B","label":"9B","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"9bf8de4c-bc69-4562-9a16-330d7ad48e07","seatNumber":"9C","label":"9C","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"7b09b521-5d98-4fd7-856c-5c1a52708ff3","seatNumber":"9D","label":"9D","status":"AVAILABLE","kind":"STANDARD","row":9,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"f4c83507-02f9-4853-9468-04ecafde69c3","seatNumber":"10A","label":"10A","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"7a03c70f-81af-4098-a31c-7f024b1e89b1","seatNumber":"10B","label":"10B","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"1a603d1f-560c-4b2d-89c3-be463a83e12e","seatNumber":"10C","label":"10C","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6d31cdc8-e7ed-4026-90c7-06ea51349fb6","seatNumber":"10D","label":"10D","status":"AVAILABLE","kind":"STANDARD","row":10,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"cb44357a-9428-49b7-87ca-16a89de443d4","seatNumber":"11A","label":"11A","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"9fc213e3-db70-4fb0-9b5e-c713d408333d","seatNumber":"11B","label":"11B","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"cc4970b6-e5fc-4e32-87bc-0b1b7cf0f53e","seatNumber":"11C","label":"11C","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"6f607176-c225-483e-a8ea-b3aa408ef55f","seatNumber":"11D","label":"11D","status":"AVAILABLE","kind":"STANDARD","row":11,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"ccd0b8c1-98f6-400c-97d0-5f5a8dc9eb59","seatNumber":"12A","label":"12A","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"A","isWindow":true,"isAisle":false,"bedPosition":null},{"id":"0a8b08ea-859b-46a2-9666-dbad282a7ba1","seatNumber":"12B","label":"12B","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"B","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"fa2eea25-e120-4503-ac1a-5bf3cc5c3c5f","seatNumber":"12C","label":"12C","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"C","isWindow":false,"isAisle":true,"bedPosition":null},{"id":"ed400f1e-a76b-419b-8392-e78a7483319a","seatNumber":"12D","label":"12D","status":"AVAILABLE","kind":"STANDARD","row":12,"col":"D","isWindow":true,"isAisle":false,"bedPosition":null}]}]},"timestamp":"2026-07-21T10:45:06.337Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/fceb345434ac920330ac98424f646d78.jsonl b/test-results/.playwright-artifacts-0/traces/resources/fceb345434ac920330ac98424f646d78.jsonl new file mode 100644 index 000000000..67292ddf8 --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/fceb345434ac920330ac98424f646d78.jsonl @@ -0,0 +1,4 @@ +{"type":"receive","time":1784630694150.3823,"opcode":1,"data":"{\"action\":\"sync\",\"hash\":\"27234cfe8de65dd5\",\"errors\":[],\"warnings\":[],\"versionInfo\":{\"staleness\":\"stale-major\",\"expected\":\"16.2.10\",\"installed\":\"14.2.35\"}}"} +{"type":"send","time":1784630694150.579,"opcode":1,"data":"{\"event\":\"client-success\",\"clientId\":1784630694054}"} +{"type":"send","time":1784630697336.2173,"opcode":1,"data":"{\"event\":\"ping\",\"tree\":[\"\",{\"children\":[\"booking\",{\"children\":[\"passengers\",{\"children\":[\"__PAGE__\",{},\"/booking/passengers\",\"refresh\"]}]},null,null]},null,null,true],\"appDirRoute\":true}"} +{"type":"send","time":1784630702567.2383,"opcode":1,"data":"{\"event\":\"ping\",\"tree\":[\"\",{\"children\":[\"booking\",{\"children\":[\"payment\",{\"children\":[\"__PAGE__\",{},\"/booking/payment\",\"refresh\"]}]},null,null]},null,null,true],\"appDirRoute\":true}"} diff --git a/test-results/.playwright-artifacts-0/traces/resources/ff6abe65ee13310936c46b06e6e63199ef487bc6.json b/test-results/.playwright-artifacts-0/traces/resources/ff6abe65ee13310936c46b06e6e63199ef487bc6.json new file mode 100644 index 000000000..957dd5f0f --- /dev/null +++ b/test-results/.playwright-artifacts-0/traces/resources/ff6abe65ee13310936c46b06e6e63199ef487bc6.json @@ -0,0 +1 @@ +{"success":true,"data":{"unreadCount":0},"timestamp":"2026-07-21T10:44:43.458Z"} \ No newline at end of file diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703437.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703437.jpeg new file mode 100644 index 000000000..5bd8cdbe4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703437.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703463.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703463.jpeg new file mode 100644 index 000000000..6f4e2099f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703463.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703484.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703484.jpeg new file mode 100644 index 000000000..7fa91217f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703484.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703496.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703496.jpeg new file mode 100644 index 000000000..98401c7ba Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703496.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703505.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703505.jpeg new file mode 100644 index 000000000..7a50c2073 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703505.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703519.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703519.jpeg new file mode 100644 index 000000000..cffb59ec3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703519.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703556.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703556.jpeg new file mode 100644 index 000000000..abe59a333 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703556.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703574.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703574.jpeg new file mode 100644 index 000000000..a8dc7ee42 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703574.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703583.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703583.jpeg new file mode 100644 index 000000000..6c6fcb7c3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703583.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703592.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703592.jpeg new file mode 100644 index 000000000..9ee066ce6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703592.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703635.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703635.jpeg new file mode 100644 index 000000000..3270ce9c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703635.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703643.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703643.jpeg new file mode 100644 index 000000000..b726390e4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703643.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703652.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703652.jpeg new file mode 100644 index 000000000..37a2e9666 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703652.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703661.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703661.jpeg new file mode 100644 index 000000000..981376efd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703661.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703671.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703671.jpeg new file mode 100644 index 000000000..bc938c2d6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703671.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703687.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703687.jpeg new file mode 100644 index 000000000..8f8c4047a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703687.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703697.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703697.jpeg new file mode 100644 index 000000000..334d885be Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703697.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703706.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703706.jpeg new file mode 100644 index 000000000..3a8390b05 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703706.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703722.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703722.jpeg new file mode 100644 index 000000000..1656ff57f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703722.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703731.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703731.jpeg new file mode 100644 index 000000000..5e23ffa68 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703731.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703740.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703740.jpeg new file mode 100644 index 000000000..688867891 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703740.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703749.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703749.jpeg new file mode 100644 index 000000000..79999c52c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703749.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703765.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703765.jpeg new file mode 100644 index 000000000..4cc41d235 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703765.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703774.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703774.jpeg new file mode 100644 index 000000000..0a94a9557 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703774.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703784.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703784.jpeg new file mode 100644 index 000000000..a069794fe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703784.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703800.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703800.jpeg new file mode 100644 index 000000000..5e6959d2d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703800.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703809.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703809.jpeg new file mode 100644 index 000000000..85491e16f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703809.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703818.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703818.jpeg new file mode 100644 index 000000000..a10cff054 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703818.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703935.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703935.jpeg new file mode 100644 index 000000000..5ba767b80 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703935.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703941.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703941.jpeg new file mode 100644 index 000000000..a00c62866 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703941.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703949.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703949.jpeg new file mode 100644 index 000000000..88db5fa62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703949.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703981.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703981.jpeg new file mode 100644 index 000000000..017e864a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703981.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703982.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703982.jpeg new file mode 100644 index 000000000..3a1519447 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@0450c339a9a703d9459d17d60a8902f9-1784630703982.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693639.jpeg new file mode 100644 index 000000000..5bd8cdbe4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693666.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693666.jpeg new file mode 100644 index 000000000..6f4e2099f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693666.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693696.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693696.jpeg new file mode 100644 index 000000000..7fa91217f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693696.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693706.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693706.jpeg new file mode 100644 index 000000000..5107e4f89 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693706.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693716.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693716.jpeg new file mode 100644 index 000000000..746df88ab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693716.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693727.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693727.jpeg new file mode 100644 index 000000000..e6fb89345 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693727.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693766.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693766.jpeg new file mode 100644 index 000000000..45061c901 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693766.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693773.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693773.jpeg new file mode 100644 index 000000000..35b50a564 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693773.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693782.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693782.jpeg new file mode 100644 index 000000000..418d4bcd9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693782.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693791.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693791.jpeg new file mode 100644 index 000000000..f9a6509e3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693791.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693800.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693800.jpeg new file mode 100644 index 000000000..a1fc92abf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693800.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693845.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693845.jpeg new file mode 100644 index 000000000..22d99aacf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693845.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693846.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693846.jpeg new file mode 100644 index 000000000..7ed34e42c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693846.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693862.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693862.jpeg new file mode 100644 index 000000000..58209dd3c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693862.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693878.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693878.jpeg new file mode 100644 index 000000000..01c0182d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693878.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693888.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693888.jpeg new file mode 100644 index 000000000..ac8596838 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693888.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693897.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693897.jpeg new file mode 100644 index 000000000..bf3c636b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693897.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693906.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693906.jpeg new file mode 100644 index 000000000..04aff08b6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693906.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693915.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693915.jpeg new file mode 100644 index 000000000..032979a5e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693915.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693932.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693932.jpeg new file mode 100644 index 000000000..199b29a1d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693932.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693941.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693941.jpeg new file mode 100644 index 000000000..bc7a94692 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693941.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693950.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693950.jpeg new file mode 100644 index 000000000..c0a589e01 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693950.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693966.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693966.jpeg new file mode 100644 index 000000000..c57c33bf7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693966.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693975.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693975.jpeg new file mode 100644 index 000000000..9459d5e48 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693975.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693984.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693984.jpeg new file mode 100644 index 000000000..827e43754 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693984.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693994.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693994.jpeg new file mode 100644 index 000000000..2dca534d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630693994.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694010.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694010.jpeg new file mode 100644 index 000000000..397f45443 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694010.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694019.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694019.jpeg new file mode 100644 index 000000000..482f57e3c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694019.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694028.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694028.jpeg new file mode 100644 index 000000000..add37a6c0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694028.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694147.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694147.jpeg new file mode 100644 index 000000000..5249e6a82 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694147.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694148.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694148.jpeg new file mode 100644 index 000000000..ba1582d4b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694148.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694154.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694154.jpeg new file mode 100644 index 000000000..41a472170 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694154.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694191.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694191.jpeg new file mode 100644 index 000000000..7af52268f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694191.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694197.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694197.jpeg new file mode 100644 index 000000000..c6e2d867c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694197.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694206.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694206.jpeg new file mode 100644 index 000000000..c6e2d867c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694206.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694223.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694223.jpeg new file mode 100644 index 000000000..c6e2d867c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694223.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694238.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694238.jpeg new file mode 100644 index 000000000..c6e2d867c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694238.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694247.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694247.jpeg new file mode 100644 index 000000000..c6e2d867c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694247.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694263.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694263.jpeg new file mode 100644 index 000000000..acc084b4f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694263.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694282.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694282.jpeg new file mode 100644 index 000000000..c7c1af6cc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694282.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694317.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694317.jpeg new file mode 100644 index 000000000..ecd3be46f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694317.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694337.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694337.jpeg new file mode 100644 index 000000000..cc21c6aab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694337.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694356.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694356.jpeg new file mode 100644 index 000000000..790a06a1f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694356.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694377.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694377.jpeg new file mode 100644 index 000000000..41ddb6dc2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694377.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694398.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694398.jpeg new file mode 100644 index 000000000..f4b512585 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694398.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694419.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694419.jpeg new file mode 100644 index 000000000..9ba265286 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694419.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694440.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694440.jpeg new file mode 100644 index 000000000..347622906 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694440.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694461.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694461.jpeg new file mode 100644 index 000000000..a815899da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694461.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694483.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694483.jpeg new file mode 100644 index 000000000..a0496faf8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694483.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694504.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694504.jpeg new file mode 100644 index 000000000..0077902cf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694504.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694526.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694526.jpeg new file mode 100644 index 000000000..ec14065a7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694526.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694547.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694547.jpeg new file mode 100644 index 000000000..dcf854e88 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694547.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694568.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694568.jpeg new file mode 100644 index 000000000..caffafb85 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694568.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694590.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694590.jpeg new file mode 100644 index 000000000..1c33b0866 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694590.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694610.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694610.jpeg new file mode 100644 index 000000000..d7ce46e2f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694610.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694629.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694629.jpeg new file mode 100644 index 000000000..d7ce46e2f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694629.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694650.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694650.jpeg new file mode 100644 index 000000000..d7ce46e2f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694650.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694670.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694670.jpeg new file mode 100644 index 000000000..f18adffca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694670.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694709.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694709.jpeg new file mode 100644 index 000000000..f18adffca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694709.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694725.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694725.jpeg new file mode 100644 index 000000000..94cefa73f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694725.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694737.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694737.jpeg new file mode 100644 index 000000000..8c2959c1c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694737.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694740.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694740.jpeg new file mode 100644 index 000000000..9022a0e67 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694740.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694748.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694748.jpeg new file mode 100644 index 000000000..c06f9f8ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694748.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694756.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694756.jpeg new file mode 100644 index 000000000..c1befa3e2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694756.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694764.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694764.jpeg new file mode 100644 index 000000000..8d730d7b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694764.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694781.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694781.jpeg new file mode 100644 index 000000000..8eec4993a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694781.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694790.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694790.jpeg new file mode 100644 index 000000000..a3480a3ec Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694790.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694798.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694798.jpeg new file mode 100644 index 000000000..f5987363b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694798.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694806.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694806.jpeg new file mode 100644 index 000000000..34c68a6cd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694806.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694823.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694823.jpeg new file mode 100644 index 000000000..09b602e0d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694823.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694831.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694831.jpeg new file mode 100644 index 000000000..a321b4ca4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694831.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694872.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694872.jpeg new file mode 100644 index 000000000..0345c1d38 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694872.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694876.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694876.jpeg new file mode 100644 index 000000000..cde4016a7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694876.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694884.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694884.jpeg new file mode 100644 index 000000000..d0092c200 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694884.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694892.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694892.jpeg new file mode 100644 index 000000000..947fc1dc3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694892.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694908.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694908.jpeg new file mode 100644 index 000000000..b0115eb7d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694908.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694917.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694917.jpeg new file mode 100644 index 000000000..eee737a67 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694917.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694924.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694924.jpeg new file mode 100644 index 000000000..898513f6d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694924.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694942.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694942.jpeg new file mode 100644 index 000000000..9139470c1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694942.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694950.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694950.jpeg new file mode 100644 index 000000000..d355c141a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694950.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694959.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694959.jpeg new file mode 100644 index 000000000..8f2eb643e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694959.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694975.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694975.jpeg new file mode 100644 index 000000000..d41326969 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694975.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694983.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694983.jpeg new file mode 100644 index 000000000..0fbf1c5ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694983.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694991.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694991.jpeg new file mode 100644 index 000000000..ee0ba3316 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630694991.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695000.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695000.jpeg new file mode 100644 index 000000000..03e1411e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695000.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695017.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695017.jpeg new file mode 100644 index 000000000..ac8a4bad9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695017.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695025.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695025.jpeg new file mode 100644 index 000000000..584f69d0c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695025.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695034.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695034.jpeg new file mode 100644 index 000000000..b756ccd90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695034.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695050.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695050.jpeg new file mode 100644 index 000000000..e3bda535e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695050.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695058.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695058.jpeg new file mode 100644 index 000000000..f514e91ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695058.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695067.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695067.jpeg new file mode 100644 index 000000000..b3b02d8f2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695067.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695083.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695083.jpeg new file mode 100644 index 000000000..f807294f6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695083.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695091.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695091.jpeg new file mode 100644 index 000000000..f557d15da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695091.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695100.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695100.jpeg new file mode 100644 index 000000000..806ececf2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695100.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695117.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695117.jpeg new file mode 100644 index 000000000..c7d6ad38d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695117.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695124.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695124.jpeg new file mode 100644 index 000000000..bca04439d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695124.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695132.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695132.jpeg new file mode 100644 index 000000000..f15243dd5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695132.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695150.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695150.jpeg new file mode 100644 index 000000000..80ed892f6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695150.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695158.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695158.jpeg new file mode 100644 index 000000000..ef023ba76 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695158.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695166.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695166.jpeg new file mode 100644 index 000000000..f80dd9675 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695166.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695176.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695176.jpeg new file mode 100644 index 000000000..8929a1851 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695176.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695192.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695192.jpeg new file mode 100644 index 000000000..1eb13cfba Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695192.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695200.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695200.jpeg new file mode 100644 index 000000000..b2d5c9120 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695200.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695206.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695206.jpeg new file mode 100644 index 000000000..07cb7b76c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695206.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695215.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695215.jpeg new file mode 100644 index 000000000..07cb7b76c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695215.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695231.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695231.jpeg new file mode 100644 index 000000000..07cb7b76c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695231.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695239.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695239.jpeg new file mode 100644 index 000000000..b1c1b986a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695239.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695248.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695248.jpeg new file mode 100644 index 000000000..b1c1b986a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695248.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695264.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695264.jpeg new file mode 100644 index 000000000..614d49746 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695264.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695272.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695272.jpeg new file mode 100644 index 000000000..614d49746 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695272.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695281.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695281.jpeg new file mode 100644 index 000000000..614d49746 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695281.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695297.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695297.jpeg new file mode 100644 index 000000000..7a2a84bf8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695297.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695306.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695306.jpeg new file mode 100644 index 000000000..8e4859b2a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695306.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695314.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695314.jpeg new file mode 100644 index 000000000..8e4859b2a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695314.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695322.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695322.jpeg new file mode 100644 index 000000000..f744af20f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695322.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695339.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695339.jpeg new file mode 100644 index 000000000..3739d6fe7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695339.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695348.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695348.jpeg new file mode 100644 index 000000000..461a2727f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695348.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695356.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695356.jpeg new file mode 100644 index 000000000..5830b7db0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695356.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695364.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695364.jpeg new file mode 100644 index 000000000..5830b7db0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695364.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695381.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695381.jpeg new file mode 100644 index 000000000..0391de30e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695381.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695389.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695389.jpeg new file mode 100644 index 000000000..57b856985 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695389.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695397.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695397.jpeg new file mode 100644 index 000000000..e50ec9024 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695397.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695614.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695614.jpeg new file mode 100644 index 000000000..0962f9ca6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695614.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695714.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695714.jpeg new file mode 100644 index 000000000..0d03643f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695714.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695722.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695722.jpeg new file mode 100644 index 000000000..120e79afd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695722.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695731.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695731.jpeg new file mode 100644 index 000000000..cb547ff85 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695731.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695739.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695739.jpeg new file mode 100644 index 000000000..1f4308ab9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695739.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695756.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695756.jpeg new file mode 100644 index 000000000..805fa9b6c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695756.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695765.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695765.jpeg new file mode 100644 index 000000000..c0909a12c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695765.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695773.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695773.jpeg new file mode 100644 index 000000000..6df21a4c5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695773.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695781.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695781.jpeg new file mode 100644 index 000000000..000b38ed3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695781.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695799.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695799.jpeg new file mode 100644 index 000000000..2c17e0567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695799.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695807.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695807.jpeg new file mode 100644 index 000000000..7faa0b8f3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695807.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695817.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695817.jpeg new file mode 100644 index 000000000..294d1086f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695817.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695834.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695834.jpeg new file mode 100644 index 000000000..33d024e7d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695834.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695843.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695843.jpeg new file mode 100644 index 000000000..9126a5e08 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695843.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695852.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695852.jpeg new file mode 100644 index 000000000..32863b178 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695852.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695869.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695869.jpeg new file mode 100644 index 000000000..b12e69715 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695869.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695877.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695877.jpeg new file mode 100644 index 000000000..e18c2b6be Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695877.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695885.jpeg new file mode 100644 index 000000000..f6d5a7e80 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695902.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695902.jpeg new file mode 100644 index 000000000..cc041f2e3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695902.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695911.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695911.jpeg new file mode 100644 index 000000000..4f18cb503 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695911.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695919.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695919.jpeg new file mode 100644 index 000000000..765af0da5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695919.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695927.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695927.jpeg new file mode 100644 index 000000000..d428cfda2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695927.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695944.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695944.jpeg new file mode 100644 index 000000000..dbf333e3b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695944.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695952.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695952.jpeg new file mode 100644 index 000000000..02347d14c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695952.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695961.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695961.jpeg new file mode 100644 index 000000000..9d48946a9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695961.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695977.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695977.jpeg new file mode 100644 index 000000000..8f269425e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695977.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695986.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695986.jpeg new file mode 100644 index 000000000..45c965cf4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695986.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695994.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695994.jpeg new file mode 100644 index 000000000..944d5d3f8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630695994.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696011.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696011.jpeg new file mode 100644 index 000000000..ab9975b8b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696011.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696019.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696019.jpeg new file mode 100644 index 000000000..0bb339a2c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696019.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696027.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696027.jpeg new file mode 100644 index 000000000..8a24b6446 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696027.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696042.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696042.jpeg new file mode 100644 index 000000000..5ed4f38c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696042.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696049.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696049.jpeg new file mode 100644 index 000000000..8c422b420 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696049.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696057.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696057.jpeg new file mode 100644 index 000000000..04567f2d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696057.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696065.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696065.jpeg new file mode 100644 index 000000000..4bea5db28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696065.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696082.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696082.jpeg new file mode 100644 index 000000000..772564369 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696082.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696090.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696090.jpeg new file mode 100644 index 000000000..22d6ff26e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696090.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696099.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696099.jpeg new file mode 100644 index 000000000..99d3b6901 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696099.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696108.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696108.jpeg new file mode 100644 index 000000000..1a847d38c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696108.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696125.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696125.jpeg new file mode 100644 index 000000000..90594ae9c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696125.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696132.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696132.jpeg new file mode 100644 index 000000000..bf4e5df3d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696132.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696141.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696141.jpeg new file mode 100644 index 000000000..06717c3f1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696141.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696156.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696156.jpeg new file mode 100644 index 000000000..e17a9fc8a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696156.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696165.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696165.jpeg new file mode 100644 index 000000000..a68cd5eef Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696165.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696173.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696173.jpeg new file mode 100644 index 000000000..234911156 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696173.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696181.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696181.jpeg new file mode 100644 index 000000000..8f8e02662 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696181.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696198.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696198.jpeg new file mode 100644 index 000000000..5fd9c9c0a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696198.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696207.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696207.jpeg new file mode 100644 index 000000000..372bb5f9a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696207.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696215.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696215.jpeg new file mode 100644 index 000000000..e3041ac74 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696215.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696232.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696232.jpeg new file mode 100644 index 000000000..f74d5518e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696232.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696241.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696241.jpeg new file mode 100644 index 000000000..90b0dc743 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696241.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696249.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696249.jpeg new file mode 100644 index 000000000..22c7df75c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696249.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696258.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696258.jpeg new file mode 100644 index 000000000..b7703bad6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696258.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696275.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696275.jpeg new file mode 100644 index 000000000..5098c2598 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696275.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696285.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696285.jpeg new file mode 100644 index 000000000..1cb13ce37 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696285.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696293.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696293.jpeg new file mode 100644 index 000000000..df5621846 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696293.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696311.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696311.jpeg new file mode 100644 index 000000000..dbe25437c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696311.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696319.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696319.jpeg new file mode 100644 index 000000000..770dc9347 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696319.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696327.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696327.jpeg new file mode 100644 index 000000000..b6db60b47 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696327.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696336.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696336.jpeg new file mode 100644 index 000000000..7fc7ee05f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696336.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696352.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696352.jpeg new file mode 100644 index 000000000..ec6a5becd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696352.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696360.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696360.jpeg new file mode 100644 index 000000000..451b41970 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696360.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696369.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696369.jpeg new file mode 100644 index 000000000..fb5fcf3a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696369.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696386.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696386.jpeg new file mode 100644 index 000000000..9a8789380 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696386.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696394.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696394.jpeg new file mode 100644 index 000000000..4ff1b9cdc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696394.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696402.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696402.jpeg new file mode 100644 index 000000000..e72b2cd98 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696402.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696419.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696419.jpeg new file mode 100644 index 000000000..6cd74292e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696419.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696427.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696427.jpeg new file mode 100644 index 000000000..1bd6ea98f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696427.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696436.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696436.jpeg new file mode 100644 index 000000000..1ab5a60f3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696436.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696453.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696453.jpeg new file mode 100644 index 000000000..fc639dcf8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696453.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696461.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696461.jpeg new file mode 100644 index 000000000..3d10ea52f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696461.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696469.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696469.jpeg new file mode 100644 index 000000000..fc552df5a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696469.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696486.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696486.jpeg new file mode 100644 index 000000000..1de11203d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696486.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696491.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696491.jpeg new file mode 100644 index 000000000..647c58f52 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696491.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696499.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696499.jpeg new file mode 100644 index 000000000..705176433 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696499.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696507.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696507.jpeg new file mode 100644 index 000000000..09d89f890 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696507.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696524.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696524.jpeg new file mode 100644 index 000000000..711f733ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696524.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696532.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696532.jpeg new file mode 100644 index 000000000..b16f93e41 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696532.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696541.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696541.jpeg new file mode 100644 index 000000000..83e524508 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696541.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696549.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696549.jpeg new file mode 100644 index 000000000..f78e27da0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696549.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696566.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696566.jpeg new file mode 100644 index 000000000..46038354a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696566.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696574.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696574.jpeg new file mode 100644 index 000000000..82dcb4e8e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696574.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696582.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696582.jpeg new file mode 100644 index 000000000..66bdc0d7e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696582.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696598.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696598.jpeg new file mode 100644 index 000000000..e4bb54445 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696598.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696607.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696607.jpeg new file mode 100644 index 000000000..3e3154eb1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696607.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696615.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696615.jpeg new file mode 100644 index 000000000..b7d8d8a1e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696615.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696623.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696623.jpeg new file mode 100644 index 000000000..8f272c104 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696623.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696640.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696640.jpeg new file mode 100644 index 000000000..ec896de7a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696640.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696649.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696649.jpeg new file mode 100644 index 000000000..c751f224c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696649.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696657.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696657.jpeg new file mode 100644 index 000000000..227fb1d9a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696657.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696666.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696666.jpeg new file mode 100644 index 000000000..d30682362 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696666.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696683.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696683.jpeg new file mode 100644 index 000000000..d56df8b57 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696683.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696692.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696692.jpeg new file mode 100644 index 000000000..45d7707be Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696692.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696702.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696702.jpeg new file mode 100644 index 000000000..2bce6c320 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696702.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696719.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696719.jpeg new file mode 100644 index 000000000..f75745857 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696719.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696727.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696727.jpeg new file mode 100644 index 000000000..4006e33ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696727.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696736.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696736.jpeg new file mode 100644 index 000000000..21ca3c896 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696736.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696751.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696751.jpeg new file mode 100644 index 000000000..dadc69b3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696751.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696760.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696760.jpeg new file mode 100644 index 000000000..a08e04486 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696760.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696769.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696769.jpeg new file mode 100644 index 000000000..6c724b513 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696769.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696777.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696777.jpeg new file mode 100644 index 000000000..884014c1a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696777.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696794.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696794.jpeg new file mode 100644 index 000000000..8ba81bc02 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696794.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696803.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696803.jpeg new file mode 100644 index 000000000..d3c8a35c2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696803.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696811.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696811.jpeg new file mode 100644 index 000000000..c337b8a8b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696811.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696819.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696819.jpeg new file mode 100644 index 000000000..080d3a2ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696819.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696836.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696836.jpeg new file mode 100644 index 000000000..f312dd92d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696836.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696844.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696844.jpeg new file mode 100644 index 000000000..8e894ea82 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696844.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696853.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696853.jpeg new file mode 100644 index 000000000..304aeabff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696853.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696861.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696861.jpeg new file mode 100644 index 000000000..742f906e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696861.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696877.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696877.jpeg new file mode 100644 index 000000000..89263debe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696877.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696885.jpeg new file mode 100644 index 000000000..3fb2d96b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696894.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696894.jpeg new file mode 100644 index 000000000..4e066b243 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696894.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696900.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696900.jpeg new file mode 100644 index 000000000..d3038fe36 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696900.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696914.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696914.jpeg new file mode 100644 index 000000000..d3038fe36 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696914.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696924.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696924.jpeg new file mode 100644 index 000000000..d3038fe36 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696924.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696932.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696932.jpeg new file mode 100644 index 000000000..d3038fe36 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696932.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696941.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696941.jpeg new file mode 100644 index 000000000..d3038fe36 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696941.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696958.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696958.jpeg new file mode 100644 index 000000000..cf3df2598 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696958.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696966.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696966.jpeg new file mode 100644 index 000000000..a81b58278 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696966.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696973.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696973.jpeg new file mode 100644 index 000000000..62fdc5d03 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696973.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696991.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696991.jpeg new file mode 100644 index 000000000..e6d020b0a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696991.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696999.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696999.jpeg new file mode 100644 index 000000000..962abb80e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630696999.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697006.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697006.jpeg new file mode 100644 index 000000000..825a68e7b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697006.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697022.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697022.jpeg new file mode 100644 index 000000000..a91086cf8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697022.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697032.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697032.jpeg new file mode 100644 index 000000000..6f1bde7e7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697032.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697039.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697039.jpeg new file mode 100644 index 000000000..feb1b7ad7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697039.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697048.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697048.jpeg new file mode 100644 index 000000000..46a1dde53 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697048.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697065.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697065.jpeg new file mode 100644 index 000000000..7194a9a2d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697065.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697075.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697075.jpeg new file mode 100644 index 000000000..80c68eece Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697075.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697083.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697083.jpeg new file mode 100644 index 000000000..16e681f57 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697083.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697091.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697091.jpeg new file mode 100644 index 000000000..305c78f36 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697091.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697110.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697110.jpeg new file mode 100644 index 000000000..b7b74a3d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697110.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697118.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697118.jpeg new file mode 100644 index 000000000..9a01108b7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697118.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697127.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697127.jpeg new file mode 100644 index 000000000..7b9e3e1c3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697127.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697136.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697136.jpeg new file mode 100644 index 000000000..3d6ccff87 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697136.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697152.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697152.jpeg new file mode 100644 index 000000000..dcc620e62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697152.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697160.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697160.jpeg new file mode 100644 index 000000000..d3e2e7915 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697160.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697169.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697169.jpeg new file mode 100644 index 000000000..2a2d3391a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697169.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697186.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697186.jpeg new file mode 100644 index 000000000..cf7f1ddc0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697186.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697194.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697194.jpeg new file mode 100644 index 000000000..c0c901add Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697194.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697202.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697202.jpeg new file mode 100644 index 000000000..791197038 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697202.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697210.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697210.jpeg new file mode 100644 index 000000000..1589aad53 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697210.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697228.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697228.jpeg new file mode 100644 index 000000000..a6e0af161 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697228.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697237.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697237.jpeg new file mode 100644 index 000000000..bb26e6fb9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697237.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697245.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697245.jpeg new file mode 100644 index 000000000..02af9841c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697245.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697254.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697254.jpeg new file mode 100644 index 000000000..e729b1f27 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697254.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697269.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697269.jpeg new file mode 100644 index 000000000..c1b0e69e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697269.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697278.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697278.jpeg new file mode 100644 index 000000000..21346f268 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697278.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697287.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697287.jpeg new file mode 100644 index 000000000..ef07396bc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697287.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697295.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697295.jpeg new file mode 100644 index 000000000..f38a7f4a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697295.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697308.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697308.jpeg new file mode 100644 index 000000000..0e9975b46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697308.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697315.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697315.jpeg new file mode 100644 index 000000000..0e9975b46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697315.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697323.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697323.jpeg new file mode 100644 index 000000000..0e9975b46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697323.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697332.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697332.jpeg new file mode 100644 index 000000000..0e9975b46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697332.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697349.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697349.jpeg new file mode 100644 index 000000000..0e9975b46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697349.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697357.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697357.jpeg new file mode 100644 index 000000000..0e9975b46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697357.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697365.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697365.jpeg new file mode 100644 index 000000000..2e12ac0b0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697365.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697382.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697382.jpeg new file mode 100644 index 000000000..499e600d9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697382.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697391.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697391.jpeg new file mode 100644 index 000000000..93cd52561 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697391.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697399.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697399.jpeg new file mode 100644 index 000000000..036e4fe68 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697399.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697415.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697415.jpeg new file mode 100644 index 000000000..27e4fdaa9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697415.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697424.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697424.jpeg new file mode 100644 index 000000000..2cdbdf24e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697424.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697432.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697432.jpeg new file mode 100644 index 000000000..2c3a8ebcd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697432.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697448.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697448.jpeg new file mode 100644 index 000000000..3586812ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697448.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697458.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697458.jpeg new file mode 100644 index 000000000..f3e885c2c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697458.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697466.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697466.jpeg new file mode 100644 index 000000000..67cbff55e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697466.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697484.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697484.jpeg new file mode 100644 index 000000000..307bd4e6d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697484.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697492.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697492.jpeg new file mode 100644 index 000000000..e82ee4d8e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697492.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697501.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697501.jpeg new file mode 100644 index 000000000..00d22fa4c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697501.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697518.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697518.jpeg new file mode 100644 index 000000000..45c43f999 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697518.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697527.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697527.jpeg new file mode 100644 index 000000000..884c19cfd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697527.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697535.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697535.jpeg new file mode 100644 index 000000000..39cb20a5c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697535.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697544.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697544.jpeg new file mode 100644 index 000000000..689799cb0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697544.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697561.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697561.jpeg new file mode 100644 index 000000000..fd536f254 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697561.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697569.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697569.jpeg new file mode 100644 index 000000000..29ddb127c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697569.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697578.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697578.jpeg new file mode 100644 index 000000000..6c8b0ddba Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697578.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697586.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697586.jpeg new file mode 100644 index 000000000..683bf4270 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697586.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697602.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697602.jpeg new file mode 100644 index 000000000..cf0963889 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697602.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697611.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697611.jpeg new file mode 100644 index 000000000..d43087b74 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697611.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697619.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697619.jpeg new file mode 100644 index 000000000..7dbe43b69 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697619.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697628.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697628.jpeg new file mode 100644 index 000000000..c0beb4caf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697628.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697644.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697644.jpeg new file mode 100644 index 000000000..ed57b3764 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697644.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697653.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697653.jpeg new file mode 100644 index 000000000..477343138 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697653.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697661.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697661.jpeg new file mode 100644 index 000000000..6c2480663 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697661.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697669.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697669.jpeg new file mode 100644 index 000000000..36a7c068c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697669.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697686.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697686.jpeg new file mode 100644 index 000000000..12e1c4c17 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697686.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697694.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697694.jpeg new file mode 100644 index 000000000..929170736 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697694.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697703.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697703.jpeg new file mode 100644 index 000000000..1cdcf7a2d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697703.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697716.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697716.jpeg new file mode 100644 index 000000000..79a1e4e93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697716.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697723.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697723.jpeg new file mode 100644 index 000000000..79a1e4e93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697723.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697732.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697732.jpeg new file mode 100644 index 000000000..79a1e4e93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697732.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697749.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697749.jpeg new file mode 100644 index 000000000..79a1e4e93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697749.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697757.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697757.jpeg new file mode 100644 index 000000000..79a1e4e93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697757.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697765.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697765.jpeg new file mode 100644 index 000000000..1971f998e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697765.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697782.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697782.jpeg new file mode 100644 index 000000000..735e0476c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697782.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697791.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697791.jpeg new file mode 100644 index 000000000..bdb33c615 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697791.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697799.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697799.jpeg new file mode 100644 index 000000000..430f6c5f6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697799.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697807.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697807.jpeg new file mode 100644 index 000000000..df47d586b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697807.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697823.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697823.jpeg new file mode 100644 index 000000000..69b6b4074 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697823.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697831.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697831.jpeg new file mode 100644 index 000000000..99faaa613 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697831.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697840.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697840.jpeg new file mode 100644 index 000000000..7374b9ad9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697840.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697856.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697856.jpeg new file mode 100644 index 000000000..39c80ecf8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697856.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697865.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697865.jpeg new file mode 100644 index 000000000..2f6fea4db Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697865.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697873.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697873.jpeg new file mode 100644 index 000000000..2f28f482d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697873.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697881.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697881.jpeg new file mode 100644 index 000000000..076c855d6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697881.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697898.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697898.jpeg new file mode 100644 index 000000000..0683009ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697898.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697906.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697906.jpeg new file mode 100644 index 000000000..6ef8f2bfd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697906.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697914.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697914.jpeg new file mode 100644 index 000000000..90ea0877e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697914.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697959.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697959.jpeg new file mode 100644 index 000000000..a93f6ada4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697959.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697970.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697970.jpeg new file mode 100644 index 000000000..d4d5a9aac Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697970.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697985.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697985.jpeg new file mode 100644 index 000000000..4f65985ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697985.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697993.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697993.jpeg new file mode 100644 index 000000000..a46d5a079 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630697993.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698002.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698002.jpeg new file mode 100644 index 000000000..69c348e61 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698002.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698010.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698010.jpeg new file mode 100644 index 000000000..c40fc03a3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698010.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698026.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698026.jpeg new file mode 100644 index 000000000..a241b4463 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698026.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698035.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698035.jpeg new file mode 100644 index 000000000..3b95bda65 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698035.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698043.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698043.jpeg new file mode 100644 index 000000000..ec2a00832 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698043.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698052.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698052.jpeg new file mode 100644 index 000000000..0c8b529a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698052.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698068.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698068.jpeg new file mode 100644 index 000000000..dd618e316 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698068.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698077.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698077.jpeg new file mode 100644 index 000000000..dbfef8f28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698077.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698085.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698085.jpeg new file mode 100644 index 000000000..ee2a3fe35 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698085.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698093.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698093.jpeg new file mode 100644 index 000000000..73f75eaab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698093.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698110.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698110.jpeg new file mode 100644 index 000000000..5ed46ae55 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698110.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698118.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698118.jpeg new file mode 100644 index 000000000..21b1e08e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698118.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698126.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698126.jpeg new file mode 100644 index 000000000..d39ae2c76 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698126.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698143.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698143.jpeg new file mode 100644 index 000000000..627912d24 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698143.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698151.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698151.jpeg new file mode 100644 index 000000000..6016e3cb5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698151.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698160.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698160.jpeg new file mode 100644 index 000000000..114bfe049 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698160.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698177.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698177.jpeg new file mode 100644 index 000000000..257521621 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698177.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698185.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698185.jpeg new file mode 100644 index 000000000..0e219a7a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698185.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698193.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698193.jpeg new file mode 100644 index 000000000..ddd09ee53 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698193.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698201.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698201.jpeg new file mode 100644 index 000000000..da54f63e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698201.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698218.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698218.jpeg new file mode 100644 index 000000000..a5fff7e46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698218.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698226.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698226.jpeg new file mode 100644 index 000000000..36f7082cb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698226.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698235.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698235.jpeg new file mode 100644 index 000000000..a68cd2392 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698235.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698243.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698243.jpeg new file mode 100644 index 000000000..aac2cef6b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698243.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698260.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698260.jpeg new file mode 100644 index 000000000..c97b08d8f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698260.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698268.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698268.jpeg new file mode 100644 index 000000000..08fa2225c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698268.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698277.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698277.jpeg new file mode 100644 index 000000000..32f1e1819 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698277.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698293.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698293.jpeg new file mode 100644 index 000000000..b21f809d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698293.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698298.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698298.jpeg new file mode 100644 index 000000000..2de13023d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698298.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698306.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698306.jpeg new file mode 100644 index 000000000..2de13023d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698306.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698322.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698322.jpeg new file mode 100644 index 000000000..d5a215967 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698322.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698330.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698330.jpeg new file mode 100644 index 000000000..b448e7676 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698330.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698339.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698339.jpeg new file mode 100644 index 000000000..cb07b211f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698339.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698347.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698347.jpeg new file mode 100644 index 000000000..cb07b211f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698347.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698364.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698364.jpeg new file mode 100644 index 000000000..0657eb756 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698364.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698372.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698372.jpeg new file mode 100644 index 000000000..4a9ca205f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698372.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698381.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698381.jpeg new file mode 100644 index 000000000..02f01b1d5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698381.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698398.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698398.jpeg new file mode 100644 index 000000000..7f5c3f846 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698398.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698406.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698406.jpeg new file mode 100644 index 000000000..faf52ab5a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698406.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698416.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698416.jpeg new file mode 100644 index 000000000..fbbba4dfa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698416.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698425.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698425.jpeg new file mode 100644 index 000000000..c565dfdc8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698425.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698434.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698434.jpeg new file mode 100644 index 000000000..bf9b3dc49 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698434.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698443.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698443.jpeg new file mode 100644 index 000000000..f30d5b677 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698443.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698460.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698460.jpeg new file mode 100644 index 000000000..efc58e836 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698460.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698668.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698668.jpeg new file mode 100644 index 000000000..dc42f71bb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698668.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698784.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698784.jpeg new file mode 100644 index 000000000..ab71f8d04 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698784.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698793.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698793.jpeg new file mode 100644 index 000000000..bee79aca3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698793.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698802.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698802.jpeg new file mode 100644 index 000000000..0838de402 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698802.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698812.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698812.jpeg new file mode 100644 index 000000000..1ba4f0892 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698812.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698827.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698827.jpeg new file mode 100644 index 000000000..f4f612b24 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698827.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698836.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698836.jpeg new file mode 100644 index 000000000..eab5178c1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698836.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698844.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698844.jpeg new file mode 100644 index 000000000..6da486257 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698844.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698853.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698853.jpeg new file mode 100644 index 000000000..8df18ab68 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698853.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698869.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698869.jpeg new file mode 100644 index 000000000..15f098073 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698869.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698877.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698877.jpeg new file mode 100644 index 000000000..ca9b3ea78 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698877.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698886.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698886.jpeg new file mode 100644 index 000000000..56c9e6ade Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698886.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698894.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698894.jpeg new file mode 100644 index 000000000..f670aa241 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698894.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698940.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698940.jpeg new file mode 100644 index 000000000..31f7e6a07 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698940.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698951.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698951.jpeg new file mode 100644 index 000000000..28d20456f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698951.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698958.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698958.jpeg new file mode 100644 index 000000000..5bdba4eb5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698958.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698966.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698966.jpeg new file mode 100644 index 000000000..36962e524 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698966.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698982.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698982.jpeg new file mode 100644 index 000000000..2c74c3039 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698982.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698990.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698990.jpeg new file mode 100644 index 000000000..0e99b9ca3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698990.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698998.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698998.jpeg new file mode 100644 index 000000000..29c74c56f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630698998.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699015.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699015.jpeg new file mode 100644 index 000000000..a02157e0c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699015.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699023.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699023.jpeg new file mode 100644 index 000000000..41d57fc27 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699023.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699032.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699032.jpeg new file mode 100644 index 000000000..d1d3c5e2f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699032.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699040.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699040.jpeg new file mode 100644 index 000000000..66aafb86b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699040.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699057.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699057.jpeg new file mode 100644 index 000000000..5753e4f25 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699057.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699065.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699065.jpeg new file mode 100644 index 000000000..65adcced8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699065.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699073.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699073.jpeg new file mode 100644 index 000000000..fe01738c1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699073.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699090.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699090.jpeg new file mode 100644 index 000000000..934e283f6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699090.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699098.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699098.jpeg new file mode 100644 index 000000000..cec876ae2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699098.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699107.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699107.jpeg new file mode 100644 index 000000000..0538b1984 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699107.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699115.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699115.jpeg new file mode 100644 index 000000000..f2a36f0d7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699115.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699131.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699131.jpeg new file mode 100644 index 000000000..eca7ce2bc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699131.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699140.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699140.jpeg new file mode 100644 index 000000000..9d3ecb1d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699140.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699148.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699148.jpeg new file mode 100644 index 000000000..daed010a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699148.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699156.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699156.jpeg new file mode 100644 index 000000000..a3444b268 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699156.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699173.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699173.jpeg new file mode 100644 index 000000000..a039c7da4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699173.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699181.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699181.jpeg new file mode 100644 index 000000000..2e25d46e4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699181.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699190.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699190.jpeg new file mode 100644 index 000000000..53775d47e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699190.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699198.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699198.jpeg new file mode 100644 index 000000000..16404463e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699198.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699214.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699214.jpeg new file mode 100644 index 000000000..3cd166ed5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699214.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699223.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699223.jpeg new file mode 100644 index 000000000..44abd1a0f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699223.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699231.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699231.jpeg new file mode 100644 index 000000000..18b82387a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699231.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699247.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699247.jpeg new file mode 100644 index 000000000..d41d1e421 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699247.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699256.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699256.jpeg new file mode 100644 index 000000000..6f2ba689f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699256.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699265.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699265.jpeg new file mode 100644 index 000000000..653e13461 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699265.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699273.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699273.jpeg new file mode 100644 index 000000000..55fb698e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699273.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699286.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699286.jpeg new file mode 100644 index 000000000..55a767112 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699286.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699294.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699294.jpeg new file mode 100644 index 000000000..69147bdb4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699294.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699302.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699302.jpeg new file mode 100644 index 000000000..4b985f2a3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699302.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699310.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699310.jpeg new file mode 100644 index 000000000..2675df501 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699310.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699327.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699327.jpeg new file mode 100644 index 000000000..8be8136ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699327.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699335.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699335.jpeg new file mode 100644 index 000000000..b11e6d0bf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699335.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699343.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699343.jpeg new file mode 100644 index 000000000..26341c235 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699343.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699352.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699352.jpeg new file mode 100644 index 000000000..3dc6b3290 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699352.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699368.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699368.jpeg new file mode 100644 index 000000000..62c180a7e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699368.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699377.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699377.jpeg new file mode 100644 index 000000000..4cf7ac363 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699377.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699385.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699385.jpeg new file mode 100644 index 000000000..2a8128815 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699385.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699394.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699394.jpeg new file mode 100644 index 000000000..47315d4c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699394.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699410.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699410.jpeg new file mode 100644 index 000000000..2db1eeebc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699410.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699419.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699419.jpeg new file mode 100644 index 000000000..c4620174a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699419.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699427.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699427.jpeg new file mode 100644 index 000000000..d173d2820 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699427.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699443.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699443.jpeg new file mode 100644 index 000000000..94a8bd37a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699443.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699452.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699452.jpeg new file mode 100644 index 000000000..254acae96 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699452.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699460.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699460.jpeg new file mode 100644 index 000000000..b57a65b9f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699460.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699477.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699477.jpeg new file mode 100644 index 000000000..fb32b4ee4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699477.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699687.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699687.jpeg new file mode 100644 index 000000000..791a20775 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699687.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699793.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699793.jpeg new file mode 100644 index 000000000..4d0fe1a8d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699793.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699802.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699802.jpeg new file mode 100644 index 000000000..f57ec3226 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699802.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699822.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699822.jpeg new file mode 100644 index 000000000..39aa9e2c1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699822.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699832.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699832.jpeg new file mode 100644 index 000000000..091cefdc2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699832.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699838.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699838.jpeg new file mode 100644 index 000000000..5f1bdd3f9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699838.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699844.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699844.jpeg new file mode 100644 index 000000000..59cfb8a41 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699844.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699860.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699860.jpeg new file mode 100644 index 000000000..0bc67c8d7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699860.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699868.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699868.jpeg new file mode 100644 index 000000000..50dd243e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699868.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699876.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699876.jpeg new file mode 100644 index 000000000..e2abcb379 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699876.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699885.jpeg new file mode 100644 index 000000000..ae00e545e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699901.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699901.jpeg new file mode 100644 index 000000000..53f7abcff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699901.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699910.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699910.jpeg new file mode 100644 index 000000000..a21588671 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699910.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699918.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699918.jpeg new file mode 100644 index 000000000..36418de12 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699918.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699927.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699927.jpeg new file mode 100644 index 000000000..c9c57ecbd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699927.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699943.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699943.jpeg new file mode 100644 index 000000000..b4e3f3336 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699943.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699952.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699952.jpeg new file mode 100644 index 000000000..1ed0365ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699952.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699960.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699960.jpeg new file mode 100644 index 000000000..cc731fb50 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699960.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699968.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699968.jpeg new file mode 100644 index 000000000..9bfd7c780 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699968.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699985.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699985.jpeg new file mode 100644 index 000000000..91dbe0eee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699985.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699994.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699994.jpeg new file mode 100644 index 000000000..f7410117e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630699994.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700002.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700002.jpeg new file mode 100644 index 000000000..0f094208e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700002.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700019.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700019.jpeg new file mode 100644 index 000000000..75b28f528 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700019.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700027.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700027.jpeg new file mode 100644 index 000000000..847a80637 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700027.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700035.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700035.jpeg new file mode 100644 index 000000000..f56d147e2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700035.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700052.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700052.jpeg new file mode 100644 index 000000000..fa7dac1e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700052.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700091.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700091.jpeg new file mode 100644 index 000000000..b79332f84 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700091.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700092.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700092.jpeg new file mode 100644 index 000000000..89a40f4a2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700092.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700102.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700102.jpeg new file mode 100644 index 000000000..fcc566a27 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700102.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700107.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700107.jpeg new file mode 100644 index 000000000..fae8bfc29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700107.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700114.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700114.jpeg new file mode 100644 index 000000000..14ae053c8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700114.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700131.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700131.jpeg new file mode 100644 index 000000000..7ec36e937 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700131.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700139.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700139.jpeg new file mode 100644 index 000000000..96ac0aa90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700139.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700148.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700148.jpeg new file mode 100644 index 000000000..a449aa29f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700148.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700164.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700164.jpeg new file mode 100644 index 000000000..5575a7f1a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700164.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700172.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700172.jpeg new file mode 100644 index 000000000..7c5480034 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700172.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700181.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700181.jpeg new file mode 100644 index 000000000..6d6a0338d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700181.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700198.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700198.jpeg new file mode 100644 index 000000000..9129b3c55 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700198.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700206.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700206.jpeg new file mode 100644 index 000000000..8afc6e9fe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700206.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700214.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700214.jpeg new file mode 100644 index 000000000..26110124e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700214.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700223.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700223.jpeg new file mode 100644 index 000000000..adbb04f27 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700223.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700239.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700239.jpeg new file mode 100644 index 000000000..d2fa9c29d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700239.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700248.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700248.jpeg new file mode 100644 index 000000000..0e4ce358c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700248.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700256.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700256.jpeg new file mode 100644 index 000000000..f0d240deb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700256.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700273.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700273.jpeg new file mode 100644 index 000000000..f8ba675d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700273.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700281.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700281.jpeg new file mode 100644 index 000000000..d7eebd4f7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700281.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700289.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700289.jpeg new file mode 100644 index 000000000..dc52b702c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700289.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700297.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700297.jpeg new file mode 100644 index 000000000..82aa1a1e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700297.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700314.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700314.jpeg new file mode 100644 index 000000000..905146051 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700314.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700322.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700322.jpeg new file mode 100644 index 000000000..b82f0a0f7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700322.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700331.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700331.jpeg new file mode 100644 index 000000000..3f30dadef Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700331.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700347.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700347.jpeg new file mode 100644 index 000000000..895133ff6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700347.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700356.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700356.jpeg new file mode 100644 index 000000000..541f27ce3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700356.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700364.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700364.jpeg new file mode 100644 index 000000000..5e0931779 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700364.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700381.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700381.jpeg new file mode 100644 index 000000000..bedc67e21 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700381.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700389.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700389.jpeg new file mode 100644 index 000000000..2229c29e2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700389.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700397.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700397.jpeg new file mode 100644 index 000000000..b40176808 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700397.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700415.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700415.jpeg new file mode 100644 index 000000000..38bfd5547 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700415.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700423.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700423.jpeg new file mode 100644 index 000000000..18898cbbf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700423.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700430.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700430.jpeg new file mode 100644 index 000000000..deb0109d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700430.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700439.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700439.jpeg new file mode 100644 index 000000000..494a8c1cb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700439.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700452.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700452.jpeg new file mode 100644 index 000000000..9d1e59cf7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700452.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700460.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700460.jpeg new file mode 100644 index 000000000..ae122baa1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700460.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700468.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700468.jpeg new file mode 100644 index 000000000..0c4081392 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700468.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700476.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700476.jpeg new file mode 100644 index 000000000..7285e687e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700476.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700493.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700493.jpeg new file mode 100644 index 000000000..da8c6a040 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700493.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700501.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700501.jpeg new file mode 100644 index 000000000..c7bc94ae9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700501.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700510.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700510.jpeg new file mode 100644 index 000000000..4e2356968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700510.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700518.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700518.jpeg new file mode 100644 index 000000000..e609de117 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700518.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700535.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700535.jpeg new file mode 100644 index 000000000..e55ada220 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700535.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700543.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700543.jpeg new file mode 100644 index 000000000..d46324cdf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700543.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700551.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700551.jpeg new file mode 100644 index 000000000..b80ceff32 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700551.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700560.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700560.jpeg new file mode 100644 index 000000000..0ef5d65ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700560.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700577.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700577.jpeg new file mode 100644 index 000000000..a3f5a29ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700577.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700585.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700585.jpeg new file mode 100644 index 000000000..54acb6f7f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700585.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700593.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700593.jpeg new file mode 100644 index 000000000..7f2a3e0cd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700593.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700801.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700801.jpeg new file mode 100644 index 000000000..a36cd319d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700801.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700918.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700918.jpeg new file mode 100644 index 000000000..890100d8a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700918.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700927.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700927.jpeg new file mode 100644 index 000000000..1184abf35 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700927.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700944.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700944.jpeg new file mode 100644 index 000000000..17d40188b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700944.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700951.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700951.jpeg new file mode 100644 index 000000000..0051b3839 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700951.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700961.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700961.jpeg new file mode 100644 index 000000000..2c6adf83f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700961.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700979.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700979.jpeg new file mode 100644 index 000000000..5f374b563 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700979.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700986.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700986.jpeg new file mode 100644 index 000000000..d78912969 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700986.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700994.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700994.jpeg new file mode 100644 index 000000000..7f6b80a5c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630700994.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701003.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701003.jpeg new file mode 100644 index 000000000..5d1d31588 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701003.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701019.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701019.jpeg new file mode 100644 index 000000000..9af877a36 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701019.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701028.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701028.jpeg new file mode 100644 index 000000000..e80bd1c9a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701028.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701037.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701037.jpeg new file mode 100644 index 000000000..706fd885a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701037.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701045.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701045.jpeg new file mode 100644 index 000000000..be8415258 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701045.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701061.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701061.jpeg new file mode 100644 index 000000000..742847fd7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701061.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701070.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701070.jpeg new file mode 100644 index 000000000..2908ffae3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701070.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701077.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701077.jpeg new file mode 100644 index 000000000..a228c3648 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701077.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701086.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701086.jpeg new file mode 100644 index 000000000..8e5452b6e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701086.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701103.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701103.jpeg new file mode 100644 index 000000000..667fed4d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701103.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701112.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701112.jpeg new file mode 100644 index 000000000..70279cf32 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701112.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701120.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701120.jpeg new file mode 100644 index 000000000..0823244f3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701120.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701129.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701129.jpeg new file mode 100644 index 000000000..d46f2a633 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701129.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701144.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701144.jpeg new file mode 100644 index 000000000..6a5bdfedb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701144.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701152.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701152.jpeg new file mode 100644 index 000000000..1d089a80c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701152.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701161.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701161.jpeg new file mode 100644 index 000000000..255695ec9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701161.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701169.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701169.jpeg new file mode 100644 index 000000000..d08d7a5bd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701169.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701186.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701186.jpeg new file mode 100644 index 000000000..ba947b5b0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701186.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701194.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701194.jpeg new file mode 100644 index 000000000..1c119bf83 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701194.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701203.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701203.jpeg new file mode 100644 index 000000000..8d836be8e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701203.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701211.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701211.jpeg new file mode 100644 index 000000000..9ee3c2c6d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701211.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701227.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701227.jpeg new file mode 100644 index 000000000..b81f3cdd1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701227.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701236.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701236.jpeg new file mode 100644 index 000000000..0aec9f6b6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701236.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701244.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701244.jpeg new file mode 100644 index 000000000..71b495032 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701244.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701252.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701252.jpeg new file mode 100644 index 000000000..43cead96b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701252.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701269.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701269.jpeg new file mode 100644 index 000000000..eff40b365 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701269.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701277.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701277.jpeg new file mode 100644 index 000000000..734234a24 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701277.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701286.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701286.jpeg new file mode 100644 index 000000000..4fc1233e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701286.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701302.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701302.jpeg new file mode 100644 index 000000000..442de0bf9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701302.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701311.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701311.jpeg new file mode 100644 index 000000000..b7a1c41e7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701311.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701319.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701319.jpeg new file mode 100644 index 000000000..7949665b9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701319.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701327.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701327.jpeg new file mode 100644 index 000000000..0e0dfab32 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701327.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701344.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701344.jpeg new file mode 100644 index 000000000..87b433fec Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701344.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701352.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701352.jpeg new file mode 100644 index 000000000..152e850b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701352.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701361.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701361.jpeg new file mode 100644 index 000000000..d1c4ee89a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701361.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701377.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701377.jpeg new file mode 100644 index 000000000..8d6090035 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701377.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701386.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701386.jpeg new file mode 100644 index 000000000..4dbc6bf9c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701386.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701394.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701394.jpeg new file mode 100644 index 000000000..115e0f31c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701394.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701411.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701411.jpeg new file mode 100644 index 000000000..ff1acc906 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701411.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701419.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701419.jpeg new file mode 100644 index 000000000..f7057adf0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701419.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701427.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701427.jpeg new file mode 100644 index 000000000..0d062eac3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701427.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701444.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701444.jpeg new file mode 100644 index 000000000..7a21f0605 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701444.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701452.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701452.jpeg new file mode 100644 index 000000000..7c4dc612e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701452.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701461.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701461.jpeg new file mode 100644 index 000000000..c3132cf37 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701461.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701469.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701469.jpeg new file mode 100644 index 000000000..9dc838300 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701469.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701486.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701486.jpeg new file mode 100644 index 000000000..520e59ba9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701486.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701494.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701494.jpeg new file mode 100644 index 000000000..063016d5a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701494.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701502.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701502.jpeg new file mode 100644 index 000000000..a29d6364f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701502.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701519.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701519.jpeg new file mode 100644 index 000000000..9b0e74d05 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701519.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701527.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701527.jpeg new file mode 100644 index 000000000..68ebc608e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701527.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701536.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701536.jpeg new file mode 100644 index 000000000..e95fce31d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701536.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701553.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701553.jpeg new file mode 100644 index 000000000..050925521 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701553.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701768.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701768.jpeg new file mode 100644 index 000000000..41dcb54ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701768.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701969.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701969.jpeg new file mode 100644 index 000000000..b95993a04 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630701969.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702177.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702177.jpeg new file mode 100644 index 000000000..9b3737900 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702177.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702394.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702394.jpeg new file mode 100644 index 000000000..f23e71c85 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702394.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702611.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702611.jpeg new file mode 100644 index 000000000..9b3a9d6fc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702611.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702811.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702811.jpeg new file mode 100644 index 000000000..9404ac964 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630702811.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630703019.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630703019.jpeg new file mode 100644 index 000000000..f9a906527 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630703019.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630703167.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630703167.jpeg new file mode 100644 index 000000000..af828a6a0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630703167.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630703175.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630703175.jpeg new file mode 100644 index 000000000..711f271cc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@23129ddb9bc37fd187315b2487d86bb6-1784630703175.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704112.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704112.jpeg new file mode 100644 index 000000000..5bd8cdbe4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704112.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704167.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704167.jpeg new file mode 100644 index 000000000..7fa91217f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704167.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704176.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704176.jpeg new file mode 100644 index 000000000..489e03802 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704176.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704186.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704186.jpeg new file mode 100644 index 000000000..c2cfd4b23 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704186.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704197.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704197.jpeg new file mode 100644 index 000000000..1fc2828da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704197.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704207.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704207.jpeg new file mode 100644 index 000000000..839f8b247 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704207.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704216.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704216.jpeg new file mode 100644 index 000000000..e2371777a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704216.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704226.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704226.jpeg new file mode 100644 index 000000000..23d4420ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704226.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704270.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704270.jpeg new file mode 100644 index 000000000..c5003f3c7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704270.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704272.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704272.jpeg new file mode 100644 index 000000000..99c834c4c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704272.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704289.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704289.jpeg new file mode 100644 index 000000000..772b1c644 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704289.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704298.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704298.jpeg new file mode 100644 index 000000000..b0c1f7266 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704298.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704307.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704307.jpeg new file mode 100644 index 000000000..761357459 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704307.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704352.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704352.jpeg new file mode 100644 index 000000000..8471306ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704352.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704362.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704362.jpeg new file mode 100644 index 000000000..743ba225a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704362.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704378.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704378.jpeg new file mode 100644 index 000000000..e1029a847 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704378.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704388.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704388.jpeg new file mode 100644 index 000000000..f19a871c8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704388.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704397.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704397.jpeg new file mode 100644 index 000000000..ae25e94da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704397.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704407.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704407.jpeg new file mode 100644 index 000000000..ca66504aa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704407.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704416.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704416.jpeg new file mode 100644 index 000000000..47256d6cb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704416.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704433.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704433.jpeg new file mode 100644 index 000000000..4eda16c39 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704433.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704442.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704442.jpeg new file mode 100644 index 000000000..9efc8357b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704442.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704452.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704452.jpeg new file mode 100644 index 000000000..edc26c064 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704452.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704461.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704461.jpeg new file mode 100644 index 000000000..0ef7db415 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704461.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704478.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704478.jpeg new file mode 100644 index 000000000..67665b756 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704478.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704491.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704491.jpeg new file mode 100644 index 000000000..a8736d403 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704491.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704500.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704500.jpeg new file mode 100644 index 000000000..5457c03c2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704500.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704515.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704515.jpeg new file mode 100644 index 000000000..3782bf52c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704515.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704520.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704520.jpeg new file mode 100644 index 000000000..0137904e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704520.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704528.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704528.jpeg new file mode 100644 index 000000000..234c1fc10 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704528.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704655.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704655.jpeg new file mode 100644 index 000000000..3b00236e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704655.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704663.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704663.jpeg new file mode 100644 index 000000000..3d48ce7fa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704663.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704700.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704700.jpeg new file mode 100644 index 000000000..017e864a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704700.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704702.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704702.jpeg new file mode 100644 index 000000000..3a1519447 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704702.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704712.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704712.jpeg new file mode 100644 index 000000000..3a1519447 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704712.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704727.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704727.jpeg new file mode 100644 index 000000000..3a1519447 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704727.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704742.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704742.jpeg new file mode 100644 index 000000000..3a1519447 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704742.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704751.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704751.jpeg new file mode 100644 index 000000000..3a1519447 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704751.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704768.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704768.jpeg new file mode 100644 index 000000000..6ac360148 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704768.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704792.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704792.jpeg new file mode 100644 index 000000000..e57555f69 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704792.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704812.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704812.jpeg new file mode 100644 index 000000000..b4df0e66e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704812.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704831.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704831.jpeg new file mode 100644 index 000000000..0a5acb824 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704831.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704852.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704852.jpeg new file mode 100644 index 000000000..72e19c576 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704852.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704872.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704872.jpeg new file mode 100644 index 000000000..6dd0460dc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704872.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704893.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704893.jpeg new file mode 100644 index 000000000..ec68733e4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704893.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704914.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704914.jpeg new file mode 100644 index 000000000..f84fe6216 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704914.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704935.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704935.jpeg new file mode 100644 index 000000000..3cef19219 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704935.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704957.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704957.jpeg new file mode 100644 index 000000000..d2fb14f39 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704957.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704979.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704979.jpeg new file mode 100644 index 000000000..788aa5668 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630704979.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705000.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705000.jpeg new file mode 100644 index 000000000..9e044aac5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705000.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705021.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705021.jpeg new file mode 100644 index 000000000..d97c38b93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705021.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705044.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705044.jpeg new file mode 100644 index 000000000..4565da5b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705044.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705065.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705065.jpeg new file mode 100644 index 000000000..027c0ca26 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705065.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705087.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705087.jpeg new file mode 100644 index 000000000..2d6bb2b52 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705087.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705105.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705105.jpeg new file mode 100644 index 000000000..1d355ca56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705105.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705124.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705124.jpeg new file mode 100644 index 000000000..1d355ca56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705124.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705143.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705143.jpeg new file mode 100644 index 000000000..1d355ca56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705143.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705162.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705162.jpeg new file mode 100644 index 000000000..1d355ca56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705162.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705180.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705180.jpeg new file mode 100644 index 000000000..1d355ca56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705180.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705199.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705199.jpeg new file mode 100644 index 000000000..1d355ca56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705199.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705219.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705219.jpeg new file mode 100644 index 000000000..aebc19c91 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705219.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705239.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705239.jpeg new file mode 100644 index 000000000..aa50caffb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705239.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705258.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705258.jpeg new file mode 100644 index 000000000..b170810df Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705258.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705287.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705287.jpeg new file mode 100644 index 000000000..1fb6e85fa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705287.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705298.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705298.jpeg new file mode 100644 index 000000000..3a22e3f1d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705298.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705318.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705318.jpeg new file mode 100644 index 000000000..b2a1eff60 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705318.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705321.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705321.jpeg new file mode 100644 index 000000000..032a3e899 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705321.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705327.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705327.jpeg new file mode 100644 index 000000000..608afac0b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705327.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705335.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705335.jpeg new file mode 100644 index 000000000..ebfecdb5c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705335.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705344.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705344.jpeg new file mode 100644 index 000000000..9ebf2e52e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705344.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705361.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705361.jpeg new file mode 100644 index 000000000..392d05929 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705361.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705369.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705369.jpeg new file mode 100644 index 000000000..c99fc4c71 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705369.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705377.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705377.jpeg new file mode 100644 index 000000000..bf918fa16 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705377.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705429.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705429.jpeg new file mode 100644 index 000000000..44fae91da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705429.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705440.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705440.jpeg new file mode 100644 index 000000000..8d1289350 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705440.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705446.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705446.jpeg new file mode 100644 index 000000000..d87de0424 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705446.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705455.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705455.jpeg new file mode 100644 index 000000000..279619d08 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705455.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705471.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705471.jpeg new file mode 100644 index 000000000..6567ec230 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705471.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705481.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705481.jpeg new file mode 100644 index 000000000..ee2527369 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705481.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705490.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705490.jpeg new file mode 100644 index 000000000..bde9709a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705490.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705506.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705506.jpeg new file mode 100644 index 000000000..a44123198 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705506.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705515.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705515.jpeg new file mode 100644 index 000000000..ea98b907a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705515.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705523.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705523.jpeg new file mode 100644 index 000000000..3cdc44612 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705523.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705530.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705530.jpeg new file mode 100644 index 000000000..693bbd2c0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705530.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705547.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705547.jpeg new file mode 100644 index 000000000..0ba5033f5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705547.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705554.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705554.jpeg new file mode 100644 index 000000000..5c0a3ed07 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705554.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705562.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705562.jpeg new file mode 100644 index 000000000..f4225e656 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705562.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705571.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705571.jpeg new file mode 100644 index 000000000..80a7e9301 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705571.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705588.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705588.jpeg new file mode 100644 index 000000000..17a931108 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705588.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705596.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705596.jpeg new file mode 100644 index 000000000..901b2b2e4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705596.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705604.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705604.jpeg new file mode 100644 index 000000000..f6041f613 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705604.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705621.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705621.jpeg new file mode 100644 index 000000000..b64d58cbb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705621.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705629.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705629.jpeg new file mode 100644 index 000000000..015026871 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705629.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705638.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705638.jpeg new file mode 100644 index 000000000..c08f547ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705638.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705654.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705654.jpeg new file mode 100644 index 000000000..3bea17947 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705654.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705662.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705662.jpeg new file mode 100644 index 000000000..eca0e0159 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705662.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705672.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705672.jpeg new file mode 100644 index 000000000..957474da2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705672.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705680.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705680.jpeg new file mode 100644 index 000000000..1291dfe53 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705680.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705695.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705695.jpeg new file mode 100644 index 000000000..cb408ed5f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705695.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705705.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705705.jpeg new file mode 100644 index 000000000..c968e6b90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705705.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705713.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705713.jpeg new file mode 100644 index 000000000..dd9ccb6dd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705713.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705720.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705720.jpeg new file mode 100644 index 000000000..f1e0e9a56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705720.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705738.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705738.jpeg new file mode 100644 index 000000000..229d3f256 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705738.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705746.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705746.jpeg new file mode 100644 index 000000000..e6bf62138 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705746.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705754.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705754.jpeg new file mode 100644 index 000000000..8fe7c4268 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705754.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705770.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705770.jpeg new file mode 100644 index 000000000..409f04f2b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705770.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705777.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705777.jpeg new file mode 100644 index 000000000..d0308bc72 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705777.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705785.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705785.jpeg new file mode 100644 index 000000000..d0308bc72 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705785.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705802.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705802.jpeg new file mode 100644 index 000000000..b9d0343c8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705802.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705810.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705810.jpeg new file mode 100644 index 000000000..b9d0343c8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705810.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705819.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705819.jpeg new file mode 100644 index 000000000..d8909f621 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705819.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705827.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705827.jpeg new file mode 100644 index 000000000..d8909f621 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705827.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705845.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705845.jpeg new file mode 100644 index 000000000..cbc0d7ecb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705845.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705853.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705853.jpeg new file mode 100644 index 000000000..f4e9a4251 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705853.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705863.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705863.jpeg new file mode 100644 index 000000000..2c7348740 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705863.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705880.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705880.jpeg new file mode 100644 index 000000000..4b015c204 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705880.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705889.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705889.jpeg new file mode 100644 index 000000000..f029eec96 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705889.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705898.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705898.jpeg new file mode 100644 index 000000000..4c452db64 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705898.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705915.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705915.jpeg new file mode 100644 index 000000000..90166230c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705915.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705924.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705924.jpeg new file mode 100644 index 000000000..1cbd78a92 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705924.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705932.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705932.jpeg new file mode 100644 index 000000000..91bec5a96 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705932.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705949.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705949.jpeg new file mode 100644 index 000000000..65819a457 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705949.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705958.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705958.jpeg new file mode 100644 index 000000000..bbd0ba54e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705958.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705966.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705966.jpeg new file mode 100644 index 000000000..3ac92046d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705966.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705982.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705982.jpeg new file mode 100644 index 000000000..42bbe3f46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705982.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705990.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705990.jpeg new file mode 100644 index 000000000..ce59e73b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705990.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705999.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705999.jpeg new file mode 100644 index 000000000..a5e6a1920 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630705999.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706007.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706007.jpeg new file mode 100644 index 000000000..bb02aab5a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706007.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706023.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706023.jpeg new file mode 100644 index 000000000..00cf6f4eb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706023.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706032.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706032.jpeg new file mode 100644 index 000000000..d39b1bab7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706032.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706041.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706041.jpeg new file mode 100644 index 000000000..b64cc93cb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706041.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706049.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706049.jpeg new file mode 100644 index 000000000..a3a70171a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706049.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706065.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706065.jpeg new file mode 100644 index 000000000..8472605c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706065.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706073.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706073.jpeg new file mode 100644 index 000000000..2ae99d1bc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706073.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706082.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706082.jpeg new file mode 100644 index 000000000..c63910cc8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706082.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706087.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706087.jpeg new file mode 100644 index 000000000..0dc5dd01f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706087.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706103.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706103.jpeg new file mode 100644 index 000000000..22aa6743b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706103.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706111.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706111.jpeg new file mode 100644 index 000000000..5d79a1cd4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706111.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706120.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706120.jpeg new file mode 100644 index 000000000..87ed2b343 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706120.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706136.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706136.jpeg new file mode 100644 index 000000000..55ab2ae5f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706136.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706145.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706145.jpeg new file mode 100644 index 000000000..a9f69710c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706145.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706154.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706154.jpeg new file mode 100644 index 000000000..5a79b7775 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706154.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706162.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706162.jpeg new file mode 100644 index 000000000..e07aa3b90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706162.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706179.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706179.jpeg new file mode 100644 index 000000000..f1e4f5be6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706179.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706186.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706186.jpeg new file mode 100644 index 000000000..81b6b0cd1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706186.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706195.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706195.jpeg new file mode 100644 index 000000000..ecb5c58fc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706195.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706211.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706211.jpeg new file mode 100644 index 000000000..4ac1000f8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706211.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706219.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706219.jpeg new file mode 100644 index 000000000..845cc7e6c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706219.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706227.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706227.jpeg new file mode 100644 index 000000000..9d37eac42 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706227.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706244.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706244.jpeg new file mode 100644 index 000000000..edb5716b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706244.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706252.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706252.jpeg new file mode 100644 index 000000000..ddf01a9a8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706252.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706260.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706260.jpeg new file mode 100644 index 000000000..1c23eb065 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706260.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706277.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706277.jpeg new file mode 100644 index 000000000..80d569b8d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706277.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706285.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706285.jpeg new file mode 100644 index 000000000..cad8fac1d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706285.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706294.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706294.jpeg new file mode 100644 index 000000000..8862b2b7f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706294.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706302.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706302.jpeg new file mode 100644 index 000000000..fef9cf062 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706302.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706354.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706354.jpeg new file mode 100644 index 000000000..200036a4c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706354.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706365.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706365.jpeg new file mode 100644 index 000000000..38d405dce Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706365.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706372.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706372.jpeg new file mode 100644 index 000000000..6408fdb61 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706372.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706380.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706380.jpeg new file mode 100644 index 000000000..d3c89aa27 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706380.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706389.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706389.jpeg new file mode 100644 index 000000000..afd080d82 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706389.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706406.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706406.jpeg new file mode 100644 index 000000000..b15532939 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706406.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706414.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706414.jpeg new file mode 100644 index 000000000..1d954b0ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706414.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706422.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706422.jpeg new file mode 100644 index 000000000..56dddfd16 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706422.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706431.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706431.jpeg new file mode 100644 index 000000000..07f8326e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706431.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706447.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706447.jpeg new file mode 100644 index 000000000..e02f74a6a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706447.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706456.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706456.jpeg new file mode 100644 index 000000000..785795460 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706456.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706464.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706464.jpeg new file mode 100644 index 000000000..14421e6ef Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706464.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706472.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706472.jpeg new file mode 100644 index 000000000..d9324142a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706472.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706489.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706489.jpeg new file mode 100644 index 000000000..4006f0d84 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706489.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706497.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706497.jpeg new file mode 100644 index 000000000..f81a20130 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706497.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706506.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706506.jpeg new file mode 100644 index 000000000..d25cb3312 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706506.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706514.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706514.jpeg new file mode 100644 index 000000000..7ed1d669d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706514.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706530.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706530.jpeg new file mode 100644 index 000000000..dfd91380a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706530.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706539.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706539.jpeg new file mode 100644 index 000000000..fd4762fe1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706539.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706547.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706547.jpeg new file mode 100644 index 000000000..eb037af79 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706547.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706564.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706564.jpeg new file mode 100644 index 000000000..86c0d950f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706564.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706572.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706572.jpeg new file mode 100644 index 000000000..f330f50e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706572.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706581.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706581.jpeg new file mode 100644 index 000000000..be7e0e147 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706581.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706598.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706598.jpeg new file mode 100644 index 000000000..078bd0b7a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706598.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706606.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706606.jpeg new file mode 100644 index 000000000..b4765366c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706606.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706614.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706614.jpeg new file mode 100644 index 000000000..3d980ff71 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706614.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706630.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706630.jpeg new file mode 100644 index 000000000..438f36424 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706630.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706639.jpeg new file mode 100644 index 000000000..ca12ef951 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706647.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706647.jpeg new file mode 100644 index 000000000..1d4c51b76 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706647.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706656.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706656.jpeg new file mode 100644 index 000000000..b6bbd8ab2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706656.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706672.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706672.jpeg new file mode 100644 index 000000000..f28eb7d09 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706672.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706680.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706680.jpeg new file mode 100644 index 000000000..ed4d3aa5f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706680.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706689.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706689.jpeg new file mode 100644 index 000000000..11abdcfa3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706689.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706694.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706694.jpeg new file mode 100644 index 000000000..a9c132567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706694.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706710.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706710.jpeg new file mode 100644 index 000000000..a9c132567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706710.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706718.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706718.jpeg new file mode 100644 index 000000000..a9c132567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706718.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706726.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706726.jpeg new file mode 100644 index 000000000..a9c132567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706726.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706735.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706735.jpeg new file mode 100644 index 000000000..a9c132567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706735.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706751.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706751.jpeg new file mode 100644 index 000000000..a9c132567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706751.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706760.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706760.jpeg new file mode 100644 index 000000000..a9c132567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706760.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706768.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706768.jpeg new file mode 100644 index 000000000..fe28fe14c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706768.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706776.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706776.jpeg new file mode 100644 index 000000000..fe28fe14c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706776.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706793.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706793.jpeg new file mode 100644 index 000000000..cd142ce79 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706793.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706802.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706802.jpeg new file mode 100644 index 000000000..cd142ce79 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706802.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706810.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706810.jpeg new file mode 100644 index 000000000..df1a0397b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706810.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706818.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706818.jpeg new file mode 100644 index 000000000..df1a0397b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706818.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706834.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706834.jpeg new file mode 100644 index 000000000..3e4ea164e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706834.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706843.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706843.jpeg new file mode 100644 index 000000000..80e0b1b2e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706843.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706851.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706851.jpeg new file mode 100644 index 000000000..a512ff40b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706851.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706860.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706860.jpeg new file mode 100644 index 000000000..a512ff40b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630706860.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707077.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707077.jpeg new file mode 100644 index 000000000..00a8e2e9e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707077.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707193.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707193.jpeg new file mode 100644 index 000000000..9a7e26bd3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707193.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707202.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707202.jpeg new file mode 100644 index 000000000..0c9e1744c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707202.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707211.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707211.jpeg new file mode 100644 index 000000000..4899191c0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707211.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707228.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707228.jpeg new file mode 100644 index 000000000..8e4903428 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707228.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707236.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707236.jpeg new file mode 100644 index 000000000..77e3f6dcd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707236.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707245.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707245.jpeg new file mode 100644 index 000000000..aa4c33995 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707245.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707261.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707261.jpeg new file mode 100644 index 000000000..fb0da4680 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707261.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707269.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707269.jpeg new file mode 100644 index 000000000..8d100011a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707269.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707277.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707277.jpeg new file mode 100644 index 000000000..bb3bb31f5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707277.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707286.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707286.jpeg new file mode 100644 index 000000000..7b8c3de6a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707286.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707302.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707302.jpeg new file mode 100644 index 000000000..488b28efb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707302.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707340.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707340.jpeg new file mode 100644 index 000000000..88731eda1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707340.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707351.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707351.jpeg new file mode 100644 index 000000000..fd8c93245 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707351.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707357.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707357.jpeg new file mode 100644 index 000000000..63de1b7f1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707357.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707373.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707373.jpeg new file mode 100644 index 000000000..23cf50e53 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707373.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707382.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707382.jpeg new file mode 100644 index 000000000..82a5d4b65 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707382.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707389.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707389.jpeg new file mode 100644 index 000000000..ec5084525 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707389.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707398.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707398.jpeg new file mode 100644 index 000000000..d19e0cb59 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707398.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707415.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707415.jpeg new file mode 100644 index 000000000..5ae6d19d7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707415.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707423.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707423.jpeg new file mode 100644 index 000000000..72509c587 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707423.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707431.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707431.jpeg new file mode 100644 index 000000000..043afa732 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707431.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707440.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707440.jpeg new file mode 100644 index 000000000..744b9f15c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707440.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707456.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707456.jpeg new file mode 100644 index 000000000..152b2dc3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707456.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707465.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707465.jpeg new file mode 100644 index 000000000..50094f8ab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707465.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707473.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707473.jpeg new file mode 100644 index 000000000..697a5eaa0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707473.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707490.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707490.jpeg new file mode 100644 index 000000000..5ff66c60c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707490.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707498.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707498.jpeg new file mode 100644 index 000000000..8a57897ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707498.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707506.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707506.jpeg new file mode 100644 index 000000000..6cdff758f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707506.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707523.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707523.jpeg new file mode 100644 index 000000000..babb20923 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707523.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707531.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707531.jpeg new file mode 100644 index 000000000..1b6f754df Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707531.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707540.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707540.jpeg new file mode 100644 index 000000000..c4fbf8932 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707540.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707556.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707556.jpeg new file mode 100644 index 000000000..9b27d4ca8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707556.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707565.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707565.jpeg new file mode 100644 index 000000000..a1999822e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707565.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707573.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707573.jpeg new file mode 100644 index 000000000..f30e4588b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707573.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707581.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707581.jpeg new file mode 100644 index 000000000..d42d7d2ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707581.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707598.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707598.jpeg new file mode 100644 index 000000000..fffe7bff0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707598.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707606.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707606.jpeg new file mode 100644 index 000000000..362c6fc32 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707606.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707615.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707615.jpeg new file mode 100644 index 000000000..7c075b6dd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707615.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707631.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707631.jpeg new file mode 100644 index 000000000..a7759a2e8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707631.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707639.jpeg new file mode 100644 index 000000000..f34381518 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707648.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707648.jpeg new file mode 100644 index 000000000..bf81bf3c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707648.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707656.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707656.jpeg new file mode 100644 index 000000000..5283eb522 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707656.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707673.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707673.jpeg new file mode 100644 index 000000000..1f623b0ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707673.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707681.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707681.jpeg new file mode 100644 index 000000000..790f54b59 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707681.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707686.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707686.jpeg new file mode 100644 index 000000000..e03274cdc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707686.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707693.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707693.jpeg new file mode 100644 index 000000000..e03274cdc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707693.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707710.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707710.jpeg new file mode 100644 index 000000000..e03274cdc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707710.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707718.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707718.jpeg new file mode 100644 index 000000000..e03274cdc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707718.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707726.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707726.jpeg new file mode 100644 index 000000000..e03274cdc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707726.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707735.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707735.jpeg new file mode 100644 index 000000000..e03274cdc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707735.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707753.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707753.jpeg new file mode 100644 index 000000000..6f86fddd7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707753.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707760.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707760.jpeg new file mode 100644 index 000000000..6f86fddd7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707760.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707769.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707769.jpeg new file mode 100644 index 000000000..6f86fddd7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707769.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707785.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707785.jpeg new file mode 100644 index 000000000..76f64db74 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707785.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707793.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707793.jpeg new file mode 100644 index 000000000..76f64db74 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707793.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707801.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707801.jpeg new file mode 100644 index 000000000..773bbfec5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707801.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707818.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707818.jpeg new file mode 100644 index 000000000..4c0ee03f4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707818.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707827.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707827.jpeg new file mode 100644 index 000000000..4c0ee03f4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707827.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707835.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707835.jpeg new file mode 100644 index 000000000..35ec6c458 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707835.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707852.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707852.jpeg new file mode 100644 index 000000000..7fcff5dc5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707852.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707860.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707860.jpeg new file mode 100644 index 000000000..e350b72db Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707860.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707868.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707868.jpeg new file mode 100644 index 000000000..d67ab0b93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707868.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707885.jpeg new file mode 100644 index 000000000..7924b75d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630707885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708093.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708093.jpeg new file mode 100644 index 000000000..515eaff77 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708093.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708194.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708194.jpeg new file mode 100644 index 000000000..7896b8664 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708194.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708201.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708201.jpeg new file mode 100644 index 000000000..4043fc3f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708201.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708210.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708210.jpeg new file mode 100644 index 000000000..1e3c7ef23 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708210.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708219.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708219.jpeg new file mode 100644 index 000000000..80ec8989c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708219.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708236.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708236.jpeg new file mode 100644 index 000000000..ebb3fb74a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708236.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708244.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708244.jpeg new file mode 100644 index 000000000..f81e74840 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708244.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708252.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708252.jpeg new file mode 100644 index 000000000..5fe1b0d0e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708252.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708269.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708269.jpeg new file mode 100644 index 000000000..56d7da0fd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708269.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708277.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708277.jpeg new file mode 100644 index 000000000..31bea3b34 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708277.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708285.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708285.jpeg new file mode 100644 index 000000000..ce8158126 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708285.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708302.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708302.jpeg new file mode 100644 index 000000000..1edef053e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708302.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708310.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708310.jpeg new file mode 100644 index 000000000..03f3bcced Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708310.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708319.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708319.jpeg new file mode 100644 index 000000000..f0b89ac5b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708319.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708336.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708336.jpeg new file mode 100644 index 000000000..6fb47c95c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708336.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708343.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708343.jpeg new file mode 100644 index 000000000..7a5be5c53 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708343.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708352.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708352.jpeg new file mode 100644 index 000000000..77e0d3642 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708352.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708369.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708369.jpeg new file mode 100644 index 000000000..025c099b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708369.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708377.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708377.jpeg new file mode 100644 index 000000000..8e5195cad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708377.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708385.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708385.jpeg new file mode 100644 index 000000000..06d73940c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708385.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708394.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708394.jpeg new file mode 100644 index 000000000..da41438b7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708394.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708410.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708410.jpeg new file mode 100644 index 000000000..72be519f4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708410.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708419.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708419.jpeg new file mode 100644 index 000000000..f49c1316a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708419.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708454.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708454.jpeg new file mode 100644 index 000000000..54a405008 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708454.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708456.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708456.jpeg new file mode 100644 index 000000000..fd3dfc9f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708456.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708466.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708466.jpeg new file mode 100644 index 000000000..7b7257b17 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708466.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708473.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708473.jpeg new file mode 100644 index 000000000..808e01938 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708473.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708489.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708489.jpeg new file mode 100644 index 000000000..8c27b9d1e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708489.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708498.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708498.jpeg new file mode 100644 index 000000000..b625bfacc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708498.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708506.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708506.jpeg new file mode 100644 index 000000000..594eef347 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708506.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708523.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708523.jpeg new file mode 100644 index 000000000..1d3b983d6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708523.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708531.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708531.jpeg new file mode 100644 index 000000000..1b20356ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708531.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708540.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708540.jpeg new file mode 100644 index 000000000..3a8236c75 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708540.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708556.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708556.jpeg new file mode 100644 index 000000000..35cab0e5e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708556.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708564.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708564.jpeg new file mode 100644 index 000000000..b11dfdada Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708564.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708572.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708572.jpeg new file mode 100644 index 000000000..3988d67ce Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708572.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708581.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708581.jpeg new file mode 100644 index 000000000..9d3db0fc7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708581.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708598.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708598.jpeg new file mode 100644 index 000000000..7f7e6a5d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708598.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708606.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708606.jpeg new file mode 100644 index 000000000..95f355d4a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708606.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708614.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708614.jpeg new file mode 100644 index 000000000..97dca8603 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708614.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708631.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708631.jpeg new file mode 100644 index 000000000..801598725 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708631.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708639.jpeg new file mode 100644 index 000000000..f5711fa65 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708647.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708647.jpeg new file mode 100644 index 000000000..38fc88547 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708647.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708656.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708656.jpeg new file mode 100644 index 000000000..3a6c0e189 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708656.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708672.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708672.jpeg new file mode 100644 index 000000000..dc4e4a2e3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708672.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708681.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708681.jpeg new file mode 100644 index 000000000..dcee7a573 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708681.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708689.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708689.jpeg new file mode 100644 index 000000000..3a7ab94ea Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708689.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708698.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708698.jpeg new file mode 100644 index 000000000..2057e6595 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708698.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708714.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708714.jpeg new file mode 100644 index 000000000..d61787e3a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708714.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708722.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708722.jpeg new file mode 100644 index 000000000..23ca7773e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708722.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708731.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708731.jpeg new file mode 100644 index 000000000..1bacbaa17 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708731.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708747.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708747.jpeg new file mode 100644 index 000000000..e5e41aad7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708747.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708756.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708756.jpeg new file mode 100644 index 000000000..d09e22727 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708756.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708764.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708764.jpeg new file mode 100644 index 000000000..78486b2aa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708764.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708772.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708772.jpeg new file mode 100644 index 000000000..8d1a23eb1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708772.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708789.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708789.jpeg new file mode 100644 index 000000000..88a3acdcd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708789.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708797.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708797.jpeg new file mode 100644 index 000000000..7d299ca04 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708797.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708803.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708803.jpeg new file mode 100644 index 000000000..4e10c0a0f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708803.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708810.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708810.jpeg new file mode 100644 index 000000000..280a3003b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708810.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708826.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708826.jpeg new file mode 100644 index 000000000..d3469710e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708826.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708835.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708835.jpeg new file mode 100644 index 000000000..d3469710e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708835.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708843.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708843.jpeg new file mode 100644 index 000000000..e6d9675ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708843.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708852.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708852.jpeg new file mode 100644 index 000000000..219d19606 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708852.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708869.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708869.jpeg new file mode 100644 index 000000000..26a9778a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708869.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708877.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708877.jpeg new file mode 100644 index 000000000..e78f6ad68 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708877.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708885.jpeg new file mode 100644 index 000000000..58a30e197 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708894.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708894.jpeg new file mode 100644 index 000000000..2d8eee87b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708894.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708910.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708910.jpeg new file mode 100644 index 000000000..314614741 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708910.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708918.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708918.jpeg new file mode 100644 index 000000000..c24a04a85 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708918.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708926.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708926.jpeg new file mode 100644 index 000000000..e26fc86fd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708926.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708935.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708935.jpeg new file mode 100644 index 000000000..f19a3e3b2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708935.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708951.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708951.jpeg new file mode 100644 index 000000000..b15700f8a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708951.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708960.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708960.jpeg new file mode 100644 index 000000000..a30c104c8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630708960.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709168.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709168.jpeg new file mode 100644 index 000000000..6ddf85762 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709168.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709276.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709276.jpeg new file mode 100644 index 000000000..d7ba8f417 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709276.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709284.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709284.jpeg new file mode 100644 index 000000000..5ba186eb4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709284.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709294.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709294.jpeg new file mode 100644 index 000000000..a3ae72ad7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709294.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709310.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709310.jpeg new file mode 100644 index 000000000..ea927789d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709310.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709319.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709319.jpeg new file mode 100644 index 000000000..cb48d349e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709319.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709327.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709327.jpeg new file mode 100644 index 000000000..b9ed18f2b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709327.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709345.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709345.jpeg new file mode 100644 index 000000000..5742e90ac Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709345.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709352.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709352.jpeg new file mode 100644 index 000000000..8c1913ec8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709352.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709361.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709361.jpeg new file mode 100644 index 000000000..e1005f397 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709361.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709370.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709370.jpeg new file mode 100644 index 000000000..5f4fe1f38 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709370.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709386.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709386.jpeg new file mode 100644 index 000000000..534bedd0d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709386.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709395.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709395.jpeg new file mode 100644 index 000000000..ec936cd9b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709395.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709403.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709403.jpeg new file mode 100644 index 000000000..5b1e98697 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709403.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709411.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709411.jpeg new file mode 100644 index 000000000..74d129f57 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709411.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709428.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709428.jpeg new file mode 100644 index 000000000..1dd3f972e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709428.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709436.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709436.jpeg new file mode 100644 index 000000000..8a639b648 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709436.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709445.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709445.jpeg new file mode 100644 index 000000000..ed966c466 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709445.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709461.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709461.jpeg new file mode 100644 index 000000000..d22150715 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709461.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709469.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709469.jpeg new file mode 100644 index 000000000..9c447ec49 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709469.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709478.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709478.jpeg new file mode 100644 index 000000000..85ced88c6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709478.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709486.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709486.jpeg new file mode 100644 index 000000000..ddacaca6c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709486.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709503.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709503.jpeg new file mode 100644 index 000000000..d3cad0067 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709503.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709511.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709511.jpeg new file mode 100644 index 000000000..e1d5f546f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709511.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709519.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709519.jpeg new file mode 100644 index 000000000..6852e7ccf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709519.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709536.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709536.jpeg new file mode 100644 index 000000000..0c7ca11e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709536.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709543.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709543.jpeg new file mode 100644 index 000000000..1c48684bb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709543.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709552.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709552.jpeg new file mode 100644 index 000000000..72263559b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709552.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709561.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709561.jpeg new file mode 100644 index 000000000..229c3203e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709561.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709577.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709577.jpeg new file mode 100644 index 000000000..b53c4732d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709577.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709586.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709586.jpeg new file mode 100644 index 000000000..0ecd59c45 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709586.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709594.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709594.jpeg new file mode 100644 index 000000000..a376db0d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709594.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709611.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709611.jpeg new file mode 100644 index 000000000..d469419ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709611.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709619.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709619.jpeg new file mode 100644 index 000000000..8848b62f7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709619.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709627.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709627.jpeg new file mode 100644 index 000000000..d44c7558c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709627.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709644.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709644.jpeg new file mode 100644 index 000000000..d7d6f96a9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709644.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709652.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709652.jpeg new file mode 100644 index 000000000..5180f4614 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709652.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709661.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709661.jpeg new file mode 100644 index 000000000..de5d418ec Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709661.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709669.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709669.jpeg new file mode 100644 index 000000000..4a2c5c06c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709669.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709686.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709686.jpeg new file mode 100644 index 000000000..f87f627ba Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709686.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709694.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709694.jpeg new file mode 100644 index 000000000..72c667191 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709694.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709703.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709703.jpeg new file mode 100644 index 000000000..ce5790075 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709703.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709711.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709711.jpeg new file mode 100644 index 000000000..42e010025 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709711.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709728.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709728.jpeg new file mode 100644 index 000000000..c77bfba4d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709728.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709736.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709736.jpeg new file mode 100644 index 000000000..edfc3c18d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709736.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709745.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709745.jpeg new file mode 100644 index 000000000..5abadb171 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709745.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709761.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709761.jpeg new file mode 100644 index 000000000..65fae3f6a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709761.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709770.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709770.jpeg new file mode 100644 index 000000000..f7a4d0368 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709770.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709778.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709778.jpeg new file mode 100644 index 000000000..07c0670ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709778.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709786.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709786.jpeg new file mode 100644 index 000000000..a405f8c5e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709786.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709802.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709802.jpeg new file mode 100644 index 000000000..73b1f557b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709802.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709811.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709811.jpeg new file mode 100644 index 000000000..022c68c86 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709811.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709819.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709819.jpeg new file mode 100644 index 000000000..cf731f66a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709819.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709836.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709836.jpeg new file mode 100644 index 000000000..783b54f5d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709836.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709844.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709844.jpeg new file mode 100644 index 000000000..a9e94581d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709844.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709853.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709853.jpeg new file mode 100644 index 000000000..d23a0fb40 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709853.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709861.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709861.jpeg new file mode 100644 index 000000000..99627aa4e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709861.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709878.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709878.jpeg new file mode 100644 index 000000000..ed589df19 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709878.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709886.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709886.jpeg new file mode 100644 index 000000000..740f35ffa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630709886.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710094.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710094.jpeg new file mode 100644 index 000000000..57532a9e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710094.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710303.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710303.jpeg new file mode 100644 index 000000000..d1a940ade Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710303.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710511.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710511.jpeg new file mode 100644 index 000000000..cd54cb4c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710511.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710716.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710716.jpeg new file mode 100644 index 000000000..de46f31a7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710716.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710923.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710923.jpeg new file mode 100644 index 000000000..fc0080839 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630710923.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711132.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711132.jpeg new file mode 100644 index 000000000..ff570070d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711132.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711349.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711349.jpeg new file mode 100644 index 000000000..fb58306d9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711349.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711500.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711500.jpeg new file mode 100644 index 000000000..371bd5597 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711500.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711507.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711507.jpeg new file mode 100644 index 000000000..dff786109 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@442ebe9c25a81aa564f023f3b02d20f5-1784630711507.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711764.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711764.jpeg new file mode 100644 index 000000000..5bd8cdbe4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711764.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711812.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711812.jpeg new file mode 100644 index 000000000..7fa91217f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711812.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711823.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711823.jpeg new file mode 100644 index 000000000..8013f4750 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711823.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711832.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711832.jpeg new file mode 100644 index 000000000..746df88ab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711832.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711852.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711852.jpeg new file mode 100644 index 000000000..574f6839d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711852.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711887.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711887.jpeg new file mode 100644 index 000000000..4f95146d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711887.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711898.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711898.jpeg new file mode 100644 index 000000000..6c1241edf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711898.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711907.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711907.jpeg new file mode 100644 index 000000000..a702c768b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711907.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711916.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711916.jpeg new file mode 100644 index 000000000..40588770e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711916.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711968.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711968.jpeg new file mode 100644 index 000000000..93aa91ebf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711968.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711978.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711978.jpeg new file mode 100644 index 000000000..3adaac7e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711978.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711987.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711987.jpeg new file mode 100644 index 000000000..1220d83a9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711987.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711997.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711997.jpeg new file mode 100644 index 000000000..f176557de Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630711997.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712006.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712006.jpeg new file mode 100644 index 000000000..ef56f795c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712006.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712017.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712017.jpeg new file mode 100644 index 000000000..6aa43da91 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712017.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712025.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712025.jpeg new file mode 100644 index 000000000..3d3d69196 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712025.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712042.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712042.jpeg new file mode 100644 index 000000000..08dc2d9b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712042.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712050.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712050.jpeg new file mode 100644 index 000000000..9f2bcb03c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712050.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712060.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712060.jpeg new file mode 100644 index 000000000..f72ef02ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712060.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712077.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712077.jpeg new file mode 100644 index 000000000..7b4729ca0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712077.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712086.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712086.jpeg new file mode 100644 index 000000000..1a6abbeb0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712086.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712095.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712095.jpeg new file mode 100644 index 000000000..c5a0df909 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712095.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712104.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712104.jpeg new file mode 100644 index 000000000..ba8e9f269 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712104.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712113.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712113.jpeg new file mode 100644 index 000000000..86654a6f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712113.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712123.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712123.jpeg new file mode 100644 index 000000000..078388f32 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712123.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712132.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712132.jpeg new file mode 100644 index 000000000..8612468e6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712132.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712141.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712141.jpeg new file mode 100644 index 000000000..e66abcd6a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712141.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712157.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712157.jpeg new file mode 100644 index 000000000..1aad7ead5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712157.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712283.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712283.jpeg new file mode 100644 index 000000000..c9615c8a6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712283.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712285.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712285.jpeg new file mode 100644 index 000000000..e679fabf8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712285.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712303.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712303.jpeg new file mode 100644 index 000000000..a4ae99355 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712303.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712314.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712314.jpeg new file mode 100644 index 000000000..98662c8c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712314.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712335.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712335.jpeg new file mode 100644 index 000000000..98662c8c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712335.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712340.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712340.jpeg new file mode 100644 index 000000000..98662c8c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712340.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712347.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712347.jpeg new file mode 100644 index 000000000..98662c8c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712347.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712357.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712357.jpeg new file mode 100644 index 000000000..98662c8c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712357.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712380.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712380.jpeg new file mode 100644 index 000000000..fe1759153 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712380.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712388.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712388.jpeg new file mode 100644 index 000000000..fe1759153 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712388.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712396.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712396.jpeg new file mode 100644 index 000000000..a7e731380 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712396.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712423.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712423.jpeg new file mode 100644 index 000000000..3ef6ea99b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712423.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712448.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712448.jpeg new file mode 100644 index 000000000..decfdbbf0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712448.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712469.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712469.jpeg new file mode 100644 index 000000000..f0665bab5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712469.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712489.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712489.jpeg new file mode 100644 index 000000000..e12f1d703 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712489.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712511.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712511.jpeg new file mode 100644 index 000000000..710ccd38b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712511.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712531.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712531.jpeg new file mode 100644 index 000000000..96a8ca550 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712531.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712553.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712553.jpeg new file mode 100644 index 000000000..720de1166 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712553.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712574.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712574.jpeg new file mode 100644 index 000000000..424012c4b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712574.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712596.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712596.jpeg new file mode 100644 index 000000000..329b1d177 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712596.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712617.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712617.jpeg new file mode 100644 index 000000000..9b4e55270 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712617.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712639.jpeg new file mode 100644 index 000000000..b6ed8e758 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712661.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712661.jpeg new file mode 100644 index 000000000..e3e52a95f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712661.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712682.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712682.jpeg new file mode 100644 index 000000000..59341afa6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712682.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712703.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712703.jpeg new file mode 100644 index 000000000..68c3db928 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712703.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712724.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712724.jpeg new file mode 100644 index 000000000..4fdbf6f56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712724.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712745.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712745.jpeg new file mode 100644 index 000000000..a7f7bfa55 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@5087d7ebeed30296a308e8b80fe89c6f-1784630712745.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670884.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670884.jpeg new file mode 100644 index 000000000..5bd8cdbe4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670884.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670915.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670915.jpeg new file mode 100644 index 000000000..6f4e2099f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670915.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670940.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670940.jpeg new file mode 100644 index 000000000..7fa91217f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670940.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670951.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670951.jpeg new file mode 100644 index 000000000..577b14fe6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670951.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670961.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670961.jpeg new file mode 100644 index 000000000..e04fdc3bc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630670961.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671014.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671014.jpeg new file mode 100644 index 000000000..75c41f2a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671014.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671017.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671017.jpeg new file mode 100644 index 000000000..de90eb612 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671017.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671027.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671027.jpeg new file mode 100644 index 000000000..e48175af7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671027.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671044.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671044.jpeg new file mode 100644 index 000000000..c21add7a5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671044.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671053.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671053.jpeg new file mode 100644 index 000000000..f6d082224 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671053.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671094.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671094.jpeg new file mode 100644 index 000000000..683e7e47d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671094.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671099.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671099.jpeg new file mode 100644 index 000000000..3a78787b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671099.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671108.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671108.jpeg new file mode 100644 index 000000000..a7bf8c1d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671108.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671124.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671124.jpeg new file mode 100644 index 000000000..0ef33e4f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671124.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671134.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671134.jpeg new file mode 100644 index 000000000..29be86e96 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671134.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671143.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671143.jpeg new file mode 100644 index 000000000..246f73583 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671143.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671152.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671152.jpeg new file mode 100644 index 000000000..1b2979c67 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671152.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671161.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671161.jpeg new file mode 100644 index 000000000..273bbe7e9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671161.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671178.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671178.jpeg new file mode 100644 index 000000000..50fa7775e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671178.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671187.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671187.jpeg new file mode 100644 index 000000000..a99af76ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671187.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671196.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671196.jpeg new file mode 100644 index 000000000..21b2d8b39 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671196.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671206.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671206.jpeg new file mode 100644 index 000000000..a5639bad1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671206.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671222.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671222.jpeg new file mode 100644 index 000000000..39c6f84c0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671222.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671231.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671231.jpeg new file mode 100644 index 000000000..cca24af4e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671231.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671240.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671240.jpeg new file mode 100644 index 000000000..63e1135df Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671240.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671257.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671257.jpeg new file mode 100644 index 000000000..c8162504e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671257.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671265.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671265.jpeg new file mode 100644 index 000000000..b633ea59c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671265.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671274.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671274.jpeg new file mode 100644 index 000000000..ab8aea531 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671274.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671283.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671283.jpeg new file mode 100644 index 000000000..56303c8a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671283.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671400.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671400.jpeg new file mode 100644 index 000000000..1a2b2a154 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671400.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671401.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671401.jpeg new file mode 100644 index 000000000..8b26162c5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671401.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671413.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671413.jpeg new file mode 100644 index 000000000..a11a5a5df Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671413.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671419.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671419.jpeg new file mode 100644 index 000000000..fe0af874d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671419.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671453.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671453.jpeg new file mode 100644 index 000000000..eccb33128 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671453.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671468.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671468.jpeg new file mode 100644 index 000000000..326fe6ff0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671468.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671477.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671477.jpeg new file mode 100644 index 000000000..326fe6ff0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671477.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671485.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671485.jpeg new file mode 100644 index 000000000..326fe6ff0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671485.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671500.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671500.jpeg new file mode 100644 index 000000000..326fe6ff0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671500.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671517.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671517.jpeg new file mode 100644 index 000000000..9ab8a5a54 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671517.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671525.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671525.jpeg new file mode 100644 index 000000000..9ab8a5a54 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671525.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671545.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671545.jpeg new file mode 100644 index 000000000..d287c65ab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671545.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671577.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671577.jpeg new file mode 100644 index 000000000..4979db1de Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671577.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671599.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671599.jpeg new file mode 100644 index 000000000..8d2053632 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671599.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671619.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671619.jpeg new file mode 100644 index 000000000..bd54046ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671619.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671640.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671640.jpeg new file mode 100644 index 000000000..5920855e9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671640.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671661.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671661.jpeg new file mode 100644 index 000000000..ac7e63369 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671661.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671682.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671682.jpeg new file mode 100644 index 000000000..58f91b420 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671682.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671703.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671703.jpeg new file mode 100644 index 000000000..a56685f92 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671703.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671724.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671724.jpeg new file mode 100644 index 000000000..1eb819502 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671724.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671745.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671745.jpeg new file mode 100644 index 000000000..cd1e4a183 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671745.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671766.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671766.jpeg new file mode 100644 index 000000000..a9a8b7637 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671766.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671787.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671787.jpeg new file mode 100644 index 000000000..cd74e3c94 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671787.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671808.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671808.jpeg new file mode 100644 index 000000000..5348593e9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671808.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671830.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671830.jpeg new file mode 100644 index 000000000..664704d80 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671830.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671853.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671853.jpeg new file mode 100644 index 000000000..6bf7070fa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671853.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671872.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671872.jpeg new file mode 100644 index 000000000..74fc591ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671872.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671892.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671892.jpeg new file mode 100644 index 000000000..74fc591ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671892.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671913.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671913.jpeg new file mode 100644 index 000000000..74fc591ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671913.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671935.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671935.jpeg new file mode 100644 index 000000000..74fc591ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671935.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671955.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671955.jpeg new file mode 100644 index 000000000..74fc591ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671955.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671975.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671975.jpeg new file mode 100644 index 000000000..74fc591ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671975.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671997.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671997.jpeg new file mode 100644 index 000000000..3929443c2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630671997.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672018.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672018.jpeg new file mode 100644 index 000000000..3929443c2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672018.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672045.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672045.jpeg new file mode 100644 index 000000000..6f7f55cee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672045.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672061.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672061.jpeg new file mode 100644 index 000000000..6f7f55cee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672061.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672083.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672083.jpeg new file mode 100644 index 000000000..6cad2ddf5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672083.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672104.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672104.jpeg new file mode 100644 index 000000000..abf2e2b3f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672104.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672107.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672107.jpeg new file mode 100644 index 000000000..3a6134b5a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672107.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672111.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672111.jpeg new file mode 100644 index 000000000..8b4bd0118 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672111.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672121.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672121.jpeg new file mode 100644 index 000000000..a702d20ce Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672121.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672137.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672137.jpeg new file mode 100644 index 000000000..655543d3d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672137.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672146.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672146.jpeg new file mode 100644 index 000000000..c245450c7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672146.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672153.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672153.jpeg new file mode 100644 index 000000000..41c487259 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672153.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672195.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672195.jpeg new file mode 100644 index 000000000..83a3ce825 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672195.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672208.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672208.jpeg new file mode 100644 index 000000000..38377de1a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672208.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672212.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672212.jpeg new file mode 100644 index 000000000..671dd220a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672212.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672221.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672221.jpeg new file mode 100644 index 000000000..605a160db Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672221.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672237.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672237.jpeg new file mode 100644 index 000000000..5a78e86e7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672237.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672245.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672245.jpeg new file mode 100644 index 000000000..b0787da3b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672245.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672253.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672253.jpeg new file mode 100644 index 000000000..0be83bb9f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672253.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672262.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672262.jpeg new file mode 100644 index 000000000..f43c5c386 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672262.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672279.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672279.jpeg new file mode 100644 index 000000000..3709cc2b9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672279.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672286.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672286.jpeg new file mode 100644 index 000000000..984db940c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672286.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672295.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672295.jpeg new file mode 100644 index 000000000..d79e88a3d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672295.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672303.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672303.jpeg new file mode 100644 index 000000000..7fc21a50e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672303.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672320.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672320.jpeg new file mode 100644 index 000000000..306757e80 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672320.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672328.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672328.jpeg new file mode 100644 index 000000000..c84789551 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672328.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672336.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672336.jpeg new file mode 100644 index 000000000..e284a5348 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672336.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672345.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672345.jpeg new file mode 100644 index 000000000..34ed74acd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672345.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672362.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672362.jpeg new file mode 100644 index 000000000..7b97d4b50 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672362.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672370.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672370.jpeg new file mode 100644 index 000000000..51aab23d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672370.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672378.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672378.jpeg new file mode 100644 index 000000000..75c6bae22 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672378.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672395.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672395.jpeg new file mode 100644 index 000000000..7ba0c28ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672395.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672403.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672403.jpeg new file mode 100644 index 000000000..8cef48031 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672403.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672412.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672412.jpeg new file mode 100644 index 000000000..017a5ded7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672412.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672429.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672429.jpeg new file mode 100644 index 000000000..be803458a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672429.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672436.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672436.jpeg new file mode 100644 index 000000000..244456ee4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672436.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672446.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672446.jpeg new file mode 100644 index 000000000..ad64f704d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672446.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672462.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672462.jpeg new file mode 100644 index 000000000..bc217aa23 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672462.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672470.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672470.jpeg new file mode 100644 index 000000000..c5ee6949e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672470.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672478.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672478.jpeg new file mode 100644 index 000000000..cb35fb431 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672478.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672487.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672487.jpeg new file mode 100644 index 000000000..64f943acb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672487.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672503.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672503.jpeg new file mode 100644 index 000000000..ec4f007b0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672503.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672511.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672511.jpeg new file mode 100644 index 000000000..cbddef3a9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672511.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672520.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672520.jpeg new file mode 100644 index 000000000..39647832f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672520.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672535.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672535.jpeg new file mode 100644 index 000000000..104e61b54 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672535.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672544.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672544.jpeg new file mode 100644 index 000000000..9cce06f28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672544.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672551.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672551.jpeg new file mode 100644 index 000000000..9cce06f28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672551.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672559.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672559.jpeg new file mode 100644 index 000000000..7d1b226e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672559.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672575.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672575.jpeg new file mode 100644 index 000000000..048f939a2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672575.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672585.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672585.jpeg new file mode 100644 index 000000000..048f939a2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672585.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672593.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672593.jpeg new file mode 100644 index 000000000..71b492231 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672593.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672603.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672603.jpeg new file mode 100644 index 000000000..153c5e081 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672603.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672613.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672613.jpeg new file mode 100644 index 000000000..ce04e6716 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672613.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672621.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672621.jpeg new file mode 100644 index 000000000..d5e97ce3d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672621.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672638.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672638.jpeg new file mode 100644 index 000000000..9aa130d3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672638.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672647.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672647.jpeg new file mode 100644 index 000000000..9aa130d3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672647.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672655.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672655.jpeg new file mode 100644 index 000000000..ebd49b6f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672655.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672664.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672664.jpeg new file mode 100644 index 000000000..c56ec14cd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672664.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672681.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672681.jpeg new file mode 100644 index 000000000..05d6d39f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672681.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672689.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672689.jpeg new file mode 100644 index 000000000..fe4bc09ef Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672689.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672697.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672697.jpeg new file mode 100644 index 000000000..23c853d93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672697.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672714.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672714.jpeg new file mode 100644 index 000000000..3b2194136 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672714.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672931.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672931.jpeg new file mode 100644 index 000000000..38bd01ca6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630672931.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673039.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673039.jpeg new file mode 100644 index 000000000..9b036f918 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673039.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673048.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673048.jpeg new file mode 100644 index 000000000..b388c5d56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673048.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673056.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673056.jpeg new file mode 100644 index 000000000..401f404f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673056.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673072.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673072.jpeg new file mode 100644 index 000000000..3b32d6a49 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673072.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673080.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673080.jpeg new file mode 100644 index 000000000..b1828b161 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673080.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673090.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673090.jpeg new file mode 100644 index 000000000..237df45ab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673090.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673099.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673099.jpeg new file mode 100644 index 000000000..0d63f4bdb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673099.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673116.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673116.jpeg new file mode 100644 index 000000000..a90105dfe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673116.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673124.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673124.jpeg new file mode 100644 index 000000000..01e533874 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673124.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673134.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673134.jpeg new file mode 100644 index 000000000..4338771cf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673134.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673151.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673151.jpeg new file mode 100644 index 000000000..60e8460d9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673151.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673160.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673160.jpeg new file mode 100644 index 000000000..1e14c76cc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673160.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673169.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673169.jpeg new file mode 100644 index 000000000..14ec3de32 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673169.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673185.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673185.jpeg new file mode 100644 index 000000000..6241be98d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673185.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673194.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673194.jpeg new file mode 100644 index 000000000..598753d2b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673194.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673202.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673202.jpeg new file mode 100644 index 000000000..46962cc50 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673202.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673211.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673211.jpeg new file mode 100644 index 000000000..cb0553b77 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673211.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673227.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673227.jpeg new file mode 100644 index 000000000..61b0e38d1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673227.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673236.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673236.jpeg new file mode 100644 index 000000000..172c3713f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673236.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673244.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673244.jpeg new file mode 100644 index 000000000..486ac7f34 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673244.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673252.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673252.jpeg new file mode 100644 index 000000000..cc4159923 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673252.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673269.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673269.jpeg new file mode 100644 index 000000000..b185b8423 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673269.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673277.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673277.jpeg new file mode 100644 index 000000000..2985a4101 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673277.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673285.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673285.jpeg new file mode 100644 index 000000000..79ad44b6b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673285.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673294.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673294.jpeg new file mode 100644 index 000000000..7dfc7f109 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673294.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673310.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673310.jpeg new file mode 100644 index 000000000..148a8c040 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673310.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673319.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673319.jpeg new file mode 100644 index 000000000..ab9975b8b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673319.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673327.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673327.jpeg new file mode 100644 index 000000000..e673f0662 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673327.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673335.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673335.jpeg new file mode 100644 index 000000000..8a24b6446 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673335.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673350.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673350.jpeg new file mode 100644 index 000000000..7007a54a8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673350.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673357.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673357.jpeg new file mode 100644 index 000000000..8c422b420 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673357.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673365.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673365.jpeg new file mode 100644 index 000000000..0896f6f12 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673365.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673382.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673382.jpeg new file mode 100644 index 000000000..7b9259c1b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673382.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673390.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673390.jpeg new file mode 100644 index 000000000..772564369 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673390.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673399.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673399.jpeg new file mode 100644 index 000000000..22d6ff26e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673399.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673416.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673416.jpeg new file mode 100644 index 000000000..1a847d38c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673416.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673424.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673424.jpeg new file mode 100644 index 000000000..2d12f2c15 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673424.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673432.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673432.jpeg new file mode 100644 index 000000000..66557a3da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673432.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673441.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673441.jpeg new file mode 100644 index 000000000..929637132 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673441.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673456.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673456.jpeg new file mode 100644 index 000000000..20ff9fafb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673456.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673465.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673465.jpeg new file mode 100644 index 000000000..10102a65e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673465.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673473.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673473.jpeg new file mode 100644 index 000000000..77c7fc7f5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673473.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673482.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673482.jpeg new file mode 100644 index 000000000..1f174dc1b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673482.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673497.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673497.jpeg new file mode 100644 index 000000000..06558130c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673497.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673506.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673506.jpeg new file mode 100644 index 000000000..5eabe314c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673506.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673514.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673514.jpeg new file mode 100644 index 000000000..17a877754 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673514.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673523.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673523.jpeg new file mode 100644 index 000000000..fef1c5cf6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673523.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673539.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673539.jpeg new file mode 100644 index 000000000..4b829abcf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673539.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673547.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673547.jpeg new file mode 100644 index 000000000..6a3990813 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673547.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673556.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673556.jpeg new file mode 100644 index 000000000..9406382cc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673556.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673621.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673621.jpeg new file mode 100644 index 000000000..a4674ce80 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673621.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673628.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673628.jpeg new file mode 100644 index 000000000..14cc3304a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673628.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673644.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673644.jpeg new file mode 100644 index 000000000..057ba22b7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673644.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673653.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673653.jpeg new file mode 100644 index 000000000..234016842 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673653.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673660.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673660.jpeg new file mode 100644 index 000000000..ec420ee49 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673660.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673676.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673676.jpeg new file mode 100644 index 000000000..2f940634a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673676.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673684.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673684.jpeg new file mode 100644 index 000000000..ad7d9e649 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673684.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673693.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673693.jpeg new file mode 100644 index 000000000..43c25569d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673693.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673701.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673701.jpeg new file mode 100644 index 000000000..dcd13f675 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673701.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673718.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673718.jpeg new file mode 100644 index 000000000..261f46859 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673718.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673726.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673726.jpeg new file mode 100644 index 000000000..0195fbf9f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673726.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673735.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673735.jpeg new file mode 100644 index 000000000..88517e22f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673735.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673743.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673743.jpeg new file mode 100644 index 000000000..a0824d745 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673743.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673759.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673759.jpeg new file mode 100644 index 000000000..b5c748632 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673759.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673768.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673768.jpeg new file mode 100644 index 000000000..83ed60ebc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673768.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673776.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673776.jpeg new file mode 100644 index 000000000..ffd1a99c0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673776.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673792.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673792.jpeg new file mode 100644 index 000000000..1a07f2846 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673792.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673801.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673801.jpeg new file mode 100644 index 000000000..def9334aa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673801.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673810.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673810.jpeg new file mode 100644 index 000000000..1d3603352 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673810.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673827.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673827.jpeg new file mode 100644 index 000000000..1e71f7f04 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673827.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673835.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673835.jpeg new file mode 100644 index 000000000..41821d956 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673835.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673843.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673843.jpeg new file mode 100644 index 000000000..7a1c3d56a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673843.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673859.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673859.jpeg new file mode 100644 index 000000000..71e8594ac Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673859.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673868.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673868.jpeg new file mode 100644 index 000000000..514c9f774 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673868.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673876.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673876.jpeg new file mode 100644 index 000000000..68314974e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673876.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673885.jpeg new file mode 100644 index 000000000..85b88f094 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673901.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673901.jpeg new file mode 100644 index 000000000..45e19509b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673901.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673910.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673910.jpeg new file mode 100644 index 000000000..7545728be Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673910.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673918.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673918.jpeg new file mode 100644 index 000000000..526b183c0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673918.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673927.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673927.jpeg new file mode 100644 index 000000000..a3217d775 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673927.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673943.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673943.jpeg new file mode 100644 index 000000000..a57049d58 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673943.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673951.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673951.jpeg new file mode 100644 index 000000000..7a40a9d1f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673951.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673956.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673956.jpeg new file mode 100644 index 000000000..08443c413 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673956.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673972.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673972.jpeg new file mode 100644 index 000000000..424e06a57 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673972.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673980.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673980.jpeg new file mode 100644 index 000000000..78f18ab54 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673980.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673989.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673989.jpeg new file mode 100644 index 000000000..b6d01b367 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673989.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673999.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673999.jpeg new file mode 100644 index 000000000..fe30a6f90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630673999.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674009.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674009.jpeg new file mode 100644 index 000000000..5ba131eb2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674009.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674017.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674017.jpeg new file mode 100644 index 000000000..5d3704966 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674017.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674034.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674034.jpeg new file mode 100644 index 000000000..36e806e2c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674034.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674043.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674043.jpeg new file mode 100644 index 000000000..c2bd55405 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674043.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674051.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674051.jpeg new file mode 100644 index 000000000..485385288 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674051.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674060.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674060.jpeg new file mode 100644 index 000000000..7aedb3035 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674060.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674076.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674076.jpeg new file mode 100644 index 000000000..03d7d3405 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674076.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674085.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674085.jpeg new file mode 100644 index 000000000..fae87409f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674085.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674093.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674093.jpeg new file mode 100644 index 000000000..5b6d3a3c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674093.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674101.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674101.jpeg new file mode 100644 index 000000000..2557f4a76 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674101.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674118.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674118.jpeg new file mode 100644 index 000000000..9709c290d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674118.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674126.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674126.jpeg new file mode 100644 index 000000000..de5a9e27c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674126.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674335.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674335.jpeg new file mode 100644 index 000000000..ebd252046 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674335.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674452.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674452.jpeg new file mode 100644 index 000000000..43649343f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674452.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674460.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674460.jpeg new file mode 100644 index 000000000..43649343f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674460.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674468.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674468.jpeg new file mode 100644 index 000000000..43649343f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674468.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674478.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674478.jpeg new file mode 100644 index 000000000..d9ab461a5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674478.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674494.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674494.jpeg new file mode 100644 index 000000000..5692a9c69 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674494.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674502.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674502.jpeg new file mode 100644 index 000000000..490d13a3f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674502.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674510.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674510.jpeg new file mode 100644 index 000000000..b92ec9cdd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674510.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674519.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674519.jpeg new file mode 100644 index 000000000..f70530387 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674519.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674535.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674535.jpeg new file mode 100644 index 000000000..e256e27cf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674535.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674544.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674544.jpeg new file mode 100644 index 000000000..14a79a167 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674544.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674552.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674552.jpeg new file mode 100644 index 000000000..0e685864f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674552.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674560.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674560.jpeg new file mode 100644 index 000000000..589c31440 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674560.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674606.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674606.jpeg new file mode 100644 index 000000000..9ce710f9c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674606.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674607.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674607.jpeg new file mode 100644 index 000000000..78804962a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674607.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674623.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674623.jpeg new file mode 100644 index 000000000..6ea71a585 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674623.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674632.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674632.jpeg new file mode 100644 index 000000000..8fee3e307 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674632.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674639.jpeg new file mode 100644 index 000000000..a28b7e1da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674648.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674648.jpeg new file mode 100644 index 000000000..025782faf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674648.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674664.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674664.jpeg new file mode 100644 index 000000000..38c63a1c3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674664.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674673.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674673.jpeg new file mode 100644 index 000000000..29e7a8c23 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674673.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674681.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674681.jpeg new file mode 100644 index 000000000..f4f37c6ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674681.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674689.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674689.jpeg new file mode 100644 index 000000000..4f493424b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674689.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674707.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674707.jpeg new file mode 100644 index 000000000..f9421ec2b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674707.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674714.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674714.jpeg new file mode 100644 index 000000000..c57e45eaa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674714.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674723.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674723.jpeg new file mode 100644 index 000000000..76d96a9ae Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674723.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674731.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674731.jpeg new file mode 100644 index 000000000..05393c7b7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674731.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674748.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674748.jpeg new file mode 100644 index 000000000..e0dc86f7b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674748.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674756.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674756.jpeg new file mode 100644 index 000000000..63f17ed27 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674756.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674765.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674765.jpeg new file mode 100644 index 000000000..8a41870b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674765.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674781.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674781.jpeg new file mode 100644 index 000000000..e03365da2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674781.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674789.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674789.jpeg new file mode 100644 index 000000000..84be01c03 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674789.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674798.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674798.jpeg new file mode 100644 index 000000000..520976710 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674798.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674814.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674814.jpeg new file mode 100644 index 000000000..280402713 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674814.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674823.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674823.jpeg new file mode 100644 index 000000000..a77e36ac5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674823.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674831.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674831.jpeg new file mode 100644 index 000000000..50144e60e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674831.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674848.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674848.jpeg new file mode 100644 index 000000000..b01e8825f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674848.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674856.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674856.jpeg new file mode 100644 index 000000000..2c22a8b58 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674856.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674865.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674865.jpeg new file mode 100644 index 000000000..ae5b2c681 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674865.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674881.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674881.jpeg new file mode 100644 index 000000000..b8b5dd91d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674881.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674889.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674889.jpeg new file mode 100644 index 000000000..796a2f0fd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674889.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674898.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674898.jpeg new file mode 100644 index 000000000..83aaf7095 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674898.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674914.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674914.jpeg new file mode 100644 index 000000000..b1ae17034 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674914.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674923.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674923.jpeg new file mode 100644 index 000000000..cf378b888 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674923.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674931.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674931.jpeg new file mode 100644 index 000000000..b4fde3065 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674931.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674939.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674939.jpeg new file mode 100644 index 000000000..d0129f89d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674939.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674953.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674953.jpeg new file mode 100644 index 000000000..f1340dbf2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674953.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674961.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674961.jpeg new file mode 100644 index 000000000..88257c935 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674961.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674968.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674968.jpeg new file mode 100644 index 000000000..49c54a62a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674968.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674976.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674976.jpeg new file mode 100644 index 000000000..53b9414ae Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674976.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674993.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674993.jpeg new file mode 100644 index 000000000..b808d060b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630674993.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675001.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675001.jpeg new file mode 100644 index 000000000..c30ed6195 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675001.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675010.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675010.jpeg new file mode 100644 index 000000000..4695f5ae0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675010.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675026.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675026.jpeg new file mode 100644 index 000000000..6e321a0b6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675026.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675035.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675035.jpeg new file mode 100644 index 000000000..8b0635f10 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675035.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675043.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675043.jpeg new file mode 100644 index 000000000..7d485f414 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675043.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675051.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675051.jpeg new file mode 100644 index 000000000..cea1305fd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675051.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675067.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675067.jpeg new file mode 100644 index 000000000..a5132f31e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675067.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675077.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675077.jpeg new file mode 100644 index 000000000..b254fb0b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675077.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675085.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675085.jpeg new file mode 100644 index 000000000..9b980fbf4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675085.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675093.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675093.jpeg new file mode 100644 index 000000000..5c6daf5d5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675093.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675110.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675110.jpeg new file mode 100644 index 000000000..2ee4d249a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675110.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675118.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675118.jpeg new file mode 100644 index 000000000..fc70ae59a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675118.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675125.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675125.jpeg new file mode 100644 index 000000000..6c5f65671 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675125.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675135.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675135.jpeg new file mode 100644 index 000000000..0e48757a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675135.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675352.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675352.jpeg new file mode 100644 index 000000000..34401d789 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675352.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675460.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675460.jpeg new file mode 100644 index 000000000..97fde6472 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675460.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675468.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675468.jpeg new file mode 100644 index 000000000..97fde6472 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675468.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675477.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675477.jpeg new file mode 100644 index 000000000..64f029f0f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675477.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675493.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675493.jpeg new file mode 100644 index 000000000..53a7412e2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675493.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675502.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675502.jpeg new file mode 100644 index 000000000..3ea1a4463 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675502.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675510.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675510.jpeg new file mode 100644 index 000000000..8cc0017ef Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675510.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675518.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675518.jpeg new file mode 100644 index 000000000..74f3d13a7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675518.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675534.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675534.jpeg new file mode 100644 index 000000000..814962013 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675534.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675543.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675543.jpeg new file mode 100644 index 000000000..a4264fc1f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675543.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675551.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675551.jpeg new file mode 100644 index 000000000..fc7dac9f8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675551.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675559.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675559.jpeg new file mode 100644 index 000000000..588ae3495 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675559.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675577.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675577.jpeg new file mode 100644 index 000000000..9e724658e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675577.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675585.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675585.jpeg new file mode 100644 index 000000000..6b14ee7d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675585.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675593.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675593.jpeg new file mode 100644 index 000000000..23d46815e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675593.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675610.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675610.jpeg new file mode 100644 index 000000000..832a08752 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675610.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675619.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675619.jpeg new file mode 100644 index 000000000..8de1a273e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675619.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675627.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675627.jpeg new file mode 100644 index 000000000..f91bcb0d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675627.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675635.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675635.jpeg new file mode 100644 index 000000000..6de530dbd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675635.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675652.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675652.jpeg new file mode 100644 index 000000000..0d09ec81f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675652.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675660.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675660.jpeg new file mode 100644 index 000000000..f787b86c1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675660.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675668.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675668.jpeg new file mode 100644 index 000000000..84d96078b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675668.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675685.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675685.jpeg new file mode 100644 index 000000000..09d459319 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675685.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675721.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675721.jpeg new file mode 100644 index 000000000..fe556501a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675721.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675723.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675723.jpeg new file mode 100644 index 000000000..72c86fa90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675723.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675724.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675724.jpeg new file mode 100644 index 000000000..702cc1a15 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675724.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675732.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675732.jpeg new file mode 100644 index 000000000..a54d48e2b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675732.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675739.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675739.jpeg new file mode 100644 index 000000000..f828d3039 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675739.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675747.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675747.jpeg new file mode 100644 index 000000000..619dea410 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675747.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675763.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675763.jpeg new file mode 100644 index 000000000..8786b8228 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675763.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675773.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675773.jpeg new file mode 100644 index 000000000..16bf33488 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675773.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675781.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675781.jpeg new file mode 100644 index 000000000..c4ead71d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675781.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675796.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675796.jpeg new file mode 100644 index 000000000..86357264f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675796.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675805.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675805.jpeg new file mode 100644 index 000000000..02858c6af Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675805.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675814.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675814.jpeg new file mode 100644 index 000000000..7c611c353 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675814.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675822.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675822.jpeg new file mode 100644 index 000000000..f7c02cb94 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675822.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675838.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675838.jpeg new file mode 100644 index 000000000..cf18f8be8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675838.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675848.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675848.jpeg new file mode 100644 index 000000000..6305b15a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675848.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675856.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675856.jpeg new file mode 100644 index 000000000..e6096e0cb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675856.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675864.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675864.jpeg new file mode 100644 index 000000000..26ae9526a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675864.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675881.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675881.jpeg new file mode 100644 index 000000000..28212571f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675881.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675889.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675889.jpeg new file mode 100644 index 000000000..10d79d27d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675889.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675897.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675897.jpeg new file mode 100644 index 000000000..23b3e3c3c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675897.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675906.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675906.jpeg new file mode 100644 index 000000000..c34045316 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675906.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675922.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675922.jpeg new file mode 100644 index 000000000..b01bde8a3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675922.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675930.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675930.jpeg new file mode 100644 index 000000000..9d3b6db3c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675930.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675939.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675939.jpeg new file mode 100644 index 000000000..0b3167629 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675939.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675956.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675956.jpeg new file mode 100644 index 000000000..e906729d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675956.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675963.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675963.jpeg new file mode 100644 index 000000000..569ca7dcc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675963.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675972.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675972.jpeg new file mode 100644 index 000000000..de4009921 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675972.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675981.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675981.jpeg new file mode 100644 index 000000000..0f04f2478 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675981.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675997.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675997.jpeg new file mode 100644 index 000000000..8facd1e99 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630675997.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676006.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676006.jpeg new file mode 100644 index 000000000..0868bdb0f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676006.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676013.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676013.jpeg new file mode 100644 index 000000000..65927f871 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676013.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676023.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676023.jpeg new file mode 100644 index 000000000..cef382187 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676023.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676038.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676038.jpeg new file mode 100644 index 000000000..a51b0d3ac Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676038.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676048.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676048.jpeg new file mode 100644 index 000000000..585e50226 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676048.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676056.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676056.jpeg new file mode 100644 index 000000000..ff2659f5c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676056.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676061.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676061.jpeg new file mode 100644 index 000000000..afa8a3f69 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676061.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676077.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676077.jpeg new file mode 100644 index 000000000..1d6a569cc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676077.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676084.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676084.jpeg new file mode 100644 index 000000000..57050de49 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676084.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676094.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676094.jpeg new file mode 100644 index 000000000..4426979ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676094.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676102.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676102.jpeg new file mode 100644 index 000000000..1d0c1a5d9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676102.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676119.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676119.jpeg new file mode 100644 index 000000000..dc1ed8afc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676119.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676127.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676127.jpeg new file mode 100644 index 000000000..f026a6b60 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676127.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676135.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676135.jpeg new file mode 100644 index 000000000..0a7fe5bf6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676135.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676152.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676152.jpeg new file mode 100644 index 000000000..52b9a6bcd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676152.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676160.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676160.jpeg new file mode 100644 index 000000000..04778f16a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676160.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676168.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676168.jpeg new file mode 100644 index 000000000..b0b02a1bf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676168.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676177.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676177.jpeg new file mode 100644 index 000000000..68b936351 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676177.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676193.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676193.jpeg new file mode 100644 index 000000000..1b2715a7e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676193.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676201.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676201.jpeg new file mode 100644 index 000000000..0da969ea0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676201.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676210.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676210.jpeg new file mode 100644 index 000000000..0536e5814 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676210.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676218.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676218.jpeg new file mode 100644 index 000000000..d8a8b52ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676218.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676235.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676235.jpeg new file mode 100644 index 000000000..8c2962d67 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676235.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676452.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676452.jpeg new file mode 100644 index 000000000..d68277010 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676452.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676543.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676543.jpeg new file mode 100644 index 000000000..5fa57fc4b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676543.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676561.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676561.jpeg new file mode 100644 index 000000000..993d2e241 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676561.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676569.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676569.jpeg new file mode 100644 index 000000000..28cc6da86 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676569.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676577.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676577.jpeg new file mode 100644 index 000000000..8bb674e99 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676577.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676595.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676595.jpeg new file mode 100644 index 000000000..9fa2a9790 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676595.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676602.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676602.jpeg new file mode 100644 index 000000000..52c228615 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676602.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676612.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676612.jpeg new file mode 100644 index 000000000..67a56d563 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676612.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676628.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676628.jpeg new file mode 100644 index 000000000..ab38655a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676628.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676637.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676637.jpeg new file mode 100644 index 000000000..bece202a6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676637.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676645.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676645.jpeg new file mode 100644 index 000000000..868fe0022 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676645.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676661.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676661.jpeg new file mode 100644 index 000000000..fdf8c110e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676661.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676669.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676669.jpeg new file mode 100644 index 000000000..eed86fa1d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676669.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676677.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676677.jpeg new file mode 100644 index 000000000..ba08c5039 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676677.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676686.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676686.jpeg new file mode 100644 index 000000000..fd06f7dd5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676686.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676703.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676703.jpeg new file mode 100644 index 000000000..d97db3267 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676703.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676711.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676711.jpeg new file mode 100644 index 000000000..3adbb0db7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676711.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676719.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676719.jpeg new file mode 100644 index 000000000..e76d76800 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676719.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676736.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676736.jpeg new file mode 100644 index 000000000..60f90312a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676736.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676744.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676744.jpeg new file mode 100644 index 000000000..073b7d3c5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676744.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676752.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676752.jpeg new file mode 100644 index 000000000..c461fcb20 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676752.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676769.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676769.jpeg new file mode 100644 index 000000000..dde7fe825 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676769.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676777.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676777.jpeg new file mode 100644 index 000000000..b320794ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676777.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676786.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676786.jpeg new file mode 100644 index 000000000..e070dff93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676786.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676802.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676802.jpeg new file mode 100644 index 000000000..fcf504cd4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676802.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676811.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676811.jpeg new file mode 100644 index 000000000..60988b976 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676811.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676819.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676819.jpeg new file mode 100644 index 000000000..8b6c1f782 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676819.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676836.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676836.jpeg new file mode 100644 index 000000000..6496dc969 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676836.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676844.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676844.jpeg new file mode 100644 index 000000000..d6824374e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676844.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676852.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676852.jpeg new file mode 100644 index 000000000..e9042144b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676852.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676869.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676869.jpeg new file mode 100644 index 000000000..29ba473c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676869.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676877.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676877.jpeg new file mode 100644 index 000000000..10ecc45e8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676877.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676886.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676886.jpeg new file mode 100644 index 000000000..c812c6e42 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676886.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676894.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676894.jpeg new file mode 100644 index 000000000..d4fe042ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676894.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676911.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676911.jpeg new file mode 100644 index 000000000..309ee8b8c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676911.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676920.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676920.jpeg new file mode 100644 index 000000000..3fd110766 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676920.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676928.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676928.jpeg new file mode 100644 index 000000000..116109dbd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676928.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676936.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676936.jpeg new file mode 100644 index 000000000..59a5ccead Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676936.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676953.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676953.jpeg new file mode 100644 index 000000000..af69a7a0c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676953.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676961.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676961.jpeg new file mode 100644 index 000000000..5c8ad61aa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676961.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676969.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676969.jpeg new file mode 100644 index 000000000..9ff8b3f18 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676969.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676986.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676986.jpeg new file mode 100644 index 000000000..b81d7a0fd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676986.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676994.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676994.jpeg new file mode 100644 index 000000000..4ecbea929 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630676994.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677002.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677002.jpeg new file mode 100644 index 000000000..3daff218b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677002.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677011.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677011.jpeg new file mode 100644 index 000000000..c7e2e7a8b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677011.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677027.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677027.jpeg new file mode 100644 index 000000000..900b13424 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677027.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677036.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677036.jpeg new file mode 100644 index 000000000..038307677 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677036.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677044.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677044.jpeg new file mode 100644 index 000000000..daeca220e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677044.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677052.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677052.jpeg new file mode 100644 index 000000000..ba383ef11 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677052.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677069.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677069.jpeg new file mode 100644 index 000000000..debb42016 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677069.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677077.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677077.jpeg new file mode 100644 index 000000000..856289bb4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677077.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677086.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677086.jpeg new file mode 100644 index 000000000..097f3758e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677086.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677094.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677094.jpeg new file mode 100644 index 000000000..515b126f9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677094.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677111.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677111.jpeg new file mode 100644 index 000000000..0ff6a74e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677111.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677119.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677119.jpeg new file mode 100644 index 000000000..068f135f8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677119.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677128.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677128.jpeg new file mode 100644 index 000000000..4fcdc7429 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677128.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677136.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677136.jpeg new file mode 100644 index 000000000..faf8a26d3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677136.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677152.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677152.jpeg new file mode 100644 index 000000000..12c8ec048 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677152.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677360.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677360.jpeg new file mode 100644 index 000000000..9be96601f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677360.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677569.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677569.jpeg new file mode 100644 index 000000000..b4c349405 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677569.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677777.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677777.jpeg new file mode 100644 index 000000000..719b61bb0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677777.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677986.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677986.jpeg new file mode 100644 index 000000000..b278a52f2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630677986.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678194.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678194.jpeg new file mode 100644 index 000000000..137e28699 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678194.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678402.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678402.jpeg new file mode 100644 index 000000000..01c335983 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678402.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678611.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678611.jpeg new file mode 100644 index 000000000..6b703a22d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678611.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678771.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678771.jpeg new file mode 100644 index 000000000..c209b24f7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678771.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678791.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678791.jpeg new file mode 100644 index 000000000..531ce2a65 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@59b29c2ad5e16b6ffd540b8a9792c8bc-1784630678791.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679025.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679025.jpeg new file mode 100644 index 000000000..5bd8cdbe4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679025.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679081.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679081.jpeg new file mode 100644 index 000000000..7fa91217f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679081.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679093.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679093.jpeg new file mode 100644 index 000000000..696c227e8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679093.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679102.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679102.jpeg new file mode 100644 index 000000000..5dfdbfd65 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679102.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679156.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679156.jpeg new file mode 100644 index 000000000..574f6839d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679156.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679161.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679161.jpeg new file mode 100644 index 000000000..e83dc1378 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679161.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679178.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679178.jpeg new file mode 100644 index 000000000..116db4ac3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679178.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679187.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679187.jpeg new file mode 100644 index 000000000..58e78e67e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679187.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679197.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679197.jpeg new file mode 100644 index 000000000..3147d5ae4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679197.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679236.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679236.jpeg new file mode 100644 index 000000000..ef1c990fe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679236.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679249.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679249.jpeg new file mode 100644 index 000000000..9a1a17246 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679249.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679258.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679258.jpeg new file mode 100644 index 000000000..617a36acc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679258.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679268.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679268.jpeg new file mode 100644 index 000000000..dd71d0476 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679268.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679277.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679277.jpeg new file mode 100644 index 000000000..ac8596838 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679277.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679286.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679286.jpeg new file mode 100644 index 000000000..02a01aa88 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679286.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679303.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679303.jpeg new file mode 100644 index 000000000..61926da93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679303.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679313.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679313.jpeg new file mode 100644 index 000000000..36ac4e4f5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679313.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679321.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679321.jpeg new file mode 100644 index 000000000..99d245693 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679321.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679331.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679331.jpeg new file mode 100644 index 000000000..12306065b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679331.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679347.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679347.jpeg new file mode 100644 index 000000000..a624a2a8e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679347.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679357.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679357.jpeg new file mode 100644 index 000000000..7989a2d5f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679357.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679366.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679366.jpeg new file mode 100644 index 000000000..d57a8e16d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679366.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679383.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679383.jpeg new file mode 100644 index 000000000..f69a1fef6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679383.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679392.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679392.jpeg new file mode 100644 index 000000000..44b754f69 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679392.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679401.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679401.jpeg new file mode 100644 index 000000000..8612468e6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679401.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679410.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679410.jpeg new file mode 100644 index 000000000..e34f86602 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679410.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679427.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679427.jpeg new file mode 100644 index 000000000..83a1da5b0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679427.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679541.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679541.jpeg new file mode 100644 index 000000000..1a2b2a154 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679541.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679542.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679542.jpeg new file mode 100644 index 000000000..689407e90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679542.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679545.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679545.jpeg new file mode 100644 index 000000000..416fe3072 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679545.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679553.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679553.jpeg new file mode 100644 index 000000000..fc241ba47 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679553.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679569.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679569.jpeg new file mode 100644 index 000000000..bb83b22b4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679569.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679578.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679578.jpeg new file mode 100644 index 000000000..f30c8da76 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679578.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679586.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679586.jpeg new file mode 100644 index 000000000..91320aa91 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679586.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679607.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679607.jpeg new file mode 100644 index 000000000..14b764726 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679607.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679612.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679612.jpeg new file mode 100644 index 000000000..dceaa70e2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679612.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679621.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679621.jpeg new file mode 100644 index 000000000..ca30ee737 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679621.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679627.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679627.jpeg new file mode 100644 index 000000000..cfdb22b8f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679627.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679643.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679643.jpeg new file mode 100644 index 000000000..cfdb22b8f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679643.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679652.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679652.jpeg new file mode 100644 index 000000000..cfdb22b8f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679652.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679660.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679660.jpeg new file mode 100644 index 000000000..cfdb22b8f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679660.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679676.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679676.jpeg new file mode 100644 index 000000000..c2488b415 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679676.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679684.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679684.jpeg new file mode 100644 index 000000000..c2488b415 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679684.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679709.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679709.jpeg new file mode 100644 index 000000000..87a791532 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679709.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679729.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679729.jpeg new file mode 100644 index 000000000..414d487fe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679729.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679749.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679749.jpeg new file mode 100644 index 000000000..2fb352d04 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679749.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679768.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679768.jpeg new file mode 100644 index 000000000..37124956e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679768.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679789.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679789.jpeg new file mode 100644 index 000000000..91efcbe87 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679789.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679809.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679809.jpeg new file mode 100644 index 000000000..7a2133ba8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679809.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679830.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679830.jpeg new file mode 100644 index 000000000..1229f00f4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679830.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679851.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679851.jpeg new file mode 100644 index 000000000..8eb090840 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679851.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679873.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679873.jpeg new file mode 100644 index 000000000..4f8e2c088 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679873.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679894.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679894.jpeg new file mode 100644 index 000000000..c11f49083 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679894.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679915.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679915.jpeg new file mode 100644 index 000000000..e3e0529e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679915.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679937.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679937.jpeg new file mode 100644 index 000000000..8d8edda6e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679937.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679958.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679958.jpeg new file mode 100644 index 000000000..337db5e75 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679958.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679980.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679980.jpeg new file mode 100644 index 000000000..6f77a0f5a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630679980.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680001.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680001.jpeg new file mode 100644 index 000000000..aa4376b45 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680001.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680019.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680019.jpeg new file mode 100644 index 000000000..cc21529fa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680019.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680038.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680038.jpeg new file mode 100644 index 000000000..0089d4375 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680038.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680056.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680056.jpeg new file mode 100644 index 000000000..0089d4375 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680056.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680075.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680075.jpeg new file mode 100644 index 000000000..0089d4375 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680075.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680093.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680093.jpeg new file mode 100644 index 000000000..0089d4375 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680093.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680114.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680114.jpeg new file mode 100644 index 000000000..0089d4375 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680114.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680133.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680133.jpeg new file mode 100644 index 000000000..0089d4375 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680133.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680153.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680153.jpeg new file mode 100644 index 000000000..0089d4375 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680153.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680173.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680173.jpeg new file mode 100644 index 000000000..9c3427b5c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680173.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680193.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680193.jpeg new file mode 100644 index 000000000..7f4b61437 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680193.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680213.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680213.jpeg new file mode 100644 index 000000000..4f437087b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680213.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680242.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680242.jpeg new file mode 100644 index 000000000..86dad866f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680242.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680252.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680252.jpeg new file mode 100644 index 000000000..86dad866f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680252.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680272.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680272.jpeg new file mode 100644 index 000000000..361e066da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680272.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680276.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680276.jpeg new file mode 100644 index 000000000..3a6134b5a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680276.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680286.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680286.jpeg new file mode 100644 index 000000000..1925f7437 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680286.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680294.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680294.jpeg new file mode 100644 index 000000000..a93ad2945 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680294.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680311.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680311.jpeg new file mode 100644 index 000000000..8fa9f4f2e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680311.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680326.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680326.jpeg new file mode 100644 index 000000000..72eab5f01 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680326.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680335.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680335.jpeg new file mode 100644 index 000000000..ce01d56f6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680335.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680351.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680351.jpeg new file mode 100644 index 000000000..0136bb48e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680351.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680392.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680392.jpeg new file mode 100644 index 000000000..07319bc36 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680392.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680393.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680393.jpeg new file mode 100644 index 000000000..730ba6c91 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680393.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680395.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680395.jpeg new file mode 100644 index 000000000..8e1430624 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680395.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680404.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680404.jpeg new file mode 100644 index 000000000..f5b19980f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680404.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680421.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680421.jpeg new file mode 100644 index 000000000..e1d256b03 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680421.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680428.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680428.jpeg new file mode 100644 index 000000000..8b2619670 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680428.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680437.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680437.jpeg new file mode 100644 index 000000000..15118795a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680437.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680454.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680454.jpeg new file mode 100644 index 000000000..88a8efc1a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680454.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680461.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680461.jpeg new file mode 100644 index 000000000..58672787e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680461.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680469.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680469.jpeg new file mode 100644 index 000000000..74d3d2321 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680469.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680487.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680487.jpeg new file mode 100644 index 000000000..367ceaf26 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680487.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680494.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680494.jpeg new file mode 100644 index 000000000..3dd521d97 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680494.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680505.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680505.jpeg new file mode 100644 index 000000000..0d4a1c519 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680505.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680520.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680520.jpeg new file mode 100644 index 000000000..77744c361 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680520.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680527.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680527.jpeg new file mode 100644 index 000000000..8ee09f49a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680527.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680537.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680537.jpeg new file mode 100644 index 000000000..cb0544df5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680537.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680554.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680554.jpeg new file mode 100644 index 000000000..a29454787 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680554.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680561.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680561.jpeg new file mode 100644 index 000000000..a3673391d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680561.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680571.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680571.jpeg new file mode 100644 index 000000000..2e97c691e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680571.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680587.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680587.jpeg new file mode 100644 index 000000000..7a55f605a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680587.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680595.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680595.jpeg new file mode 100644 index 000000000..3d65d2bf3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680595.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680604.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680604.jpeg new file mode 100644 index 000000000..39680c6eb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680604.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680621.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680621.jpeg new file mode 100644 index 000000000..e9b6c7d88 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680621.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680628.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680628.jpeg new file mode 100644 index 000000000..6a91d6e0f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680628.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680637.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680637.jpeg new file mode 100644 index 000000000..b2223ee51 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680637.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680653.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680653.jpeg new file mode 100644 index 000000000..0b61795ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680653.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680661.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680661.jpeg new file mode 100644 index 000000000..544a96ffd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680661.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680670.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680670.jpeg new file mode 100644 index 000000000..37394b7c3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680670.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680687.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680687.jpeg new file mode 100644 index 000000000..6db1fbbe3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680687.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680695.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680695.jpeg new file mode 100644 index 000000000..0edf6ae9f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680695.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680704.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680704.jpeg new file mode 100644 index 000000000..82ecb6d77 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680704.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680712.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680712.jpeg new file mode 100644 index 000000000..2a8185593 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680712.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680728.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680728.jpeg new file mode 100644 index 000000000..7d1b226e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680728.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680735.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680735.jpeg new file mode 100644 index 000000000..048f939a2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680735.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680742.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680742.jpeg new file mode 100644 index 000000000..048f939a2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680742.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680764.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680764.jpeg new file mode 100644 index 000000000..5ffa570bb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680764.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680770.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680770.jpeg new file mode 100644 index 000000000..95f6c843e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680770.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680779.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680779.jpeg new file mode 100644 index 000000000..4374ac0aa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680779.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680794.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680794.jpeg new file mode 100644 index 000000000..24338091f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680794.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680810.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680810.jpeg new file mode 100644 index 000000000..dcbb55f3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680810.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680817.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680817.jpeg new file mode 100644 index 000000000..8c805017e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680817.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680836.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680836.jpeg new file mode 100644 index 000000000..0922de616 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680836.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680843.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680843.jpeg new file mode 100644 index 000000000..05b34ac08 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680843.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680850.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680850.jpeg new file mode 100644 index 000000000..dc5fb567f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680850.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680864.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680864.jpeg new file mode 100644 index 000000000..2d1facc0d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680864.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680873.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680873.jpeg new file mode 100644 index 000000000..97beaee28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680873.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680881.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680881.jpeg new file mode 100644 index 000000000..5f47df0bc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680881.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680898.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680898.jpeg new file mode 100644 index 000000000..f4bd7b485 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680898.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680906.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680906.jpeg new file mode 100644 index 000000000..6e5593349 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680906.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680915.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680915.jpeg new file mode 100644 index 000000000..e464ba054 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680915.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680932.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680932.jpeg new file mode 100644 index 000000000..66a60367e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680932.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680940.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680940.jpeg new file mode 100644 index 000000000..e7d0115f4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680940.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680949.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680949.jpeg new file mode 100644 index 000000000..4d879bd06 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680949.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680965.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680965.jpeg new file mode 100644 index 000000000..7a3fa9076 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680965.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680974.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680974.jpeg new file mode 100644 index 000000000..760a997af Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680974.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680982.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680982.jpeg new file mode 100644 index 000000000..b09f4bce9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680982.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680991.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680991.jpeg new file mode 100644 index 000000000..036943fb4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630680991.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681007.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681007.jpeg new file mode 100644 index 000000000..e2470be0e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681007.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681015.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681015.jpeg new file mode 100644 index 000000000..c4ed6ed30 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681015.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681024.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681024.jpeg new file mode 100644 index 000000000..83a3114fc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681024.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681041.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681041.jpeg new file mode 100644 index 000000000..1f6426d97 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681041.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681050.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681050.jpeg new file mode 100644 index 000000000..ecffaf377 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681050.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681056.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681056.jpeg new file mode 100644 index 000000000..ad226bd98 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681056.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681070.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681070.jpeg new file mode 100644 index 000000000..5d1835319 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681070.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681078.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681078.jpeg new file mode 100644 index 000000000..8c422b420 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681078.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681086.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681086.jpeg new file mode 100644 index 000000000..7a763e52a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681086.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681104.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681104.jpeg new file mode 100644 index 000000000..7b9259c1b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681104.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681111.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681111.jpeg new file mode 100644 index 000000000..7f15107a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681111.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681120.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681120.jpeg new file mode 100644 index 000000000..22d6ff26e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681120.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681138.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681138.jpeg new file mode 100644 index 000000000..2d12f2c15 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681138.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681145.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681145.jpeg new file mode 100644 index 000000000..86a9964ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681145.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681154.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681154.jpeg new file mode 100644 index 000000000..b9607ad64 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681154.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681163.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681163.jpeg new file mode 100644 index 000000000..bb9db4bbf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681163.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681178.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681178.jpeg new file mode 100644 index 000000000..90571d335 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681178.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681186.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681186.jpeg new file mode 100644 index 000000000..3ad4c7144 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681186.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681196.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681196.jpeg new file mode 100644 index 000000000..cd7c07971 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681196.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681211.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681211.jpeg new file mode 100644 index 000000000..669da27bc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681211.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681220.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681220.jpeg new file mode 100644 index 000000000..553662ba0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681220.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681228.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681228.jpeg new file mode 100644 index 000000000..24d0bc72a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681228.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681236.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681236.jpeg new file mode 100644 index 000000000..97359cf3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681236.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681252.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681252.jpeg new file mode 100644 index 000000000..976d11504 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681252.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681262.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681262.jpeg new file mode 100644 index 000000000..22057be37 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681262.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681276.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681276.jpeg new file mode 100644 index 000000000..3b6655dff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681276.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681284.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681284.jpeg new file mode 100644 index 000000000..125d1ac9b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681284.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681338.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681338.jpeg new file mode 100644 index 000000000..abc8715b3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681338.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681341.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681341.jpeg new file mode 100644 index 000000000..0851f77a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681341.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681350.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681350.jpeg new file mode 100644 index 000000000..90e1f2343 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681350.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681359.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681359.jpeg new file mode 100644 index 000000000..a614c9d62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681359.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681368.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681368.jpeg new file mode 100644 index 000000000..5c9a783c0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681368.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681381.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681381.jpeg new file mode 100644 index 000000000..a536f7753 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681381.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681389.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681389.jpeg new file mode 100644 index 000000000..bf37be6fa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681389.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681398.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681398.jpeg new file mode 100644 index 000000000..5160a1362 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681398.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681406.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681406.jpeg new file mode 100644 index 000000000..5a2383e60 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681406.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681423.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681423.jpeg new file mode 100644 index 000000000..03a2da867 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681423.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681431.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681431.jpeg new file mode 100644 index 000000000..c8c30908c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681431.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681439.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681439.jpeg new file mode 100644 index 000000000..e63913fa4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681439.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681448.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681448.jpeg new file mode 100644 index 000000000..ce64b8a9c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681448.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681464.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681464.jpeg new file mode 100644 index 000000000..9689feec1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681464.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681473.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681473.jpeg new file mode 100644 index 000000000..d9aa1106c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681473.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681481.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681481.jpeg new file mode 100644 index 000000000..9bd7230b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681481.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681489.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681489.jpeg new file mode 100644 index 000000000..840218284 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681489.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681506.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681506.jpeg new file mode 100644 index 000000000..bbf4016f2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681506.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681514.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681514.jpeg new file mode 100644 index 000000000..8895031f5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681514.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681522.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681522.jpeg new file mode 100644 index 000000000..b0ccf9456 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681522.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681531.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681531.jpeg new file mode 100644 index 000000000..8071db5d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681531.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681548.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681548.jpeg new file mode 100644 index 000000000..aa40a89f7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681548.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681556.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681556.jpeg new file mode 100644 index 000000000..d96cb3013 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681556.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681564.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681564.jpeg new file mode 100644 index 000000000..74ef13c48 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681564.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681581.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681581.jpeg new file mode 100644 index 000000000..d6daedd18 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681581.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681589.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681589.jpeg new file mode 100644 index 000000000..c8b04b0c6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681589.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681598.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681598.jpeg new file mode 100644 index 000000000..3ae39df5a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681598.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681615.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681615.jpeg new file mode 100644 index 000000000..eb0b86b7b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681615.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681623.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681623.jpeg new file mode 100644 index 000000000..9c3c99712 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681623.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681630.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681630.jpeg new file mode 100644 index 000000000..f92b257b7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681630.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681648.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681648.jpeg new file mode 100644 index 000000000..57d36e4fb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681648.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681656.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681656.jpeg new file mode 100644 index 000000000..6e8322bdd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681656.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681664.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681664.jpeg new file mode 100644 index 000000000..81a38b590 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681664.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681678.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681678.jpeg new file mode 100644 index 000000000..0628ad034 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681678.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681687.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681687.jpeg new file mode 100644 index 000000000..07def5b41 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681687.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681693.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681693.jpeg new file mode 100644 index 000000000..03ddf633a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681693.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681711.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681711.jpeg new file mode 100644 index 000000000..4f22ac038 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681711.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681719.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681719.jpeg new file mode 100644 index 000000000..7256fa0c1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681719.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681728.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681728.jpeg new file mode 100644 index 000000000..22a1bd21a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681728.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681744.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681744.jpeg new file mode 100644 index 000000000..548db9f09 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681744.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681753.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681753.jpeg new file mode 100644 index 000000000..d5d78254a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681753.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681760.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681760.jpeg new file mode 100644 index 000000000..fd923272c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681760.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681769.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681769.jpeg new file mode 100644 index 000000000..d0943b3e8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681769.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681785.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681785.jpeg new file mode 100644 index 000000000..489d0719c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681785.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681801.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681801.jpeg new file mode 100644 index 000000000..8b20ea308 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681801.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681840.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681840.jpeg new file mode 100644 index 000000000..47b583d7b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681840.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681849.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681849.jpeg new file mode 100644 index 000000000..808c0435a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681849.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681864.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681864.jpeg new file mode 100644 index 000000000..ac793930e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681864.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681873.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681873.jpeg new file mode 100644 index 000000000..f5fac3760 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681873.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681881.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681881.jpeg new file mode 100644 index 000000000..d29925d05 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681881.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681890.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681890.jpeg new file mode 100644 index 000000000..1857760eb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681890.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681906.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681906.jpeg new file mode 100644 index 000000000..0048572c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681906.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681914.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681914.jpeg new file mode 100644 index 000000000..959aa7b74 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681914.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681923.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681923.jpeg new file mode 100644 index 000000000..411ee72a0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681923.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681939.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681939.jpeg new file mode 100644 index 000000000..8f75575ae Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681939.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681948.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681948.jpeg new file mode 100644 index 000000000..3cfc730bf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681948.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681957.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681957.jpeg new file mode 100644 index 000000000..a78f4c490 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681957.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681965.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681965.jpeg new file mode 100644 index 000000000..85b408c8d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681965.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681980.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681980.jpeg new file mode 100644 index 000000000..55ff780cc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681980.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681990.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681990.jpeg new file mode 100644 index 000000000..4d3f2bdbe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681990.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681999.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681999.jpeg new file mode 100644 index 000000000..6e72c408a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630681999.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682006.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682006.jpeg new file mode 100644 index 000000000..8669fb9f8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682006.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682023.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682023.jpeg new file mode 100644 index 000000000..5295c5f1a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682023.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682031.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682031.jpeg new file mode 100644 index 000000000..e7c9ab583 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682031.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682040.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682040.jpeg new file mode 100644 index 000000000..07f5f62a8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682040.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682056.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682056.jpeg new file mode 100644 index 000000000..bfaca1320 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682056.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682065.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682065.jpeg new file mode 100644 index 000000000..6d066f423 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682065.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682073.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682073.jpeg new file mode 100644 index 000000000..aa3bbb6c3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682073.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682090.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682090.jpeg new file mode 100644 index 000000000..b7f2754b9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682090.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682098.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682098.jpeg new file mode 100644 index 000000000..5b66193ea Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682098.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682106.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682106.jpeg new file mode 100644 index 000000000..cc153af1f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682106.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682123.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682123.jpeg new file mode 100644 index 000000000..6c1e95831 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682123.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682131.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682131.jpeg new file mode 100644 index 000000000..7397070ce Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682131.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682139.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682139.jpeg new file mode 100644 index 000000000..c3a48e71a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682139.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682156.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682156.jpeg new file mode 100644 index 000000000..52b6fa372 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682156.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682164.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682164.jpeg new file mode 100644 index 000000000..71e388045 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682164.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682173.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682173.jpeg new file mode 100644 index 000000000..acb0323da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682173.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682179.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682179.jpeg new file mode 100644 index 000000000..ee79011a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682179.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682193.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682193.jpeg new file mode 100644 index 000000000..d6288ac0b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682193.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682201.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682201.jpeg new file mode 100644 index 000000000..633303651 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682201.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682210.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682210.jpeg new file mode 100644 index 000000000..04b9e6bd9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682210.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682227.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682227.jpeg new file mode 100644 index 000000000..f265ae0df Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682227.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682235.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682235.jpeg new file mode 100644 index 000000000..fdb4015fb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682235.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682243.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682243.jpeg new file mode 100644 index 000000000..ca2002005 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682243.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682260.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682260.jpeg new file mode 100644 index 000000000..800061609 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682260.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682268.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682268.jpeg new file mode 100644 index 000000000..99a324f28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682268.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682277.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682277.jpeg new file mode 100644 index 000000000..5c5e4967e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682277.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682292.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682292.jpeg new file mode 100644 index 000000000..aa12dac41 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682292.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682302.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682302.jpeg new file mode 100644 index 000000000..a3000c12a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682302.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682310.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682310.jpeg new file mode 100644 index 000000000..ac20470ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682310.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682318.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682318.jpeg new file mode 100644 index 000000000..f37b91b0d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682318.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682335.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682335.jpeg new file mode 100644 index 000000000..827c4af90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682335.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682343.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682343.jpeg new file mode 100644 index 000000000..d1985e437 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682343.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682351.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682351.jpeg new file mode 100644 index 000000000..1b9ac6a30 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682351.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682368.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682368.jpeg new file mode 100644 index 000000000..5894ccf17 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682368.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682577.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682577.jpeg new file mode 100644 index 000000000..0ea07d9f6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682577.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682694.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682694.jpeg new file mode 100644 index 000000000..c091a7f08 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682694.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682703.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682703.jpeg new file mode 100644 index 000000000..5f36f4ba4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682703.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682720.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682720.jpeg new file mode 100644 index 000000000..ed2a46413 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682720.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682728.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682728.jpeg new file mode 100644 index 000000000..a4c79ea68 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682728.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682736.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682736.jpeg new file mode 100644 index 000000000..d7ecc52aa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@8a3b1cb79de5013a10bb39b09c716710-1784630682736.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662609.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662609.jpeg new file mode 100644 index 000000000..5bd8cdbe4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662609.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662643.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662643.jpeg new file mode 100644 index 000000000..6f4e2099f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662643.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662668.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662668.jpeg new file mode 100644 index 000000000..7fa91217f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662668.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662680.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662680.jpeg new file mode 100644 index 000000000..92cdb30a0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662680.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662690.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662690.jpeg new file mode 100644 index 000000000..928246480 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662690.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662699.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662699.jpeg new file mode 100644 index 000000000..86f2d64c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662699.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662709.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662709.jpeg new file mode 100644 index 000000000..7535925c6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662709.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662753.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662753.jpeg new file mode 100644 index 000000000..63851153c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662753.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662754.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662754.jpeg new file mode 100644 index 000000000..9ceef903e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662754.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662764.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662764.jpeg new file mode 100644 index 000000000..49b7daef5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662764.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662781.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662781.jpeg new file mode 100644 index 000000000..1fa827507 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662781.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662790.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662790.jpeg new file mode 100644 index 000000000..96ef28e75 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662790.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662834.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662834.jpeg new file mode 100644 index 000000000..af68fa7f2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662834.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662845.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662845.jpeg new file mode 100644 index 000000000..8bacaec45 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662845.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662861.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662861.jpeg new file mode 100644 index 000000000..0548511d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662861.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662871.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662871.jpeg new file mode 100644 index 000000000..78436ad4e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662871.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662880.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662880.jpeg new file mode 100644 index 000000000..e79c47eb8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662880.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662889.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662889.jpeg new file mode 100644 index 000000000..737d896be Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662889.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662906.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662906.jpeg new file mode 100644 index 000000000..703c469c3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662906.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662915.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662915.jpeg new file mode 100644 index 000000000..52c942b24 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662915.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662925.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662925.jpeg new file mode 100644 index 000000000..39a8098f6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662925.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662934.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662934.jpeg new file mode 100644 index 000000000..899beeb43 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662934.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662948.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662948.jpeg new file mode 100644 index 000000000..8f7f8e406 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662948.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662958.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662958.jpeg new file mode 100644 index 000000000..967572eb4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662958.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662967.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662967.jpeg new file mode 100644 index 000000000..80803ffdc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662967.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662976.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662976.jpeg new file mode 100644 index 000000000..5a2704320 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662976.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662993.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662993.jpeg new file mode 100644 index 000000000..813bf7c78 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630662993.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663002.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663002.jpeg new file mode 100644 index 000000000..eddcf4b99 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663002.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663012.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663012.jpeg new file mode 100644 index 000000000..8e7b3dbfb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663012.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663141.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663141.jpeg new file mode 100644 index 000000000..95f78b1b4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663141.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663142.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663142.jpeg new file mode 100644 index 000000000..5b3ea75a7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663142.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663145.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663145.jpeg new file mode 100644 index 000000000..0c9dd09f1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663145.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663153.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663153.jpeg new file mode 100644 index 000000000..6e644f345 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663153.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663169.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663169.jpeg new file mode 100644 index 000000000..33f12a5a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663169.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663194.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663194.jpeg new file mode 100644 index 000000000..8c15cb533 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663194.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663198.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663198.jpeg new file mode 100644 index 000000000..8c15cb533 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663198.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663210.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663210.jpeg new file mode 100644 index 000000000..8c15cb533 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663210.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663218.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663218.jpeg new file mode 100644 index 000000000..8c15cb533 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663218.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663227.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663227.jpeg new file mode 100644 index 000000000..8c15cb533 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663227.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663243.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663243.jpeg new file mode 100644 index 000000000..18bf39f1b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663243.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663251.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663251.jpeg new file mode 100644 index 000000000..18bf39f1b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663251.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663260.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663260.jpeg new file mode 100644 index 000000000..f4e020b4f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663260.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663276.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663276.jpeg new file mode 100644 index 000000000..37b45d283 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663276.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663285.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663285.jpeg new file mode 100644 index 000000000..37b45d283 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663285.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663309.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663309.jpeg new file mode 100644 index 000000000..e0dc747da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663309.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663330.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663330.jpeg new file mode 100644 index 000000000..add7d1197 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663330.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663350.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663350.jpeg new file mode 100644 index 000000000..e9dcb7f89 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663350.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663370.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663370.jpeg new file mode 100644 index 000000000..68879fb5c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663370.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663392.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663392.jpeg new file mode 100644 index 000000000..7ac9f20bd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663392.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663415.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663415.jpeg new file mode 100644 index 000000000..f5f5bc67c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663415.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663438.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663438.jpeg new file mode 100644 index 000000000..3a64b3b71 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663438.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663460.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663460.jpeg new file mode 100644 index 000000000..3d826cbf5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663460.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663482.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663482.jpeg new file mode 100644 index 000000000..efcba33a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663482.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663504.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663504.jpeg new file mode 100644 index 000000000..1a5c19aed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663504.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663528.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663528.jpeg new file mode 100644 index 000000000..097f227a6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663528.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663549.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663549.jpeg new file mode 100644 index 000000000..783702d3f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663549.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663571.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663571.jpeg new file mode 100644 index 000000000..85372777e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663571.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663592.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663592.jpeg new file mode 100644 index 000000000..4a6d948d3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663592.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663614.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663614.jpeg new file mode 100644 index 000000000..a24ecaad6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663614.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663633.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663633.jpeg new file mode 100644 index 000000000..37c49c968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663633.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663652.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663652.jpeg new file mode 100644 index 000000000..37c49c968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663652.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663671.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663671.jpeg new file mode 100644 index 000000000..37c49c968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663671.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663690.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663690.jpeg new file mode 100644 index 000000000..37c49c968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663690.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663709.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663709.jpeg new file mode 100644 index 000000000..37c49c968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663709.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663728.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663728.jpeg new file mode 100644 index 000000000..37c49c968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663728.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663748.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663748.jpeg new file mode 100644 index 000000000..37c49c968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663748.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663767.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663767.jpeg new file mode 100644 index 000000000..37c49c968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663767.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663786.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663786.jpeg new file mode 100644 index 000000000..37c49c968 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663786.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663807.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663807.jpeg new file mode 100644 index 000000000..72052405c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663807.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663826.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663826.jpeg new file mode 100644 index 000000000..72052405c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663826.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663858.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663858.jpeg new file mode 100644 index 000000000..fab9b5d5e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663858.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663865.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663865.jpeg new file mode 100644 index 000000000..32fe6f9a2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663865.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663885.jpeg new file mode 100644 index 000000000..62519d287 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663889.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663889.jpeg new file mode 100644 index 000000000..c04620cbc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663889.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663894.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663894.jpeg new file mode 100644 index 000000000..923280474 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663894.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663902.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663902.jpeg new file mode 100644 index 000000000..a9cc1d00e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663902.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663911.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663911.jpeg new file mode 100644 index 000000000..e1fe0c133 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663911.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663927.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663927.jpeg new file mode 100644 index 000000000..ad3216e0b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663927.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663935.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663935.jpeg new file mode 100644 index 000000000..f992a7c20 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663935.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663944.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663944.jpeg new file mode 100644 index 000000000..9267437a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663944.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663952.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663952.jpeg new file mode 100644 index 000000000..3654b89d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663952.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663998.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663998.jpeg new file mode 100644 index 000000000..d29b48c03 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630663998.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664004.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664004.jpeg new file mode 100644 index 000000000..1a2a3e0b3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664004.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664011.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664011.jpeg new file mode 100644 index 000000000..b85f52a7f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664011.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664020.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664020.jpeg new file mode 100644 index 000000000..57f05ed90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664020.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664029.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664029.jpeg new file mode 100644 index 000000000..29092a27c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664029.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664045.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664045.jpeg new file mode 100644 index 000000000..c14f482da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664045.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664052.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664052.jpeg new file mode 100644 index 000000000..d7bd5fa9e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664052.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664062.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664062.jpeg new file mode 100644 index 000000000..151ba4dc9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664062.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664079.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664079.jpeg new file mode 100644 index 000000000..c96a1ff7e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664079.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664086.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664086.jpeg new file mode 100644 index 000000000..7b2deb950 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664086.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664094.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664094.jpeg new file mode 100644 index 000000000..fb590b269 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664094.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664103.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664103.jpeg new file mode 100644 index 000000000..1f20670c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664103.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664120.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664120.jpeg new file mode 100644 index 000000000..c342b017e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664120.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664127.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664127.jpeg new file mode 100644 index 000000000..97b819e71 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664127.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664137.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664137.jpeg new file mode 100644 index 000000000..c910b98fd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664137.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664153.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664153.jpeg new file mode 100644 index 000000000..5344f3b6b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664153.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664161.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664161.jpeg new file mode 100644 index 000000000..2604aad7d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664161.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664170.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664170.jpeg new file mode 100644 index 000000000..911439193 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664170.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664187.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664187.jpeg new file mode 100644 index 000000000..2e97c691e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664187.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664195.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664195.jpeg new file mode 100644 index 000000000..74d10ed1a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664195.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664204.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664204.jpeg new file mode 100644 index 000000000..7a55f605a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664204.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664220.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664220.jpeg new file mode 100644 index 000000000..19ed64d27 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664220.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664228.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664228.jpeg new file mode 100644 index 000000000..ccf2bfc62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664228.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664237.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664237.jpeg new file mode 100644 index 000000000..22d1a919c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664237.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664245.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664245.jpeg new file mode 100644 index 000000000..3301a178e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664245.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664262.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664262.jpeg new file mode 100644 index 000000000..9a9ef5d54 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664262.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664269.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664269.jpeg new file mode 100644 index 000000000..859dffdb2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664269.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664278.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664278.jpeg new file mode 100644 index 000000000..6b6d23cfb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664278.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664296.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664296.jpeg new file mode 100644 index 000000000..85cefc1bf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664296.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664303.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664303.jpeg new file mode 100644 index 000000000..2e86aaa39 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664303.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664311.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664311.jpeg new file mode 100644 index 000000000..f4ce805a5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664311.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664320.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664320.jpeg new file mode 100644 index 000000000..602c466a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664320.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664336.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664336.jpeg new file mode 100644 index 000000000..33cde1939 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664336.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664343.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664343.jpeg new file mode 100644 index 000000000..ce04e6716 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664343.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664351.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664351.jpeg new file mode 100644 index 000000000..d5e97ce3d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664351.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664368.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664368.jpeg new file mode 100644 index 000000000..9aa130d3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664368.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664376.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664376.jpeg new file mode 100644 index 000000000..ebd49b6f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664376.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664384.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664384.jpeg new file mode 100644 index 000000000..c56ec14cd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664384.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664393.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664393.jpeg new file mode 100644 index 000000000..1ffedee86 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664393.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664410.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664410.jpeg new file mode 100644 index 000000000..05d6d39f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664410.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664418.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664418.jpeg new file mode 100644 index 000000000..fe4bc09ef Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664418.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664426.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664426.jpeg new file mode 100644 index 000000000..4341dc613 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664426.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664443.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664443.jpeg new file mode 100644 index 000000000..be668b2b5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664443.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664451.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664451.jpeg new file mode 100644 index 000000000..d8fcef5ab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664451.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664459.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664459.jpeg new file mode 100644 index 000000000..ea3846bb5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664459.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664476.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664476.jpeg new file mode 100644 index 000000000..1af4e939c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664476.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664485.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664485.jpeg new file mode 100644 index 000000000..56dab9fa8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664485.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664493.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664493.jpeg new file mode 100644 index 000000000..65e65f5b6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664493.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664509.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664509.jpeg new file mode 100644 index 000000000..906aced9b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664509.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664518.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664518.jpeg new file mode 100644 index 000000000..eb0394925 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664518.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664726.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664726.jpeg new file mode 100644 index 000000000..8dfb56e26 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664726.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664843.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664843.jpeg new file mode 100644 index 000000000..c8c520ee9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664843.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664853.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664853.jpeg new file mode 100644 index 000000000..f1967044b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664853.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664860.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664860.jpeg new file mode 100644 index 000000000..39f4d9826 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664860.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664869.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664869.jpeg new file mode 100644 index 000000000..e00e2bf56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664869.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664885.jpeg new file mode 100644 index 000000000..66efa0142 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664894.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664894.jpeg new file mode 100644 index 000000000..7a1170670 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664894.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664902.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664902.jpeg new file mode 100644 index 000000000..0d0c9bce4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664902.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664920.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664920.jpeg new file mode 100644 index 000000000..436086085 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664920.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664928.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664928.jpeg new file mode 100644 index 000000000..3a11ec347 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664928.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664937.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664937.jpeg new file mode 100644 index 000000000..75d76daa8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664937.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664956.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664956.jpeg new file mode 100644 index 000000000..e9f2acc57 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664956.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664964.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664964.jpeg new file mode 100644 index 000000000..a18e17728 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664964.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664973.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664973.jpeg new file mode 100644 index 000000000..373db6355 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664973.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664989.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664989.jpeg new file mode 100644 index 000000000..6479d17e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664989.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664998.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664998.jpeg new file mode 100644 index 000000000..ac74fb69d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630664998.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665007.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665007.jpeg new file mode 100644 index 000000000..a0ccbb909 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665007.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665015.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665015.jpeg new file mode 100644 index 000000000..d6abff156 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665015.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665032.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665032.jpeg new file mode 100644 index 000000000..3d15bdc07 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665032.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665040.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665040.jpeg new file mode 100644 index 000000000..90687fdb6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665040.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665049.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665049.jpeg new file mode 100644 index 000000000..c4d4ba46c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665049.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665058.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665058.jpeg new file mode 100644 index 000000000..ea697f6fe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665058.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665073.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665073.jpeg new file mode 100644 index 000000000..99f7d18ae Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665073.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665082.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665082.jpeg new file mode 100644 index 000000000..b253d63ec Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665082.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665090.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665090.jpeg new file mode 100644 index 000000000..e0d65b6bb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665090.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665107.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665107.jpeg new file mode 100644 index 000000000..34b67a2ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665107.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665116.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665116.jpeg new file mode 100644 index 000000000..96e77968b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665116.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665124.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665124.jpeg new file mode 100644 index 000000000..c384ab669 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665124.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665141.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665141.jpeg new file mode 100644 index 000000000..779ef6e96 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665141.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665150.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665150.jpeg new file mode 100644 index 000000000..69a600b13 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665150.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665156.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665156.jpeg new file mode 100644 index 000000000..b46dadbcd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665156.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665170.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665170.jpeg new file mode 100644 index 000000000..8c422b420 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665170.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665178.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665178.jpeg new file mode 100644 index 000000000..7a763e52a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665178.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665187.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665187.jpeg new file mode 100644 index 000000000..4bea5db28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665187.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665196.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665196.jpeg new file mode 100644 index 000000000..7b9259c1b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665196.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665213.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665213.jpeg new file mode 100644 index 000000000..22d6ff26e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665213.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665227.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665227.jpeg new file mode 100644 index 000000000..1a847d38c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665227.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665231.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665231.jpeg new file mode 100644 index 000000000..2d12f2c15 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665231.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665247.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665247.jpeg new file mode 100644 index 000000000..ecf891e2a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665247.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665255.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665255.jpeg new file mode 100644 index 000000000..b5492a833 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665255.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665263.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665263.jpeg new file mode 100644 index 000000000..989fe0ff2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665263.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665278.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665278.jpeg new file mode 100644 index 000000000..c5721d558 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665278.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665286.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665286.jpeg new file mode 100644 index 000000000..7d09e9bf6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665286.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665296.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665296.jpeg new file mode 100644 index 000000000..6c4870387 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665296.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665312.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665312.jpeg new file mode 100644 index 000000000..c834882af Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665312.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665319.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665319.jpeg new file mode 100644 index 000000000..ee56d9612 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665319.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665328.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665328.jpeg new file mode 100644 index 000000000..12569798a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665328.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665337.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665337.jpeg new file mode 100644 index 000000000..a0fc2f774 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665337.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665353.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665353.jpeg new file mode 100644 index 000000000..ec7ffab43 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665353.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665368.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665368.jpeg new file mode 100644 index 000000000..244dc4c2a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665368.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665376.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665376.jpeg new file mode 100644 index 000000000..ddbe2953a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665376.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665385.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665385.jpeg new file mode 100644 index 000000000..ac6efdd40 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665385.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665438.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665438.jpeg new file mode 100644 index 000000000..e3fbcbfe2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665438.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665451.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665451.jpeg new file mode 100644 index 000000000..0d837b316 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665451.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665459.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665459.jpeg new file mode 100644 index 000000000..c8dfa1d6d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665459.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665472.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665472.jpeg new file mode 100644 index 000000000..f5913bdbf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665472.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665480.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665480.jpeg new file mode 100644 index 000000000..cca80f47a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665480.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665489.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665489.jpeg new file mode 100644 index 000000000..0e78e98ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665489.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665497.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665497.jpeg new file mode 100644 index 000000000..6ce43012c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665497.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665514.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665514.jpeg new file mode 100644 index 000000000..6713a1c51 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665514.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665522.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665522.jpeg new file mode 100644 index 000000000..5b35c9357 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665522.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665530.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665530.jpeg new file mode 100644 index 000000000..5e7e4341e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665530.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665539.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665539.jpeg new file mode 100644 index 000000000..b401ed982 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665539.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665555.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665555.jpeg new file mode 100644 index 000000000..fe59d063e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665555.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665564.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665564.jpeg new file mode 100644 index 000000000..8f8d4f4fc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665564.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665572.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665572.jpeg new file mode 100644 index 000000000..36232b328 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665572.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665589.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665589.jpeg new file mode 100644 index 000000000..e4b5637e8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665589.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665597.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665597.jpeg new file mode 100644 index 000000000..94bb73391 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665597.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665605.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665605.jpeg new file mode 100644 index 000000000..48549bc30 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665605.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665613.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665613.jpeg new file mode 100644 index 000000000..bb3ad8a50 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665613.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665631.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665631.jpeg new file mode 100644 index 000000000..f11d16f62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665631.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665639.jpeg new file mode 100644 index 000000000..4206d08fa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665647.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665647.jpeg new file mode 100644 index 000000000..f9e9ca689 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665647.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665664.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665664.jpeg new file mode 100644 index 000000000..b5499b61f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665664.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665672.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665672.jpeg new file mode 100644 index 000000000..6a10c6885 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665672.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665680.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665680.jpeg new file mode 100644 index 000000000..e43ddc417 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665680.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665697.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665697.jpeg new file mode 100644 index 000000000..3f5aedbd3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665697.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665705.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665705.jpeg new file mode 100644 index 000000000..65e47aab2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665705.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665714.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665714.jpeg new file mode 100644 index 000000000..ebaeaba81 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665714.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665722.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665722.jpeg new file mode 100644 index 000000000..27b716483 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665722.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665739.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665739.jpeg new file mode 100644 index 000000000..2088cf3b2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665739.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665747.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665747.jpeg new file mode 100644 index 000000000..399cb5d93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665747.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665755.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665755.jpeg new file mode 100644 index 000000000..2ee9caf28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665755.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665763.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665763.jpeg new file mode 100644 index 000000000..b56ee2065 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665763.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665778.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665778.jpeg new file mode 100644 index 000000000..cbbe15062 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665778.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665785.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665785.jpeg new file mode 100644 index 000000000..a2a3115a9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665785.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665792.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665792.jpeg new file mode 100644 index 000000000..fe8ed9b4d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665792.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665801.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665801.jpeg new file mode 100644 index 000000000..e79d52ef5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665801.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665818.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665818.jpeg new file mode 100644 index 000000000..33c35473e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665818.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665826.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665826.jpeg new file mode 100644 index 000000000..429731db2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665826.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665835.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665835.jpeg new file mode 100644 index 000000000..2dc4b8b1e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665835.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665843.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665843.jpeg new file mode 100644 index 000000000..34c0ed938 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665843.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665860.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665860.jpeg new file mode 100644 index 000000000..21c237660 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665860.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665868.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665868.jpeg new file mode 100644 index 000000000..438e6b289 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665868.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665876.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665876.jpeg new file mode 100644 index 000000000..c61c95201 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665876.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665893.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665893.jpeg new file mode 100644 index 000000000..d6ae3f1eb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665893.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665901.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665901.jpeg new file mode 100644 index 000000000..fa48eb3b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665901.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665910.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665910.jpeg new file mode 100644 index 000000000..8dfddd929 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665910.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665926.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665926.jpeg new file mode 100644 index 000000000..905e1b96a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665926.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665935.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665935.jpeg new file mode 100644 index 000000000..9f639a0b5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665935.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665943.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665943.jpeg new file mode 100644 index 000000000..cd454b4b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630665943.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666152.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666152.jpeg new file mode 100644 index 000000000..7e77186dd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666152.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666269.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666269.jpeg new file mode 100644 index 000000000..fbf619cfc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666269.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666285.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666285.jpeg new file mode 100644 index 000000000..d28b25d98 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666285.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666288.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666288.jpeg new file mode 100644 index 000000000..0bfe13d81 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666288.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666303.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666303.jpeg new file mode 100644 index 000000000..1a5113032 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666303.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666310.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666310.jpeg new file mode 100644 index 000000000..99f402559 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666310.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666319.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666319.jpeg new file mode 100644 index 000000000..a07981f0a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666319.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666336.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666336.jpeg new file mode 100644 index 000000000..e8fdf466c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666336.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666344.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666344.jpeg new file mode 100644 index 000000000..9d49b4b6c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666344.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666353.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666353.jpeg new file mode 100644 index 000000000..926d9a3c7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666353.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666361.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666361.jpeg new file mode 100644 index 000000000..87aa9bbd8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666361.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666385.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666385.jpeg new file mode 100644 index 000000000..9e7c4edac Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666385.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666421.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666421.jpeg new file mode 100644 index 000000000..71cb50bd2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666421.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666422.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666422.jpeg new file mode 100644 index 000000000..273e1d40a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666422.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666432.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666432.jpeg new file mode 100644 index 000000000..a5e70c5b9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666432.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666440.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666440.jpeg new file mode 100644 index 000000000..6bdd0696d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666440.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666456.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666456.jpeg new file mode 100644 index 000000000..54cfe7dea Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666456.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666464.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666464.jpeg new file mode 100644 index 000000000..b7b359b85 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666464.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666473.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666473.jpeg new file mode 100644 index 000000000..8af594768 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666473.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666481.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666481.jpeg new file mode 100644 index 000000000..14880d8d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666481.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666498.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666498.jpeg new file mode 100644 index 000000000..4e8293450 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666498.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666506.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666506.jpeg new file mode 100644 index 000000000..ae82fd940 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666506.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666515.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666515.jpeg new file mode 100644 index 000000000..a012994f5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666515.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666523.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666523.jpeg new file mode 100644 index 000000000..69d3f8d1a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666523.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666540.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666540.jpeg new file mode 100644 index 000000000..f53615616 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666540.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666548.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666548.jpeg new file mode 100644 index 000000000..c860439d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666548.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666556.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666556.jpeg new file mode 100644 index 000000000..67803232f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666556.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666565.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666565.jpeg new file mode 100644 index 000000000..1cd089ff9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666565.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666582.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666582.jpeg new file mode 100644 index 000000000..a882bedc0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666582.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666589.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666589.jpeg new file mode 100644 index 000000000..9b8aae48f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666589.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666598.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666598.jpeg new file mode 100644 index 000000000..a011f2e7c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666598.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666615.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666615.jpeg new file mode 100644 index 000000000..ed50a05f8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666615.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666623.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666623.jpeg new file mode 100644 index 000000000..e3afe302b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666623.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666631.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666631.jpeg new file mode 100644 index 000000000..cfbf5aa47 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666631.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666639.jpeg new file mode 100644 index 000000000..43cddbc6b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666656.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666656.jpeg new file mode 100644 index 000000000..7945ff354 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666656.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666665.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666665.jpeg new file mode 100644 index 000000000..80c6256dc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666665.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666673.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666673.jpeg new file mode 100644 index 000000000..679ec7862 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666673.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666681.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666681.jpeg new file mode 100644 index 000000000..529ada14d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666681.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666697.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666697.jpeg new file mode 100644 index 000000000..d13584b80 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666697.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666706.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666706.jpeg new file mode 100644 index 000000000..cb10e78c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666706.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666715.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666715.jpeg new file mode 100644 index 000000000..1b9d80b69 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666715.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666723.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666723.jpeg new file mode 100644 index 000000000..17a447584 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666723.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666740.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666740.jpeg new file mode 100644 index 000000000..3f1b36f69 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666740.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666748.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666748.jpeg new file mode 100644 index 000000000..b1971ae1c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666748.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666753.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666753.jpeg new file mode 100644 index 000000000..79bd6ad7f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666753.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666768.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666768.jpeg new file mode 100644 index 000000000..4ec19e8f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666768.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666776.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666776.jpeg new file mode 100644 index 000000000..d2389e8a2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666776.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666785.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666785.jpeg new file mode 100644 index 000000000..d090e3138 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666785.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666802.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666802.jpeg new file mode 100644 index 000000000..628a805ce Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666802.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666810.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666810.jpeg new file mode 100644 index 000000000..a7314ccc6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666810.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666818.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666818.jpeg new file mode 100644 index 000000000..d3d6b5ae6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666818.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666835.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666835.jpeg new file mode 100644 index 000000000..75f5325a9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666835.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666843.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666843.jpeg new file mode 100644 index 000000000..be048c32a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666843.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666851.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666851.jpeg new file mode 100644 index 000000000..aa8c1ad0e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666851.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666860.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666860.jpeg new file mode 100644 index 000000000..65072aa94 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666860.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666876.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666876.jpeg new file mode 100644 index 000000000..ba7615f6e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666876.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666885.jpeg new file mode 100644 index 000000000..385393911 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666893.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666893.jpeg new file mode 100644 index 000000000..25f299782 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666893.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666901.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666901.jpeg new file mode 100644 index 000000000..6c7d13e61 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666901.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666918.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666918.jpeg new file mode 100644 index 000000000..416d0a567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666918.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666927.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666927.jpeg new file mode 100644 index 000000000..0aa207f8b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666927.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666935.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666935.jpeg new file mode 100644 index 000000000..13f327bf4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666935.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666951.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666951.jpeg new file mode 100644 index 000000000..c981e6fe3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630666951.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667160.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667160.jpeg new file mode 100644 index 000000000..d7582c358 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667160.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667269.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667269.jpeg new file mode 100644 index 000000000..59101723f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667269.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667277.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667277.jpeg new file mode 100644 index 000000000..59101723f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667277.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667287.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667287.jpeg new file mode 100644 index 000000000..402d83b0e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667287.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667303.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667303.jpeg new file mode 100644 index 000000000..3573edef4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667303.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667311.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667311.jpeg new file mode 100644 index 000000000..ffd4e031e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667311.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667319.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667319.jpeg new file mode 100644 index 000000000..b63547f10 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667319.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667336.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667336.jpeg new file mode 100644 index 000000000..29639265a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667336.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667344.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667344.jpeg new file mode 100644 index 000000000..f4596e021 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667344.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667352.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667352.jpeg new file mode 100644 index 000000000..5af39687e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667352.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667361.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667361.jpeg new file mode 100644 index 000000000..d561cf2b9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667361.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667377.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667377.jpeg new file mode 100644 index 000000000..7559ccbf1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667377.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667386.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667386.jpeg new file mode 100644 index 000000000..2b0187393 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667386.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667394.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667394.jpeg new file mode 100644 index 000000000..fa18251d5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667394.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667402.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667402.jpeg new file mode 100644 index 000000000..24b079645 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667402.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667419.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667419.jpeg new file mode 100644 index 000000000..6a4d8ed5c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667419.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667427.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667427.jpeg new file mode 100644 index 000000000..952cb3f62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667427.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667436.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667436.jpeg new file mode 100644 index 000000000..6aa8a66dd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667436.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667453.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667453.jpeg new file mode 100644 index 000000000..8307c937a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667453.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667461.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667461.jpeg new file mode 100644 index 000000000..e2163930e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667461.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667469.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667469.jpeg new file mode 100644 index 000000000..4adc8ec6a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667469.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667484.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667484.jpeg new file mode 100644 index 000000000..8b3b364e8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667484.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667501.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667501.jpeg new file mode 100644 index 000000000..2f1926a45 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667501.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667541.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667541.jpeg new file mode 100644 index 000000000..9a78e11f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667541.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667548.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667548.jpeg new file mode 100644 index 000000000..fa033c0bf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667548.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667556.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667556.jpeg new file mode 100644 index 000000000..8341c1978 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667556.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667564.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667564.jpeg new file mode 100644 index 000000000..5668cf8c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667564.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667581.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667581.jpeg new file mode 100644 index 000000000..0df3c283d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667581.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667589.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667589.jpeg new file mode 100644 index 000000000..ec50c1254 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667589.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667598.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667598.jpeg new file mode 100644 index 000000000..b376a1327 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667598.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667614.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667614.jpeg new file mode 100644 index 000000000..121eb5c0e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667614.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667623.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667623.jpeg new file mode 100644 index 000000000..ddb0d63c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667623.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667631.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667631.jpeg new file mode 100644 index 000000000..09ed7d03a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667631.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667639.jpeg new file mode 100644 index 000000000..be4a4cb56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667656.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667656.jpeg new file mode 100644 index 000000000..56a3a5935 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667656.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667664.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667664.jpeg new file mode 100644 index 000000000..022bac17e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667664.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667673.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667673.jpeg new file mode 100644 index 000000000..42996407e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667673.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667681.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667681.jpeg new file mode 100644 index 000000000..b653663e3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667681.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667698.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667698.jpeg new file mode 100644 index 000000000..3d66ea34c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667698.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667706.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667706.jpeg new file mode 100644 index 000000000..c157a9784 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667706.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667714.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667714.jpeg new file mode 100644 index 000000000..02b3f7af4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667714.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667723.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667723.jpeg new file mode 100644 index 000000000..1972dcc66 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667723.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667740.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667740.jpeg new file mode 100644 index 000000000..a3bccabd4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667740.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667748.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667748.jpeg new file mode 100644 index 000000000..a06614ae1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667748.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667756.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667756.jpeg new file mode 100644 index 000000000..42b1028be Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667756.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667764.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667764.jpeg new file mode 100644 index 000000000..25da51e84 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667764.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667781.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667781.jpeg new file mode 100644 index 000000000..71d22e66a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667781.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667789.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667789.jpeg new file mode 100644 index 000000000..c6f11c87f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667789.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667798.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667798.jpeg new file mode 100644 index 000000000..4679fa614 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667798.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667806.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667806.jpeg new file mode 100644 index 000000000..0fc123084 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667806.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667823.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667823.jpeg new file mode 100644 index 000000000..d5baf6769 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667823.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667832.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667832.jpeg new file mode 100644 index 000000000..decaa7da2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667832.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667840.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667840.jpeg new file mode 100644 index 000000000..56b5a9ffa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667840.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667856.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667856.jpeg new file mode 100644 index 000000000..291abb231 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667856.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667864.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667864.jpeg new file mode 100644 index 000000000..fc134deec Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667864.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667873.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667873.jpeg new file mode 100644 index 000000000..b08606dbb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667873.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667887.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667887.jpeg new file mode 100644 index 000000000..bae965df3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667887.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667892.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667892.jpeg new file mode 100644 index 000000000..ddd39c1fd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667892.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667901.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667901.jpeg new file mode 100644 index 000000000..eeae40b61 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667901.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667918.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667918.jpeg new file mode 100644 index 000000000..bf30c83ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667918.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667927.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667927.jpeg new file mode 100644 index 000000000..da278d63f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667927.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667935.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667935.jpeg new file mode 100644 index 000000000..89375bfda Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667935.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667943.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667943.jpeg new file mode 100644 index 000000000..5969b35f9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667943.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667960.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667960.jpeg new file mode 100644 index 000000000..4acf5b407 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667960.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667967.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667967.jpeg new file mode 100644 index 000000000..5d1042947 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667967.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667977.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667977.jpeg new file mode 100644 index 000000000..decdd071f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667977.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667994.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667994.jpeg new file mode 100644 index 000000000..39faeae2d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630667994.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668001.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668001.jpeg new file mode 100644 index 000000000..ed2e0270d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668001.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668010.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668010.jpeg new file mode 100644 index 000000000..aad68482a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668010.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668027.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668027.jpeg new file mode 100644 index 000000000..29e9d8be1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668027.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668035.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668035.jpeg new file mode 100644 index 000000000..513c67d2b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668035.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668043.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668043.jpeg new file mode 100644 index 000000000..513c67d2b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668043.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668260.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668260.jpeg new file mode 100644 index 000000000..e43dbe9b9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668260.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668379.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668379.jpeg new file mode 100644 index 000000000..343178a5e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668379.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668390.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668390.jpeg new file mode 100644 index 000000000..60e774f6a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668390.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668394.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668394.jpeg new file mode 100644 index 000000000..a6547f358 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668394.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668403.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668403.jpeg new file mode 100644 index 000000000..b5caaf9ab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668403.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668420.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668420.jpeg new file mode 100644 index 000000000..926dbfeaf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668420.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668431.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668431.jpeg new file mode 100644 index 000000000..01650434d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668431.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668437.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668437.jpeg new file mode 100644 index 000000000..ea364ce2e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668437.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668446.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668446.jpeg new file mode 100644 index 000000000..d567e3857 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668446.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668462.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668462.jpeg new file mode 100644 index 000000000..94a8a2286 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668462.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668470.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668470.jpeg new file mode 100644 index 000000000..2ca4b566f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668470.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668478.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668478.jpeg new file mode 100644 index 000000000..9410e1541 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668478.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668487.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668487.jpeg new file mode 100644 index 000000000..53189386e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668487.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668505.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668505.jpeg new file mode 100644 index 000000000..28c51653a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668505.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668512.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668512.jpeg new file mode 100644 index 000000000..09251bc7f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668512.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668520.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668520.jpeg new file mode 100644 index 000000000..b222b26a3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668520.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668537.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668537.jpeg new file mode 100644 index 000000000..76ea6ea28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668537.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668544.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668544.jpeg new file mode 100644 index 000000000..bdbf62c12 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668544.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668552.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668552.jpeg new file mode 100644 index 000000000..5cfde9649 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668552.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668569.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668569.jpeg new file mode 100644 index 000000000..58cb4ae5c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668569.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668578.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668578.jpeg new file mode 100644 index 000000000..56437881d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668578.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668586.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668586.jpeg new file mode 100644 index 000000000..c58f73212 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668586.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668594.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668594.jpeg new file mode 100644 index 000000000..ccc5060d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668594.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668611.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668611.jpeg new file mode 100644 index 000000000..6ec8b02d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668611.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668619.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668619.jpeg new file mode 100644 index 000000000..daf4ff002 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668619.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668627.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668627.jpeg new file mode 100644 index 000000000..a91eb5871 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668627.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668644.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668644.jpeg new file mode 100644 index 000000000..4f1fbf784 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668644.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668652.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668652.jpeg new file mode 100644 index 000000000..b24f070e6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668652.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668661.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668661.jpeg new file mode 100644 index 000000000..4f9b103a5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668661.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668677.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668677.jpeg new file mode 100644 index 000000000..f868bccc8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668677.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668686.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668686.jpeg new file mode 100644 index 000000000..399662fe1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668686.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668694.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668694.jpeg new file mode 100644 index 000000000..7513b9ede Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668694.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668702.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668702.jpeg new file mode 100644 index 000000000..9af197b82 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668702.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668719.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668719.jpeg new file mode 100644 index 000000000..de306b3a5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668719.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668728.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668728.jpeg new file mode 100644 index 000000000..bb0a638f0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668728.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668736.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668736.jpeg new file mode 100644 index 000000000..aa005b86e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668736.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668744.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668744.jpeg new file mode 100644 index 000000000..cdce990fb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668744.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668761.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668761.jpeg new file mode 100644 index 000000000..3433fe104 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668761.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668769.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668769.jpeg new file mode 100644 index 000000000..287b18a3b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668769.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668778.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668778.jpeg new file mode 100644 index 000000000..d256e78ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668778.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668786.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668786.jpeg new file mode 100644 index 000000000..a17eea4e7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668786.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668803.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668803.jpeg new file mode 100644 index 000000000..bfbbcf463 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668803.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668811.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668811.jpeg new file mode 100644 index 000000000..89d6f6f8b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668811.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668819.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668819.jpeg new file mode 100644 index 000000000..37c20ae0e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668819.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668828.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668828.jpeg new file mode 100644 index 000000000..a4a34e907 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668828.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668845.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668845.jpeg new file mode 100644 index 000000000..641f208c1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668845.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668853.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668853.jpeg new file mode 100644 index 000000000..04587d003 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668853.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668861.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668861.jpeg new file mode 100644 index 000000000..a05416012 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668861.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668877.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668877.jpeg new file mode 100644 index 000000000..8b8056680 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668877.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668886.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668886.jpeg new file mode 100644 index 000000000..c87aeb051 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668886.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668894.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668894.jpeg new file mode 100644 index 000000000..4cf4d322a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668894.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668911.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668911.jpeg new file mode 100644 index 000000000..df60ab8d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668911.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668919.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668919.jpeg new file mode 100644 index 000000000..f6aafd5c2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668919.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668927.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668927.jpeg new file mode 100644 index 000000000..c3d004e45 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668927.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668936.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668936.jpeg new file mode 100644 index 000000000..f6296902e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668936.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668952.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668952.jpeg new file mode 100644 index 000000000..a89614394 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668952.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668961.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668961.jpeg new file mode 100644 index 000000000..cd0684469 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668961.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668969.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668969.jpeg new file mode 100644 index 000000000..53bbe30f8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668969.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668985.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668985.jpeg new file mode 100644 index 000000000..622df92f2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668985.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668994.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668994.jpeg new file mode 100644 index 000000000..f15777033 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630668994.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669003.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669003.jpeg new file mode 100644 index 000000000..bdf29317a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669003.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669203.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669203.jpeg new file mode 100644 index 000000000..17773f0c6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669203.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669420.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669420.jpeg new file mode 100644 index 000000000..a953b524d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669420.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669627.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669627.jpeg new file mode 100644 index 000000000..bfbe894ce Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669627.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669836.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669836.jpeg new file mode 100644 index 000000000..7441ed9b7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630669836.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670044.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670044.jpeg new file mode 100644 index 000000000..806af87ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670044.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670252.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670252.jpeg new file mode 100644 index 000000000..6e0f667c6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670252.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670461.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670461.jpeg new file mode 100644 index 000000000..4eda730de Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670461.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670617.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670617.jpeg new file mode 100644 index 000000000..04ed6f5dc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670617.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670627.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670627.jpeg new file mode 100644 index 000000000..b9cf481b3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670627.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670642.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670642.jpeg new file mode 100644 index 000000000..7195e0da1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@b5951353a103748dafd971e9e44eaaca-1784630670642.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682910.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682910.jpeg new file mode 100644 index 000000000..5bd8cdbe4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682910.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682959.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682959.jpeg new file mode 100644 index 000000000..7fa91217f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682959.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682971.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682971.jpeg new file mode 100644 index 000000000..6b96432af Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682971.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682980.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682980.jpeg new file mode 100644 index 000000000..c9678de4d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682980.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682998.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682998.jpeg new file mode 100644 index 000000000..3710e66d7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630682998.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683036.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683036.jpeg new file mode 100644 index 000000000..c0ccd8557 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683036.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683044.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683044.jpeg new file mode 100644 index 000000000..e16de4d65 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683044.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683061.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683061.jpeg new file mode 100644 index 000000000..38348e893 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683061.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683070.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683070.jpeg new file mode 100644 index 000000000..b1d50fa0b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683070.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683117.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683117.jpeg new file mode 100644 index 000000000..a30208db3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683117.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683131.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683131.jpeg new file mode 100644 index 000000000..22bd648d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683131.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683140.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683140.jpeg new file mode 100644 index 000000000..a75c2a6d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683140.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683150.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683150.jpeg new file mode 100644 index 000000000..5839258a5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683150.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683159.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683159.jpeg new file mode 100644 index 000000000..2955abb08 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683159.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683173.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683173.jpeg new file mode 100644 index 000000000..f73bf1dcf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683173.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683182.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683182.jpeg new file mode 100644 index 000000000..b21fb38c1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683182.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683192.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683192.jpeg new file mode 100644 index 000000000..402b90c9b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683192.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683201.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683201.jpeg new file mode 100644 index 000000000..948ac7ed8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683201.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683210.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683210.jpeg new file mode 100644 index 000000000..276b8fb39 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683210.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683220.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683220.jpeg new file mode 100644 index 000000000..06b92e078 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683220.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683236.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683236.jpeg new file mode 100644 index 000000000..ae7cda7e4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683236.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683245.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683245.jpeg new file mode 100644 index 000000000..cb33a105c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683245.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683255.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683255.jpeg new file mode 100644 index 000000000..932eacc43 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683255.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683271.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683271.jpeg new file mode 100644 index 000000000..674b9ba1a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683271.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683281.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683281.jpeg new file mode 100644 index 000000000..6c12a1154 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683281.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683290.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683290.jpeg new file mode 100644 index 000000000..6ce3113f2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683290.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683298.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683298.jpeg new file mode 100644 index 000000000..ad27c9705 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683298.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683423.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683423.jpeg new file mode 100644 index 000000000..5c14cdffc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683423.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683430.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683430.jpeg new file mode 100644 index 000000000..cca0ab611 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683430.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683467.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683467.jpeg new file mode 100644 index 000000000..865ecfced Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683467.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683468.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683468.jpeg new file mode 100644 index 000000000..0f70529e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683468.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683480.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683480.jpeg new file mode 100644 index 000000000..0f70529e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683480.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683494.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683494.jpeg new file mode 100644 index 000000000..0f70529e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683494.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683509.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683509.jpeg new file mode 100644 index 000000000..0f70529e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683509.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683518.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683518.jpeg new file mode 100644 index 000000000..0f70529e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683518.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683526.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683526.jpeg new file mode 100644 index 000000000..0f70529e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683526.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683535.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683535.jpeg new file mode 100644 index 000000000..7769d46ab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683535.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683576.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683576.jpeg new file mode 100644 index 000000000..cccab5c33 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683576.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683595.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683595.jpeg new file mode 100644 index 000000000..5f556bfaf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683595.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683614.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683614.jpeg new file mode 100644 index 000000000..2fa27a52a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683614.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683634.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683634.jpeg new file mode 100644 index 000000000..ae8ea389a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683634.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683655.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683655.jpeg new file mode 100644 index 000000000..394b31607 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683655.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683675.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683675.jpeg new file mode 100644 index 000000000..6d42b63d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683675.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683696.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683696.jpeg new file mode 100644 index 000000000..dffd6266e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683696.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683717.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683717.jpeg new file mode 100644 index 000000000..4d9c7aae9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683717.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683738.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683738.jpeg new file mode 100644 index 000000000..7f82fc2f3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683738.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683759.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683759.jpeg new file mode 100644 index 000000000..f65590d39 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683759.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683779.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683779.jpeg new file mode 100644 index 000000000..ad120e8bc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683779.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683800.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683800.jpeg new file mode 100644 index 000000000..25949bf57 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683800.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683820.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683820.jpeg new file mode 100644 index 000000000..374a9c9b7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683820.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683842.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683842.jpeg new file mode 100644 index 000000000..b8acd23a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683842.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683865.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683865.jpeg new file mode 100644 index 000000000..031bf420f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683865.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683885.jpeg new file mode 100644 index 000000000..6c776c06c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683903.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683903.jpeg new file mode 100644 index 000000000..6c776c06c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683903.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683922.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683922.jpeg new file mode 100644 index 000000000..b0a01f9e2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683922.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683946.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683946.jpeg new file mode 100644 index 000000000..b0a01f9e2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683946.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683963.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683963.jpeg new file mode 100644 index 000000000..21c931002 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683963.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683983.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683983.jpeg new file mode 100644 index 000000000..a08315456 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630683983.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684002.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684002.jpeg new file mode 100644 index 000000000..af264a614 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684002.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684032.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684032.jpeg new file mode 100644 index 000000000..1376c89c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684032.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684042.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684042.jpeg new file mode 100644 index 000000000..54962a3b6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684042.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684062.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684062.jpeg new file mode 100644 index 000000000..97b598880 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684062.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684065.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684065.jpeg new file mode 100644 index 000000000..7e73c04b3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684065.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684069.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684069.jpeg new file mode 100644 index 000000000..87a384ac8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684069.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684077.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684077.jpeg new file mode 100644 index 000000000..02822b3db Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684077.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684086.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684086.jpeg new file mode 100644 index 000000000..cfca19ea8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684086.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684102.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684102.jpeg new file mode 100644 index 000000000..c99c8ba52 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684102.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684110.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684110.jpeg new file mode 100644 index 000000000..ef5e12b4d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684110.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684119.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684119.jpeg new file mode 100644 index 000000000..3e3f702e8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684119.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684135.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684135.jpeg new file mode 100644 index 000000000..dfcb12db3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684135.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684175.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684175.jpeg new file mode 100644 index 000000000..dd4f27f13 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684175.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684176.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684176.jpeg new file mode 100644 index 000000000..1ae27eeeb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684176.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684179.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684179.jpeg new file mode 100644 index 000000000..84f5cc1f7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684179.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684188.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684188.jpeg new file mode 100644 index 000000000..d26b20784 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684188.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684195.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684195.jpeg new file mode 100644 index 000000000..61852752a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684195.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684204.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684204.jpeg new file mode 100644 index 000000000..7a6a36391 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684204.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684220.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684220.jpeg new file mode 100644 index 000000000..f389d00fb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684220.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684227.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684227.jpeg new file mode 100644 index 000000000..de8ed2df6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684227.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684237.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684237.jpeg new file mode 100644 index 000000000..fac4e3d12 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684237.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684253.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684253.jpeg new file mode 100644 index 000000000..18404580a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684253.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684261.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684261.jpeg new file mode 100644 index 000000000..2bb75d1d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684261.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684270.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684270.jpeg new file mode 100644 index 000000000..353840970 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684270.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684286.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684286.jpeg new file mode 100644 index 000000000..26495f5b0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684286.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684295.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684295.jpeg new file mode 100644 index 000000000..d2d43d873 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684295.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684303.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684303.jpeg new file mode 100644 index 000000000..baf6ddd96 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684303.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684320.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684320.jpeg new file mode 100644 index 000000000..c53044d4c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684320.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684328.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684328.jpeg new file mode 100644 index 000000000..de1094002 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684328.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684336.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684336.jpeg new file mode 100644 index 000000000..738e57879 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684336.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684353.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684353.jpeg new file mode 100644 index 000000000..b40bf09a6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684353.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684362.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684362.jpeg new file mode 100644 index 000000000..89fe7ba67 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684362.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684369.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684369.jpeg new file mode 100644 index 000000000..2cf9aa3ad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684369.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684378.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684378.jpeg new file mode 100644 index 000000000..6a1897468 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684378.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684395.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684395.jpeg new file mode 100644 index 000000000..52ffeea02 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684395.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684403.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684403.jpeg new file mode 100644 index 000000000..ccf2bfc62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684403.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684412.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684412.jpeg new file mode 100644 index 000000000..22d1a919c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684412.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684428.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684428.jpeg new file mode 100644 index 000000000..b2223ee51 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684428.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684437.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684437.jpeg new file mode 100644 index 000000000..9866ec559 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684437.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684445.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684445.jpeg new file mode 100644 index 000000000..c5ee6949e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684445.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684454.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684454.jpeg new file mode 100644 index 000000000..cb35fb431 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684454.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684470.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684470.jpeg new file mode 100644 index 000000000..768df53be Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684470.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684478.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684478.jpeg new file mode 100644 index 000000000..ea2045e5b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684478.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684486.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684486.jpeg new file mode 100644 index 000000000..a403a7ee5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684486.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684503.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684503.jpeg new file mode 100644 index 000000000..5d901262a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684503.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684510.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684510.jpeg new file mode 100644 index 000000000..f28be1983 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684510.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684518.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684518.jpeg new file mode 100644 index 000000000..245651ba5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684518.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684526.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684526.jpeg new file mode 100644 index 000000000..245651ba5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684526.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684543.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684543.jpeg new file mode 100644 index 000000000..104e61b54 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684543.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684550.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684550.jpeg new file mode 100644 index 000000000..104e61b54 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684550.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684560.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684560.jpeg new file mode 100644 index 000000000..104e61b54 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684560.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684576.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684576.jpeg new file mode 100644 index 000000000..9cce06f28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684576.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684584.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684584.jpeg new file mode 100644 index 000000000..7d1b226e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684584.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684593.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684593.jpeg new file mode 100644 index 000000000..7d1b226e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684593.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684609.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684609.jpeg new file mode 100644 index 000000000..048f939a2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684609.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684618.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684618.jpeg new file mode 100644 index 000000000..71b492231 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684618.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684626.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684626.jpeg new file mode 100644 index 000000000..153c5e081 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684626.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684634.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684634.jpeg new file mode 100644 index 000000000..ce04e6716 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684634.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684651.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684651.jpeg new file mode 100644 index 000000000..d5e97ce3d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684651.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684659.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684659.jpeg new file mode 100644 index 000000000..25cabeaf1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684659.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684668.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684668.jpeg new file mode 100644 index 000000000..9aa130d3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684668.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684685.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684685.jpeg new file mode 100644 index 000000000..c56ec14cd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684685.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684693.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684693.jpeg new file mode 100644 index 000000000..1ffedee86 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684693.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684901.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684901.jpeg new file mode 100644 index 000000000..f0eef140f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630684901.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685010.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685010.jpeg new file mode 100644 index 000000000..e1dbb0683 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685010.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685018.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685018.jpeg new file mode 100644 index 000000000..76239aaf4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685018.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685027.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685027.jpeg new file mode 100644 index 000000000..f68c6bdaa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685027.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685043.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685043.jpeg new file mode 100644 index 000000000..f00b5a1bf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685043.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685052.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685052.jpeg new file mode 100644 index 000000000..99e72df6b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685052.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685060.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685060.jpeg new file mode 100644 index 000000000..97f44d8b3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685060.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685068.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685068.jpeg new file mode 100644 index 000000000..9946450da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685068.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685087.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685087.jpeg new file mode 100644 index 000000000..36a130a65 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685087.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685095.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685095.jpeg new file mode 100644 index 000000000..5db435197 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685095.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685104.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685104.jpeg new file mode 100644 index 000000000..3ac2b6121 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685104.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685121.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685121.jpeg new file mode 100644 index 000000000..74ed04d62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685121.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685130.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685130.jpeg new file mode 100644 index 000000000..8f79f6e2e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685130.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685138.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685138.jpeg new file mode 100644 index 000000000..e801bd969 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685138.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685148.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685148.jpeg new file mode 100644 index 000000000..fdc293ec8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685148.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685164.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685164.jpeg new file mode 100644 index 000000000..de737fadc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685164.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685172.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685172.jpeg new file mode 100644 index 000000000..64a0f0682 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685172.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685181.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685181.jpeg new file mode 100644 index 000000000..ef25b55b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685181.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685190.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685190.jpeg new file mode 100644 index 000000000..60db93fea Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685190.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685206.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685206.jpeg new file mode 100644 index 000000000..0830c5a8d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685206.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685215.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685215.jpeg new file mode 100644 index 000000000..98bf23c26 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685215.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685224.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685224.jpeg new file mode 100644 index 000000000..cd69dacbf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685224.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685232.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685232.jpeg new file mode 100644 index 000000000..dc8314ddb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685232.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685248.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685248.jpeg new file mode 100644 index 000000000..5efdec518 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685248.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685256.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685256.jpeg new file mode 100644 index 000000000..19c8d554b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685256.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685265.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685265.jpeg new file mode 100644 index 000000000..c75f824ce Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685265.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685273.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685273.jpeg new file mode 100644 index 000000000..5837f9473 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685273.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685290.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685290.jpeg new file mode 100644 index 000000000..61bea3708 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685290.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685298.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685298.jpeg new file mode 100644 index 000000000..ffc300c98 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685298.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685307.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685307.jpeg new file mode 100644 index 000000000..9c3ab306d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685307.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685323.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685323.jpeg new file mode 100644 index 000000000..e571941d6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685323.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685328.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685328.jpeg new file mode 100644 index 000000000..d0a0d10c0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685328.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685336.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685336.jpeg new file mode 100644 index 000000000..8c422b420 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685336.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685353.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685353.jpeg new file mode 100644 index 000000000..cde389f4c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685353.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685361.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685361.jpeg new file mode 100644 index 000000000..c5c93a5a0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685361.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685369.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685369.jpeg new file mode 100644 index 000000000..dfd267a2f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685369.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685378.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685378.jpeg new file mode 100644 index 000000000..8985bc0e7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685378.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685395.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685395.jpeg new file mode 100644 index 000000000..1a847d38c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685395.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685404.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685404.jpeg new file mode 100644 index 000000000..2d12f2c15 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685404.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685411.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685411.jpeg new file mode 100644 index 000000000..a2a3ba4e6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685411.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685420.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685420.jpeg new file mode 100644 index 000000000..9ba36e71d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685420.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685435.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685435.jpeg new file mode 100644 index 000000000..ff13fedab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685435.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685443.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685443.jpeg new file mode 100644 index 000000000..e7d0fa597 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685443.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685452.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685452.jpeg new file mode 100644 index 000000000..d5c2e0766 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685452.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685468.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685468.jpeg new file mode 100644 index 000000000..5b44a10a0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685468.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685477.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685477.jpeg new file mode 100644 index 000000000..dacca7461 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685477.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685484.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685484.jpeg new file mode 100644 index 000000000..2ae66021c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685484.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685494.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685494.jpeg new file mode 100644 index 000000000..fd2ae1dd2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685494.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685511.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685511.jpeg new file mode 100644 index 000000000..76ea567df Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685511.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685519.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685519.jpeg new file mode 100644 index 000000000..ffa1b3651 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685519.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685527.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685527.jpeg new file mode 100644 index 000000000..c08eb6e1d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685527.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685543.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685543.jpeg new file mode 100644 index 000000000..7c0694748 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685543.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685586.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685586.jpeg new file mode 100644 index 000000000..a73efbb99 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685586.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685587.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685587.jpeg new file mode 100644 index 000000000..21c41f586 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685587.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685591.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685591.jpeg new file mode 100644 index 000000000..9aecd3738 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685591.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685600.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685600.jpeg new file mode 100644 index 000000000..bb7e5792a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685600.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685608.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685608.jpeg new file mode 100644 index 000000000..7b76fd513 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685608.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685615.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685615.jpeg new file mode 100644 index 000000000..153f09a8b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685615.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685631.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685631.jpeg new file mode 100644 index 000000000..ba7542070 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685631.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685639.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685639.jpeg new file mode 100644 index 000000000..0ec5b28ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685639.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685647.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685647.jpeg new file mode 100644 index 000000000..4a86739f1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685647.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685664.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685664.jpeg new file mode 100644 index 000000000..f61305e32 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685664.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685672.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685672.jpeg new file mode 100644 index 000000000..49997cfab Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685672.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685681.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685681.jpeg new file mode 100644 index 000000000..f13f18769 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685681.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685697.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685697.jpeg new file mode 100644 index 000000000..7bf90bfba Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685697.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685706.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685706.jpeg new file mode 100644 index 000000000..4f9720940 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685706.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685714.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685714.jpeg new file mode 100644 index 000000000..41d2e3aaa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685714.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685722.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685722.jpeg new file mode 100644 index 000000000..98d2b23b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685722.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685739.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685739.jpeg new file mode 100644 index 000000000..a42f60cc2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685739.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685747.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685747.jpeg new file mode 100644 index 000000000..8d45b8122 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685747.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685755.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685755.jpeg new file mode 100644 index 000000000..3c33e80a6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685755.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685763.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685763.jpeg new file mode 100644 index 000000000..09b1aba6d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685763.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685780.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685780.jpeg new file mode 100644 index 000000000..9e4ab4fb4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685780.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685789.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685789.jpeg new file mode 100644 index 000000000..52376bb29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685789.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685797.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685797.jpeg new file mode 100644 index 000000000..4455304e3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685797.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685813.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685813.jpeg new file mode 100644 index 000000000..3b0d942f6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685813.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685822.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685822.jpeg new file mode 100644 index 000000000..0348977c1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685822.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685830.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685830.jpeg new file mode 100644 index 000000000..5411bdc8c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685830.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685838.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685838.jpeg new file mode 100644 index 000000000..751cdea6d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685838.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685855.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685855.jpeg new file mode 100644 index 000000000..159e2374e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685855.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685863.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685863.jpeg new file mode 100644 index 000000000..9675f0c9c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685863.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685872.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685872.jpeg new file mode 100644 index 000000000..e2322ad40 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685872.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685889.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685889.jpeg new file mode 100644 index 000000000..e0ed7b13e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685889.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685897.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685897.jpeg new file mode 100644 index 000000000..3d630e890 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685897.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685905.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685905.jpeg new file mode 100644 index 000000000..65609b44d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685905.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685922.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685922.jpeg new file mode 100644 index 000000000..222f7360a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685922.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685927.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685927.jpeg new file mode 100644 index 000000000..afeb189c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685927.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685934.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685934.jpeg new file mode 100644 index 000000000..190712651 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685934.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685943.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685943.jpeg new file mode 100644 index 000000000..9acf1f7b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685943.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685960.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685960.jpeg new file mode 100644 index 000000000..d9842c153 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685960.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685968.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685968.jpeg new file mode 100644 index 000000000..93bced201 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685968.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685976.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685976.jpeg new file mode 100644 index 000000000..a81daf794 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685976.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685985.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685985.jpeg new file mode 100644 index 000000000..e78d67b84 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630685985.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686001.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686001.jpeg new file mode 100644 index 000000000..4d9037633 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686001.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686010.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686010.jpeg new file mode 100644 index 000000000..168c85a93 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686010.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686018.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686018.jpeg new file mode 100644 index 000000000..ad7015012 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686018.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686026.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686026.jpeg new file mode 100644 index 000000000..dbccf8c2a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686026.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686044.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686044.jpeg new file mode 100644 index 000000000..8528d3b3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686044.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686054.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686054.jpeg new file mode 100644 index 000000000..9eef7db6f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686054.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686063.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686063.jpeg new file mode 100644 index 000000000..0d9ecfcd4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686063.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686072.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686072.jpeg new file mode 100644 index 000000000..3e027351c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686072.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686080.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686080.jpeg new file mode 100644 index 000000000..5f4b1a0a6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686080.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686097.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686097.jpeg new file mode 100644 index 000000000..1d5be99cd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686097.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686306.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686306.jpeg new file mode 100644 index 000000000..9953dd5da Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686306.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686414.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686414.jpeg new file mode 100644 index 000000000..41df267fe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686414.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686422.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686422.jpeg new file mode 100644 index 000000000..41df267fe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686422.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686431.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686431.jpeg new file mode 100644 index 000000000..8afa410c3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686431.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686447.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686447.jpeg new file mode 100644 index 000000000..7b52db657 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686447.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686457.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686457.jpeg new file mode 100644 index 000000000..61a65bc80 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686457.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686465.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686465.jpeg new file mode 100644 index 000000000..18e0dde28 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686465.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686473.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686473.jpeg new file mode 100644 index 000000000..86b461ce5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686473.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686489.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686489.jpeg new file mode 100644 index 000000000..e45e04201 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686489.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686498.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686498.jpeg new file mode 100644 index 000000000..c3c29cc30 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686498.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686506.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686506.jpeg new file mode 100644 index 000000000..12e0be43e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686506.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686514.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686514.jpeg new file mode 100644 index 000000000..5305ae2b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686514.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686562.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686562.jpeg new file mode 100644 index 000000000..ac0a63ea6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686562.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686564.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686564.jpeg new file mode 100644 index 000000000..bd475dbc7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686564.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686565.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686565.jpeg new file mode 100644 index 000000000..01f7bacf2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686565.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686572.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686572.jpeg new file mode 100644 index 000000000..d5ba35715 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686572.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686585.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686585.jpeg new file mode 100644 index 000000000..66df92dbd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686585.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686594.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686594.jpeg new file mode 100644 index 000000000..c6f36f5b9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686594.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686611.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686611.jpeg new file mode 100644 index 000000000..2311a8f57 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686611.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686619.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686619.jpeg new file mode 100644 index 000000000..9a4b6bf0f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686619.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686627.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686627.jpeg new file mode 100644 index 000000000..d1acc8afd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686627.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686643.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686643.jpeg new file mode 100644 index 000000000..26a959e32 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686643.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686652.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686652.jpeg new file mode 100644 index 000000000..13fe9a7a5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686652.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686661.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686661.jpeg new file mode 100644 index 000000000..b8a4b9c1e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686661.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686668.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686668.jpeg new file mode 100644 index 000000000..fae2fa899 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686668.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686686.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686686.jpeg new file mode 100644 index 000000000..55913459d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686686.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686694.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686694.jpeg new file mode 100644 index 000000000..8253e7e64 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686694.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686702.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686702.jpeg new file mode 100644 index 000000000..3d39191ba Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686702.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686719.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686719.jpeg new file mode 100644 index 000000000..b4893cba7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686719.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686727.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686727.jpeg new file mode 100644 index 000000000..509eea293 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686727.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686735.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686735.jpeg new file mode 100644 index 000000000..3cd296990 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686735.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686752.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686752.jpeg new file mode 100644 index 000000000..3941332df Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686752.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686760.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686760.jpeg new file mode 100644 index 000000000..a0b2649c8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686760.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686768.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686768.jpeg new file mode 100644 index 000000000..73e9fdbf6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686768.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686777.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686777.jpeg new file mode 100644 index 000000000..974feea58 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686777.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686794.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686794.jpeg new file mode 100644 index 000000000..7c846b859 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686794.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686802.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686802.jpeg new file mode 100644 index 000000000..056dee920 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686802.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686811.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686811.jpeg new file mode 100644 index 000000000..1491fd357 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686811.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686819.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686819.jpeg new file mode 100644 index 000000000..bc9778305 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686819.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686835.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686835.jpeg new file mode 100644 index 000000000..f7e570f43 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686835.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686844.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686844.jpeg new file mode 100644 index 000000000..b337dae73 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686844.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686852.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686852.jpeg new file mode 100644 index 000000000..e6310dbec Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686852.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686860.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686860.jpeg new file mode 100644 index 000000000..cff3e5ac9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686860.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686877.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686877.jpeg new file mode 100644 index 000000000..3b90c8d71 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686877.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686886.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686886.jpeg new file mode 100644 index 000000000..ead95cabe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686886.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686894.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686894.jpeg new file mode 100644 index 000000000..11368d332 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686894.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686911.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686911.jpeg new file mode 100644 index 000000000..610021704 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686911.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686919.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686919.jpeg new file mode 100644 index 000000000..372e5ae39 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686919.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686925.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686925.jpeg new file mode 100644 index 000000000..7126ff505 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686925.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686939.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686939.jpeg new file mode 100644 index 000000000..88dd01cad Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686939.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686947.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686947.jpeg new file mode 100644 index 000000000..c1f27747a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686947.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686956.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686956.jpeg new file mode 100644 index 000000000..2a4056893 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686956.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686972.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686972.jpeg new file mode 100644 index 000000000..4913d2a5d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686972.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686980.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686980.jpeg new file mode 100644 index 000000000..cd19a8860 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686980.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686989.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686989.jpeg new file mode 100644 index 000000000..9c6c12c49 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686989.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686997.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686997.jpeg new file mode 100644 index 000000000..074222068 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630686997.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687014.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687014.jpeg new file mode 100644 index 000000000..9c07e0ef9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687014.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687022.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687022.jpeg new file mode 100644 index 000000000..8770fd7ef Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687022.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687031.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687031.jpeg new file mode 100644 index 000000000..5814af343 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687031.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687039.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687039.jpeg new file mode 100644 index 000000000..554fc8b27 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687039.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687056.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687056.jpeg new file mode 100644 index 000000000..b9fde1a62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687056.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687064.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687064.jpeg new file mode 100644 index 000000000..cefba84a6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687064.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687072.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687072.jpeg new file mode 100644 index 000000000..9ff788e98 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687072.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687089.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687089.jpeg new file mode 100644 index 000000000..d27b81dc4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687089.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687097.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687097.jpeg new file mode 100644 index 000000000..33036baae Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687097.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687105.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687105.jpeg new file mode 100644 index 000000000..76a353207 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687105.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687306.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687306.jpeg new file mode 100644 index 000000000..e17af98ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687306.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687431.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687431.jpeg new file mode 100644 index 000000000..41272ee64 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687431.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687439.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687439.jpeg new file mode 100644 index 000000000..41272ee64 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687439.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687448.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687448.jpeg new file mode 100644 index 000000000..b66522edf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687448.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687456.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687456.jpeg new file mode 100644 index 000000000..0608e6fda Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687456.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687473.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687473.jpeg new file mode 100644 index 000000000..c1f4cdfea Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687473.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687481.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687481.jpeg new file mode 100644 index 000000000..e539a978d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687481.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687489.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687489.jpeg new file mode 100644 index 000000000..46e978cf4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687489.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687506.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687506.jpeg new file mode 100644 index 000000000..f778bca3a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687506.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687514.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687514.jpeg new file mode 100644 index 000000000..f36edf0b6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687514.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687523.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687523.jpeg new file mode 100644 index 000000000..4c670779b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687523.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687539.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687539.jpeg new file mode 100644 index 000000000..64d170cb4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687539.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687548.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687548.jpeg new file mode 100644 index 000000000..c5cbc4fb0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687548.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687556.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687556.jpeg new file mode 100644 index 000000000..d1587e88f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687556.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687565.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687565.jpeg new file mode 100644 index 000000000..6e2585428 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687565.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687581.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687581.jpeg new file mode 100644 index 000000000..d5033c71e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687581.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687589.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687589.jpeg new file mode 100644 index 000000000..55460b16f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687589.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687597.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687597.jpeg new file mode 100644 index 000000000..982a05234 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687597.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687615.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687615.jpeg new file mode 100644 index 000000000..30ab87dc8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687615.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687623.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687623.jpeg new file mode 100644 index 000000000..73057f801 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687623.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687631.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687631.jpeg new file mode 100644 index 000000000..2ee33dc7c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687631.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687648.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687648.jpeg new file mode 100644 index 000000000..7f827ac24 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687648.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687656.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687656.jpeg new file mode 100644 index 000000000..6666c9050 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687656.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687696.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687696.jpeg new file mode 100644 index 000000000..911ac8268 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687696.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687697.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687697.jpeg new file mode 100644 index 000000000..a2051a358 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687697.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687705.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687705.jpeg new file mode 100644 index 000000000..6768013bb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687705.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687715.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687715.jpeg new file mode 100644 index 000000000..6a6921b3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687715.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687728.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687728.jpeg new file mode 100644 index 000000000..40b70163c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687728.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687736.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687736.jpeg new file mode 100644 index 000000000..d6d3aa856 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687736.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687743.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687743.jpeg new file mode 100644 index 000000000..a38e27f52 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687743.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687760.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687760.jpeg new file mode 100644 index 000000000..ac77538ee Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687760.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687769.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687769.jpeg new file mode 100644 index 000000000..e8f58d47f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687769.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687772.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687772.jpeg new file mode 100644 index 000000000..02e4401ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630687772.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688217.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688217.jpeg new file mode 100644 index 000000000..0f147fd82 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688217.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688224.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688224.jpeg new file mode 100644 index 000000000..b308e1008 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688224.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688232.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688232.jpeg new file mode 100644 index 000000000..513e18e82 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688232.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688241.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688241.jpeg new file mode 100644 index 000000000..444908f0c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688241.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688248.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688248.jpeg new file mode 100644 index 000000000..ac539f60d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688248.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688265.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688265.jpeg new file mode 100644 index 000000000..8032747e6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688265.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688274.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688274.jpeg new file mode 100644 index 000000000..757fbc979 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688274.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688282.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688282.jpeg new file mode 100644 index 000000000..131821629 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688282.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688290.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688290.jpeg new file mode 100644 index 000000000..36726362c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688290.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688340.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688340.jpeg new file mode 100644 index 000000000..f21eec54f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688340.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688349.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688349.jpeg new file mode 100644 index 000000000..ad1bef951 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688349.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688357.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688357.jpeg new file mode 100644 index 000000000..2af98a53d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688357.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688366.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688366.jpeg new file mode 100644 index 000000000..bf386a24e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688366.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688382.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688382.jpeg new file mode 100644 index 000000000..15b219002 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688382.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688391.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688391.jpeg new file mode 100644 index 000000000..b4d562d4d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688391.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688399.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688399.jpeg new file mode 100644 index 000000000..4f339b415 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688399.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688407.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688407.jpeg new file mode 100644 index 000000000..6f370e3f9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688407.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688482.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688482.jpeg new file mode 100644 index 000000000..6d3142a0f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688482.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688492.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688492.jpeg new file mode 100644 index 000000000..ea162a567 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688492.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688508.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688508.jpeg new file mode 100644 index 000000000..88427fe97 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688508.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688515.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688515.jpeg new file mode 100644 index 000000000..8cccfea0e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688515.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688524.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688524.jpeg new file mode 100644 index 000000000..6ab04e51c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688524.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688541.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688541.jpeg new file mode 100644 index 000000000..9641787ea Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688541.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688549.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688549.jpeg new file mode 100644 index 000000000..c156d3dc7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688549.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688558.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688558.jpeg new file mode 100644 index 000000000..0851e3239 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688558.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688574.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688574.jpeg new file mode 100644 index 000000000..1b6f757d6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688574.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688582.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688582.jpeg new file mode 100644 index 000000000..57910d9a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688582.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688591.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688591.jpeg new file mode 100644 index 000000000..a7ba030c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688591.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688607.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688607.jpeg new file mode 100644 index 000000000..3d1a8b906 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688607.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688616.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688616.jpeg new file mode 100644 index 000000000..26effc579 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688616.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688623.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688623.jpeg new file mode 100644 index 000000000..d40022794 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688623.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688632.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688632.jpeg new file mode 100644 index 000000000..b0b14605b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688632.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688758.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688758.jpeg new file mode 100644 index 000000000..273c0cdc2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688758.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688760.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688760.jpeg new file mode 100644 index 000000000..70377f697 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688760.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688773.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688773.jpeg new file mode 100644 index 000000000..b57cd5ed2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688773.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688778.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688778.jpeg new file mode 100644 index 000000000..aa45c9f02 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688778.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688793.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688793.jpeg new file mode 100644 index 000000000..3239be1d7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688793.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688802.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688802.jpeg new file mode 100644 index 000000000..1a2f92b9e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688802.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688809.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688809.jpeg new file mode 100644 index 000000000..00487bbc6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688809.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688826.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688826.jpeg new file mode 100644 index 000000000..831587c94 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688826.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688850.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688850.jpeg new file mode 100644 index 000000000..a84e6c65e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688850.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688859.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688859.jpeg new file mode 100644 index 000000000..00195596a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688859.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688868.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688868.jpeg new file mode 100644 index 000000000..7559278f6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688868.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688876.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688876.jpeg new file mode 100644 index 000000000..8f70e6acf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688876.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688885.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688885.jpeg new file mode 100644 index 000000000..0af151921 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688885.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688901.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688901.jpeg new file mode 100644 index 000000000..8edb21c32 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688901.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688910.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688910.jpeg new file mode 100644 index 000000000..ddbb2f502 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688910.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688918.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688918.jpeg new file mode 100644 index 000000000..b84c444af Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688918.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688926.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688926.jpeg new file mode 100644 index 000000000..028fdb64c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688926.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688945.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688945.jpeg new file mode 100644 index 000000000..fab7814f5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688945.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688957.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688957.jpeg new file mode 100644 index 000000000..2e9c789d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688957.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688960.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688960.jpeg new file mode 100644 index 000000000..92a9b93ce Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688960.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688976.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688976.jpeg new file mode 100644 index 000000000..835e3ad7f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688976.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688984.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688984.jpeg new file mode 100644 index 000000000..94d5404ec Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688984.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688993.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688993.jpeg new file mode 100644 index 000000000..ceeb61b0a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630688993.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689010.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689010.jpeg new file mode 100644 index 000000000..55d5c4cfa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689010.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689018.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689018.jpeg new file mode 100644 index 000000000..78e6a52a6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689018.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689026.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689026.jpeg new file mode 100644 index 000000000..91ca98841 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689026.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689035.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689035.jpeg new file mode 100644 index 000000000..b010017b8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689035.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689051.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689051.jpeg new file mode 100644 index 000000000..71c54efa0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689051.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689060.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689060.jpeg new file mode 100644 index 000000000..7cb8bc4f5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689060.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689068.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689068.jpeg new file mode 100644 index 000000000..4398d3027 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689068.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689076.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689076.jpeg new file mode 100644 index 000000000..c3c6e3353 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689076.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689093.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689093.jpeg new file mode 100644 index 000000000..f573efd90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689093.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689101.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689101.jpeg new file mode 100644 index 000000000..18702d9b5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689101.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689110.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689110.jpeg new file mode 100644 index 000000000..fb6c15999 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689110.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689127.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689127.jpeg new file mode 100644 index 000000000..fa9b70efb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689127.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689135.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689135.jpeg new file mode 100644 index 000000000..98943cb9a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689135.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689143.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689143.jpeg new file mode 100644 index 000000000..b8263331f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689143.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689160.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689160.jpeg new file mode 100644 index 000000000..3040ab40b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689160.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689168.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689168.jpeg new file mode 100644 index 000000000..19c577d2e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689168.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689177.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689177.jpeg new file mode 100644 index 000000000..d7f357d9b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689177.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689185.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689185.jpeg new file mode 100644 index 000000000..1c724a352 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689185.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689201.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689201.jpeg new file mode 100644 index 000000000..ee713693f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689201.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689210.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689210.jpeg new file mode 100644 index 000000000..47bdbf0c7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689210.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689218.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689218.jpeg new file mode 100644 index 000000000..aeef0dfd2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689218.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689235.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689235.jpeg new file mode 100644 index 000000000..70c577cde Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689235.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689243.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689243.jpeg new file mode 100644 index 000000000..c2bb50bf1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689243.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689252.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689252.jpeg new file mode 100644 index 000000000..72652ebb0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689252.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689268.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689268.jpeg new file mode 100644 index 000000000..f35c736ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689268.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689276.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689276.jpeg new file mode 100644 index 000000000..21fd572ce Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689276.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689284.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689284.jpeg new file mode 100644 index 000000000..d3109d1bb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689284.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689293.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689293.jpeg new file mode 100644 index 000000000..d1372811a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689293.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689310.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689310.jpeg new file mode 100644 index 000000000..409bb7c86 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689310.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689318.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689318.jpeg new file mode 100644 index 000000000..d791f8b5b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689318.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689327.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689327.jpeg new file mode 100644 index 000000000..89c1788df Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689327.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689343.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689343.jpeg new file mode 100644 index 000000000..3a6747fd7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689343.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689351.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689351.jpeg new file mode 100644 index 000000000..130463cc2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689351.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689359.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689359.jpeg new file mode 100644 index 000000000..f56414416 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689359.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689368.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689368.jpeg new file mode 100644 index 000000000..cd33ded11 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689368.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689384.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689384.jpeg new file mode 100644 index 000000000..83399a0fe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689384.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689393.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689393.jpeg new file mode 100644 index 000000000..2a9597b18 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689393.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689401.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689401.jpeg new file mode 100644 index 000000000..d586b8355 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689401.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689410.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689410.jpeg new file mode 100644 index 000000000..33b761eca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689410.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689426.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689426.jpeg new file mode 100644 index 000000000..28538a78d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689426.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689434.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689434.jpeg new file mode 100644 index 000000000..4e381ec91 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689434.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689443.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689443.jpeg new file mode 100644 index 000000000..6e8cd0a88 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689443.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689459.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689459.jpeg new file mode 100644 index 000000000..03552a959 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689459.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689468.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689468.jpeg new file mode 100644 index 000000000..f6d1a4259 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689468.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689476.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689476.jpeg new file mode 100644 index 000000000..43b9bb1c4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689476.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689485.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689485.jpeg new file mode 100644 index 000000000..cc8ec7be0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689485.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689501.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689501.jpeg new file mode 100644 index 000000000..459ced7e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689501.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689510.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689510.jpeg new file mode 100644 index 000000000..93dd0c045 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689510.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689518.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689518.jpeg new file mode 100644 index 000000000..df6e86a15 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689518.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689526.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689526.jpeg new file mode 100644 index 000000000..711f10d98 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689526.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689543.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689543.jpeg new file mode 100644 index 000000000..7d19688f9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689543.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689551.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689551.jpeg new file mode 100644 index 000000000..3f2a5023d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689551.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689559.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689559.jpeg new file mode 100644 index 000000000..8f2114363 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689559.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689576.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689576.jpeg new file mode 100644 index 000000000..6e3740a12 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689576.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689584.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689584.jpeg new file mode 100644 index 000000000..15f879511 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689584.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689593.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689593.jpeg new file mode 100644 index 000000000..27cb9c896 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689593.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689609.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689609.jpeg new file mode 100644 index 000000000..4abf8b42f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689609.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689618.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689618.jpeg new file mode 100644 index 000000000..76e171099 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689618.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689626.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689626.jpeg new file mode 100644 index 000000000..a10f7eec1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689626.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689634.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689634.jpeg new file mode 100644 index 000000000..09b599e8b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689634.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689651.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689651.jpeg new file mode 100644 index 000000000..67e33f909 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689651.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689659.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689659.jpeg new file mode 100644 index 000000000..3cd072b05 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689659.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689668.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689668.jpeg new file mode 100644 index 000000000..da46a1f17 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689668.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689676.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689676.jpeg new file mode 100644 index 000000000..3b6cb5846 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689676.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689692.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689692.jpeg new file mode 100644 index 000000000..f450f8511 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689692.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689701.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689701.jpeg new file mode 100644 index 000000000..8355f7308 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689701.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689709.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689709.jpeg new file mode 100644 index 000000000..667cc8e6a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689709.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689718.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689718.jpeg new file mode 100644 index 000000000..e11e8c199 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689718.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689734.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689734.jpeg new file mode 100644 index 000000000..b0a33e825 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689734.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689742.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689742.jpeg new file mode 100644 index 000000000..91a8b448c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689742.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689751.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689751.jpeg new file mode 100644 index 000000000..af50944b0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689751.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689759.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689759.jpeg new file mode 100644 index 000000000..7fc5a5272 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689759.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689776.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689776.jpeg new file mode 100644 index 000000000..dffc9d63b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689776.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689784.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689784.jpeg new file mode 100644 index 000000000..aee5a87b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689784.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689792.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689792.jpeg new file mode 100644 index 000000000..a8cad11ff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689792.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689801.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689801.jpeg new file mode 100644 index 000000000..b3f1c9074 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689801.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689818.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689818.jpeg new file mode 100644 index 000000000..0ad6ddd02 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689818.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689826.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689826.jpeg new file mode 100644 index 000000000..8a32793ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689826.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689834.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689834.jpeg new file mode 100644 index 000000000..3acfd4746 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689834.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689842.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689842.jpeg new file mode 100644 index 000000000..079e1cbf0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689842.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689859.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689859.jpeg new file mode 100644 index 000000000..b8d663d53 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689859.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689867.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689867.jpeg new file mode 100644 index 000000000..566e6c256 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689867.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689876.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689876.jpeg new file mode 100644 index 000000000..6afb169bd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689876.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689892.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689892.jpeg new file mode 100644 index 000000000..53b9f77e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689892.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689901.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689901.jpeg new file mode 100644 index 000000000..32d2a601c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689901.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689909.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689909.jpeg new file mode 100644 index 000000000..d7a5d2794 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689909.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689917.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689917.jpeg new file mode 100644 index 000000000..a7fd0a959 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689917.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689934.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689934.jpeg new file mode 100644 index 000000000..25f220639 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689934.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689942.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689942.jpeg new file mode 100644 index 000000000..8409001fa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689942.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689951.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689951.jpeg new file mode 100644 index 000000000..ccc32e4a0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689951.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689967.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689967.jpeg new file mode 100644 index 000000000..f4c8f3183 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689967.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689976.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689976.jpeg new file mode 100644 index 000000000..d4bd87958 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689976.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689984.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689984.jpeg new file mode 100644 index 000000000..953291fff Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689984.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689993.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689993.jpeg new file mode 100644 index 000000000..9dc6e12a8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630689993.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690009.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690009.jpeg new file mode 100644 index 000000000..38d732a2b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690009.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690017.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690017.jpeg new file mode 100644 index 000000000..f69acb484 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690017.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690026.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690026.jpeg new file mode 100644 index 000000000..2a86338b3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690026.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690043.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690043.jpeg new file mode 100644 index 000000000..ff0b27af1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690043.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690051.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690051.jpeg new file mode 100644 index 000000000..f02712cc6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690051.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690059.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690059.jpeg new file mode 100644 index 000000000..e594d3ea7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690059.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690075.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690075.jpeg new file mode 100644 index 000000000..7a17d78e6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690075.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690084.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690084.jpeg new file mode 100644 index 000000000..afb82a849 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690084.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690092.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690092.jpeg new file mode 100644 index 000000000..131803a90 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690092.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690109.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690109.jpeg new file mode 100644 index 000000000..1d7a3fa4d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690109.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690117.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690117.jpeg new file mode 100644 index 000000000..24bd32ccf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690117.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690126.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690126.jpeg new file mode 100644 index 000000000..a30cd7151 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690126.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690142.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690142.jpeg new file mode 100644 index 000000000..dcd25b856 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690142.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690151.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690151.jpeg new file mode 100644 index 000000000..7cafd8521 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690151.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690159.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690159.jpeg new file mode 100644 index 000000000..1225cb203 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690159.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690167.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690167.jpeg new file mode 100644 index 000000000..e56233cd3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690167.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690184.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690184.jpeg new file mode 100644 index 000000000..4c7605f0b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690184.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690192.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690192.jpeg new file mode 100644 index 000000000..1ac280f78 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690192.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690201.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690201.jpeg new file mode 100644 index 000000000..8da29fb19 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690201.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690217.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690217.jpeg new file mode 100644 index 000000000..f67a23a40 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690217.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690226.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690226.jpeg new file mode 100644 index 000000000..e67e84cfa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690226.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690235.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690235.jpeg new file mode 100644 index 000000000..d4dfa0bd4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690235.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690251.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690251.jpeg new file mode 100644 index 000000000..6e82fd1b0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690251.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690259.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690259.jpeg new file mode 100644 index 000000000..a505d8a38 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690259.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690267.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690267.jpeg new file mode 100644 index 000000000..1be2847f2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690267.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690285.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690285.jpeg new file mode 100644 index 000000000..a7a0db5ca Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690285.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690293.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690293.jpeg new file mode 100644 index 000000000..95038267b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690293.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690301.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690301.jpeg new file mode 100644 index 000000000..dedb9a811 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690301.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690318.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690318.jpeg new file mode 100644 index 000000000..9a603fe3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690318.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690326.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690326.jpeg new file mode 100644 index 000000000..8106968f4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690326.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690335.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690335.jpeg new file mode 100644 index 000000000..37641e362 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690335.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690343.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690343.jpeg new file mode 100644 index 000000000..f131473d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690343.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690359.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690359.jpeg new file mode 100644 index 000000000..905ff7eb5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690359.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690367.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690367.jpeg new file mode 100644 index 000000000..f5a5a5de7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690367.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690376.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690376.jpeg new file mode 100644 index 000000000..139fa048e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690376.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690392.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690392.jpeg new file mode 100644 index 000000000..a76003b18 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690392.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690401.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690401.jpeg new file mode 100644 index 000000000..5e60588a9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690401.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690409.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690409.jpeg new file mode 100644 index 000000000..3535d39c7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690409.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690417.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690417.jpeg new file mode 100644 index 000000000..b9c5d3dc0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690417.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690434.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690434.jpeg new file mode 100644 index 000000000..a740838cc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690434.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690442.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690442.jpeg new file mode 100644 index 000000000..2031f20fd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690442.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690451.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690451.jpeg new file mode 100644 index 000000000..4b2c8e416 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690451.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690459.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690459.jpeg new file mode 100644 index 000000000..9d35ffed7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690459.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690476.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690476.jpeg new file mode 100644 index 000000000..0253631a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690476.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690484.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690484.jpeg new file mode 100644 index 000000000..fa823d450 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690484.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690492.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690492.jpeg new file mode 100644 index 000000000..d4ef0cee0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690492.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690501.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690501.jpeg new file mode 100644 index 000000000..86950b634 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690501.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690517.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690517.jpeg new file mode 100644 index 000000000..d45dccd17 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690517.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690525.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690525.jpeg new file mode 100644 index 000000000..c6a8ad211 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690525.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690534.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690534.jpeg new file mode 100644 index 000000000..7f0445149 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690534.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690543.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690543.jpeg new file mode 100644 index 000000000..4d664989a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690543.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690559.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690559.jpeg new file mode 100644 index 000000000..662d68459 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690559.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690568.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690568.jpeg new file mode 100644 index 000000000..4f61d9b75 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690568.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690576.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690576.jpeg new file mode 100644 index 000000000..0ffcad39a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690576.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690593.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690593.jpeg new file mode 100644 index 000000000..f0b4cbb63 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690593.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690601.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690601.jpeg new file mode 100644 index 000000000..79d8a275d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690601.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690609.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690609.jpeg new file mode 100644 index 000000000..4dcb3ac2d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690609.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690618.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690618.jpeg new file mode 100644 index 000000000..2997df97a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690618.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690634.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690634.jpeg new file mode 100644 index 000000000..5eb164ac8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690634.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690643.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690643.jpeg new file mode 100644 index 000000000..9cff98ab3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690643.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690657.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690657.jpeg new file mode 100644 index 000000000..f31ff0c8a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690657.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690664.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690664.jpeg new file mode 100644 index 000000000..0468d3bb2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690664.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690672.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690672.jpeg new file mode 100644 index 000000000..b33ff9882 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690672.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690688.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690688.jpeg new file mode 100644 index 000000000..264d3b75f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690688.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690697.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690697.jpeg new file mode 100644 index 000000000..937771241 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690697.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690705.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690705.jpeg new file mode 100644 index 000000000..80116f286 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690705.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690713.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690713.jpeg new file mode 100644 index 000000000..bd8d19e08 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690713.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690730.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690730.jpeg new file mode 100644 index 000000000..34e0c0418 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690730.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690738.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690738.jpeg new file mode 100644 index 000000000..dfaf10b0b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690738.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690747.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690747.jpeg new file mode 100644 index 000000000..8a3f812d6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690747.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690763.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690763.jpeg new file mode 100644 index 000000000..c956c104c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690763.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690772.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690772.jpeg new file mode 100644 index 000000000..25ad140a0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690772.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690780.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690780.jpeg new file mode 100644 index 000000000..e0cae6c69 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690780.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690788.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690788.jpeg new file mode 100644 index 000000000..7cb8ae533 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690788.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690797.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690797.jpeg new file mode 100644 index 000000000..d871cffcc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690797.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690805.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690805.jpeg new file mode 100644 index 000000000..0367b9941 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690805.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690814.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690814.jpeg new file mode 100644 index 000000000..afda8049a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690814.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690822.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690822.jpeg new file mode 100644 index 000000000..47aedf396 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690822.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690830.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690830.jpeg new file mode 100644 index 000000000..d0da09a60 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690830.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690839.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690839.jpeg new file mode 100644 index 000000000..b858eba44 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690839.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690847.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690847.jpeg new file mode 100644 index 000000000..759f5e905 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690847.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690856.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690856.jpeg new file mode 100644 index 000000000..653c637e5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690856.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690863.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690863.jpeg new file mode 100644 index 000000000..b7b33d7d4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690863.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690872.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690872.jpeg new file mode 100644 index 000000000..8e57ec547 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690872.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690880.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690880.jpeg new file mode 100644 index 000000000..e38b68996 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690880.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690888.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690888.jpeg new file mode 100644 index 000000000..4a5cd561e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690888.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690896.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690896.jpeg new file mode 100644 index 000000000..36f9120fd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690896.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690905.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690905.jpeg new file mode 100644 index 000000000..855e93dfa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690905.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690913.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690913.jpeg new file mode 100644 index 000000000..2a7b7785f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690913.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690922.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690922.jpeg new file mode 100644 index 000000000..f028da39f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690922.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690930.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690930.jpeg new file mode 100644 index 000000000..40d0746f3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690930.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690938.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690938.jpeg new file mode 100644 index 000000000..81f83cb06 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690938.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690947.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690947.jpeg new file mode 100644 index 000000000..49fea1e57 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690947.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690955.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690955.jpeg new file mode 100644 index 000000000..b8131e39d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690955.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690963.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690963.jpeg new file mode 100644 index 000000000..805c0039a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690963.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690971.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690971.jpeg new file mode 100644 index 000000000..73ae79173 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690971.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690980.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690980.jpeg new file mode 100644 index 000000000..c2f3f0f08 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690980.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690988.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690988.jpeg new file mode 100644 index 000000000..adea0b306 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690988.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690996.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690996.jpeg new file mode 100644 index 000000000..ea04274e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630690996.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691005.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691005.jpeg new file mode 100644 index 000000000..0fa5d9415 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691005.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691013.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691013.jpeg new file mode 100644 index 000000000..d73d12850 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691013.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691022.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691022.jpeg new file mode 100644 index 000000000..4cd3bd532 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691022.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691030.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691030.jpeg new file mode 100644 index 000000000..473012a0d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691030.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691038.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691038.jpeg new file mode 100644 index 000000000..09c7fb3b3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691038.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691047.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691047.jpeg new file mode 100644 index 000000000..02f0ea848 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691047.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691055.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691055.jpeg new file mode 100644 index 000000000..6246832db Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691055.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691063.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691063.jpeg new file mode 100644 index 000000000..fb80c25db Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691063.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691072.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691072.jpeg new file mode 100644 index 000000000..c9eed30cd Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691072.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691080.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691080.jpeg new file mode 100644 index 000000000..a2584101a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691080.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691088.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691088.jpeg new file mode 100644 index 000000000..3b81becf6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691088.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691097.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691097.jpeg new file mode 100644 index 000000000..d4ce0f356 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691097.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691105.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691105.jpeg new file mode 100644 index 000000000..bb8036563 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691105.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691113.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691113.jpeg new file mode 100644 index 000000000..89648d8ae Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691113.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691122.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691122.jpeg new file mode 100644 index 000000000..4c5fbc232 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691122.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691130.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691130.jpeg new file mode 100644 index 000000000..0d6124284 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691130.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691138.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691138.jpeg new file mode 100644 index 000000000..b2ace069c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691138.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691147.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691147.jpeg new file mode 100644 index 000000000..c96b741b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691147.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691155.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691155.jpeg new file mode 100644 index 000000000..ea132b51a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691155.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691163.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691163.jpeg new file mode 100644 index 000000000..a3cc715c5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691163.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691172.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691172.jpeg new file mode 100644 index 000000000..9c0c6dfa8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691172.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691180.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691180.jpeg new file mode 100644 index 000000000..6f707b144 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691180.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691188.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691188.jpeg new file mode 100644 index 000000000..3dcdd1a00 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691188.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691197.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691197.jpeg new file mode 100644 index 000000000..d9957fa50 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691197.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691205.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691205.jpeg new file mode 100644 index 000000000..ae91e88c8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691205.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691213.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691213.jpeg new file mode 100644 index 000000000..459b7bfea Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691213.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691222.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691222.jpeg new file mode 100644 index 000000000..c88735a46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691222.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691230.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691230.jpeg new file mode 100644 index 000000000..1f0afbe5b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691230.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691238.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691238.jpeg new file mode 100644 index 000000000..7bbdbe06b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691238.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691247.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691247.jpeg new file mode 100644 index 000000000..ac821be7d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691247.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691255.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691255.jpeg new file mode 100644 index 000000000..f961e1b7d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691255.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691264.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691264.jpeg new file mode 100644 index 000000000..86cd7f0ec Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691264.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691271.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691271.jpeg new file mode 100644 index 000000000..56fdcb959 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691271.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691280.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691280.jpeg new file mode 100644 index 000000000..3173755c9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691280.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691288.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691288.jpeg new file mode 100644 index 000000000..0180fbd5b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691288.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691297.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691297.jpeg new file mode 100644 index 000000000..28b5dcca6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691297.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691305.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691305.jpeg new file mode 100644 index 000000000..c931b93a4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691305.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691313.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691313.jpeg new file mode 100644 index 000000000..3b83c7d25 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691313.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691321.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691321.jpeg new file mode 100644 index 000000000..433034c39 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691321.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691330.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691330.jpeg new file mode 100644 index 000000000..da68e3ed4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691330.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691338.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691338.jpeg new file mode 100644 index 000000000..63571fae4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691338.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691347.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691347.jpeg new file mode 100644 index 000000000..65d3f44e4 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691347.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691355.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691355.jpeg new file mode 100644 index 000000000..31bf52b4c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691355.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691372.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691372.jpeg new file mode 100644 index 000000000..9128bd6c0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691372.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691380.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691380.jpeg new file mode 100644 index 000000000..b7138c255 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691380.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691388.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691388.jpeg new file mode 100644 index 000000000..87d0d64d1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691388.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691397.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691397.jpeg new file mode 100644 index 000000000..704d91746 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691397.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691405.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691405.jpeg new file mode 100644 index 000000000..4be0fbb46 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691405.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691413.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691413.jpeg new file mode 100644 index 000000000..6200c763b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691413.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691421.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691421.jpeg new file mode 100644 index 000000000..9d978ee4b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691421.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691430.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691430.jpeg new file mode 100644 index 000000000..89d89799b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691430.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691438.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691438.jpeg new file mode 100644 index 000000000..d53174cf2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691438.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691446.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691446.jpeg new file mode 100644 index 000000000..d716d5823 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691446.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691455.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691455.jpeg new file mode 100644 index 000000000..f7417decb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691455.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691463.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691463.jpeg new file mode 100644 index 000000000..9aa54ae05 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691463.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691472.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691472.jpeg new file mode 100644 index 000000000..2af7579c6 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691472.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691480.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691480.jpeg new file mode 100644 index 000000000..4a5f9822a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691480.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691488.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691488.jpeg new file mode 100644 index 000000000..a7ff9a754 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691488.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691496.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691496.jpeg new file mode 100644 index 000000000..203534170 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691496.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691505.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691505.jpeg new file mode 100644 index 000000000..98ad4a010 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691505.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691513.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691513.jpeg new file mode 100644 index 000000000..70dddec57 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691513.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691522.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691522.jpeg new file mode 100644 index 000000000..f49bb643f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691522.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691530.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691530.jpeg new file mode 100644 index 000000000..ea6eea35a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691530.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691538.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691538.jpeg new file mode 100644 index 000000000..5bdc55b3a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691538.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691555.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691555.jpeg new file mode 100644 index 000000000..5dcdee79e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691555.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691564.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691564.jpeg new file mode 100644 index 000000000..94e043fe1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691564.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691572.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691572.jpeg new file mode 100644 index 000000000..945dfc678 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691572.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691580.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691580.jpeg new file mode 100644 index 000000000..fa019fbcb Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691580.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691589.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691589.jpeg new file mode 100644 index 000000000..5d9143df2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691589.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691597.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691597.jpeg new file mode 100644 index 000000000..1d7c70c68 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691597.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691605.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691605.jpeg new file mode 100644 index 000000000..c1f46d270 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691605.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691613.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691613.jpeg new file mode 100644 index 000000000..0699d9928 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691613.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691622.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691622.jpeg new file mode 100644 index 000000000..6161ec68f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691622.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691638.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691638.jpeg new file mode 100644 index 000000000..e2d0f306a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691638.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691664.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691664.jpeg new file mode 100644 index 000000000..5b4109675 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691664.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691923.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691923.jpeg new file mode 100644 index 000000000..b3294fd00 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691923.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691931.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691931.jpeg new file mode 100644 index 000000000..af2ebac5e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691931.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691938.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691938.jpeg new file mode 100644 index 000000000..af2ebac5e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691938.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691946.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691946.jpeg new file mode 100644 index 000000000..af2ebac5e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691946.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691962.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691962.jpeg new file mode 100644 index 000000000..f5b3bdd08 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691962.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691971.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691971.jpeg new file mode 100644 index 000000000..c774fd4e0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691971.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691979.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691979.jpeg new file mode 100644 index 000000000..b25c3c49d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691979.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691987.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691987.jpeg new file mode 100644 index 000000000..b25c3c49d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630691987.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692005.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692005.jpeg new file mode 100644 index 000000000..03fb06553 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692005.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692013.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692013.jpeg new file mode 100644 index 000000000..03fb06553 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692013.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692021.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692021.jpeg new file mode 100644 index 000000000..b395bd1fe Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692021.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692030.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692030.jpeg new file mode 100644 index 000000000..9282a9464 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692030.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692046.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692046.jpeg new file mode 100644 index 000000000..81c69aade Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692046.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692055.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692055.jpeg new file mode 100644 index 000000000..81c69aade Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692055.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692063.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692063.jpeg new file mode 100644 index 000000000..a8353bf3d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692063.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692080.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692080.jpeg new file mode 100644 index 000000000..98632f56c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692080.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692088.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692088.jpeg new file mode 100644 index 000000000..dee2eeb4b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692088.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692096.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692096.jpeg new file mode 100644 index 000000000..56186f6ed Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692096.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692113.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692113.jpeg new file mode 100644 index 000000000..a919af004 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692113.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692121.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692121.jpeg new file mode 100644 index 000000000..c11b8f3e7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692121.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692130.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692130.jpeg new file mode 100644 index 000000000..2bf7574d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692130.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692138.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692138.jpeg new file mode 100644 index 000000000..ce25bfde8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692138.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692155.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692155.jpeg new file mode 100644 index 000000000..b69e5c167 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692155.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692163.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692163.jpeg new file mode 100644 index 000000000..de261951c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692163.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692171.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692171.jpeg new file mode 100644 index 000000000..9bcc2e150 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692171.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692188.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692188.jpeg new file mode 100644 index 000000000..2ba589702 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692188.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692196.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692196.jpeg new file mode 100644 index 000000000..d6f8d6302 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692196.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692205.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692205.jpeg new file mode 100644 index 000000000..3fdc6b8e7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692205.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692213.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692213.jpeg new file mode 100644 index 000000000..ef57f539b Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692213.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692230.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692230.jpeg new file mode 100644 index 000000000..17eae9027 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692230.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692238.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692238.jpeg new file mode 100644 index 000000000..fee5cfb16 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692238.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692247.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692247.jpeg new file mode 100644 index 000000000..f3dcc95cc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692247.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692264.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692264.jpeg new file mode 100644 index 000000000..450dffd97 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692264.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692271.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692271.jpeg new file mode 100644 index 000000000..79ef8428f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692271.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692279.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692279.jpeg new file mode 100644 index 000000000..c9b768469 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692279.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692289.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692289.jpeg new file mode 100644 index 000000000..dc8484fb8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692289.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692305.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692305.jpeg new file mode 100644 index 000000000..71e1da195 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692305.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692313.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692313.jpeg new file mode 100644 index 000000000..33ff93eaa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692313.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692322.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692322.jpeg new file mode 100644 index 000000000..10778db48 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692322.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692330.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692330.jpeg new file mode 100644 index 000000000..44c5501cc Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692330.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692346.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692346.jpeg new file mode 100644 index 000000000..b448307d7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692346.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692354.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692354.jpeg new file mode 100644 index 000000000..a6bf6343d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692354.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692363.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692363.jpeg new file mode 100644 index 000000000..12d34089a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692363.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692380.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692380.jpeg new file mode 100644 index 000000000..33900740c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692380.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692388.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692388.jpeg new file mode 100644 index 000000000..62dc379d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692388.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692398.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692398.jpeg new file mode 100644 index 000000000..12f3cf43f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692398.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692412.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692412.jpeg new file mode 100644 index 000000000..e4a9fd2b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692412.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692421.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692421.jpeg new file mode 100644 index 000000000..c280f2c80 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692421.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692429.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692429.jpeg new file mode 100644 index 000000000..55616407c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692429.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692438.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692438.jpeg new file mode 100644 index 000000000..38efb9d34 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692438.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692454.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692454.jpeg new file mode 100644 index 000000000..bbff4f203 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692454.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692463.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692463.jpeg new file mode 100644 index 000000000..5be8ed7e1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692463.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692471.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692471.jpeg new file mode 100644 index 000000000..7d259dc84 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692471.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692480.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692480.jpeg new file mode 100644 index 000000000..03b9891a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692480.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692496.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692496.jpeg new file mode 100644 index 000000000..946a8137d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692496.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692504.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692504.jpeg new file mode 100644 index 000000000..ba4290c97 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692504.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692513.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692513.jpeg new file mode 100644 index 000000000..a676123db Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692513.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692530.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692530.jpeg new file mode 100644 index 000000000..41e70e6cf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692530.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692538.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692538.jpeg new file mode 100644 index 000000000..6ad18fb10 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692538.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692546.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692546.jpeg new file mode 100644 index 000000000..e4291499f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692546.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692563.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692563.jpeg new file mode 100644 index 000000000..747293bf7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692563.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692571.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692571.jpeg new file mode 100644 index 000000000..2f776aab0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692571.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692579.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692579.jpeg new file mode 100644 index 000000000..8c9b98de3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692579.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692596.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692596.jpeg new file mode 100644 index 000000000..07cf5368c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692596.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692604.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692604.jpeg new file mode 100644 index 000000000..2ea623f96 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692604.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692613.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692613.jpeg new file mode 100644 index 000000000..d59943c56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692613.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692629.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692629.jpeg new file mode 100644 index 000000000..83e812f62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692629.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692638.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692638.jpeg new file mode 100644 index 000000000..ca15ac2bf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692638.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692646.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692646.jpeg new file mode 100644 index 000000000..08ab3d16f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692646.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692662.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692662.jpeg new file mode 100644 index 000000000..2d1e458c5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692662.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692670.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692670.jpeg new file mode 100644 index 000000000..0671afa3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692670.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692679.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692679.jpeg new file mode 100644 index 000000000..0671afa3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692679.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692687.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692687.jpeg new file mode 100644 index 000000000..ec9c2aa2a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692687.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692704.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692704.jpeg new file mode 100644 index 000000000..5e53d59d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692704.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692712.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692712.jpeg new file mode 100644 index 000000000..5e53d59d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692712.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692721.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692721.jpeg new file mode 100644 index 000000000..4a54744ba Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692721.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692729.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692729.jpeg new file mode 100644 index 000000000..5d2e3c6b2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692729.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692746.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692746.jpeg new file mode 100644 index 000000000..d0993e478 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692746.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692754.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692754.jpeg new file mode 100644 index 000000000..d0993e478 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692754.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692762.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692762.jpeg new file mode 100644 index 000000000..d0993e478 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692762.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692779.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692779.jpeg new file mode 100644 index 000000000..067a25562 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692779.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692787.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692787.jpeg new file mode 100644 index 000000000..067a25562 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692787.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692795.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692795.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692795.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692805.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692805.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692805.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692821.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692821.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692821.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692829.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692829.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692829.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692838.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692838.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692838.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692855.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692855.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692855.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692862.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692862.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692862.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692871.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692871.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692871.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692888.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692888.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692888.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692896.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692896.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692896.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692904.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692904.jpeg new file mode 100644 index 000000000..a68793b29 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692904.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692922.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692922.jpeg new file mode 100644 index 000000000..067a25562 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692922.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692929.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692929.jpeg new file mode 100644 index 000000000..067a25562 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692929.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692937.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692937.jpeg new file mode 100644 index 000000000..d0993e478 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692937.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692954.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692954.jpeg new file mode 100644 index 000000000..d0993e478 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692954.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692962.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692962.jpeg new file mode 100644 index 000000000..5d2e3c6b2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692962.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692971.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692971.jpeg new file mode 100644 index 000000000..5d2e3c6b2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692971.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692988.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692988.jpeg new file mode 100644 index 000000000..5e53d59d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692988.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692996.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692996.jpeg new file mode 100644 index 000000000..5e53d59d0 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630692996.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693004.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693004.jpeg new file mode 100644 index 000000000..0406131d8 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693004.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693013.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693013.jpeg new file mode 100644 index 000000000..ec9c2aa2a Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693013.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693029.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693029.jpeg new file mode 100644 index 000000000..0671afa3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693029.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693037.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693037.jpeg new file mode 100644 index 000000000..2d1e458c5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693037.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693046.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693046.jpeg new file mode 100644 index 000000000..7b5cd0988 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693046.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693063.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693063.jpeg new file mode 100644 index 000000000..ca15ac2bf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693063.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693071.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693071.jpeg new file mode 100644 index 000000000..83e812f62 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693071.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693079.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693079.jpeg new file mode 100644 index 000000000..9caebf387 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693079.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693088.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693088.jpeg new file mode 100644 index 000000000..d59943c56 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693088.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693104.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693104.jpeg new file mode 100644 index 000000000..07cf5368c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693104.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693112.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693112.jpeg new file mode 100644 index 000000000..c3e1456af Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693112.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693121.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693121.jpeg new file mode 100644 index 000000000..8c9b98de3 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693121.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693138.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693138.jpeg new file mode 100644 index 000000000..747293bf7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693138.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693146.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693146.jpeg new file mode 100644 index 000000000..96e876211 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693146.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693154.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693154.jpeg new file mode 100644 index 000000000..e4291499f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693154.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693171.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693171.jpeg new file mode 100644 index 000000000..41e70e6cf Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693171.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693179.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693179.jpeg new file mode 100644 index 000000000..4663b8481 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693179.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693187.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693187.jpeg new file mode 100644 index 000000000..a676123db Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693187.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693204.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693204.jpeg new file mode 100644 index 000000000..946a8137d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693204.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693212.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693212.jpeg new file mode 100644 index 000000000..a9e58fb81 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693212.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693220.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693220.jpeg new file mode 100644 index 000000000..03b9891a1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693220.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693230.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693230.jpeg new file mode 100644 index 000000000..7d259dc84 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693230.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693246.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693246.jpeg new file mode 100644 index 000000000..bbff4f203 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693246.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693254.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693254.jpeg new file mode 100644 index 000000000..586e4ea70 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693254.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693262.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693262.jpeg new file mode 100644 index 000000000..38efb9d34 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693262.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693280.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693280.jpeg new file mode 100644 index 000000000..c280f2c80 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693280.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693287.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693287.jpeg new file mode 100644 index 000000000..e4a9fd2b1 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693287.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693297.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693297.jpeg new file mode 100644 index 000000000..049c6a66c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693297.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693313.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693313.jpeg new file mode 100644 index 000000000..62dc379d2 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693313.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693321.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693321.jpeg new file mode 100644 index 000000000..33900740c Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693321.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693329.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693329.jpeg new file mode 100644 index 000000000..142721da5 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693329.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693346.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693346.jpeg new file mode 100644 index 000000000..a6bf6343d Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693346.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693354.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693354.jpeg new file mode 100644 index 000000000..b448307d7 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693354.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693362.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693362.jpeg new file mode 100644 index 000000000..665112c3e Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693362.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693380.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693380.jpeg new file mode 100644 index 000000000..9bf89da24 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693380.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693388.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693388.jpeg new file mode 100644 index 000000000..33ff93eaa Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693388.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693396.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693396.jpeg new file mode 100644 index 000000000..71e1da195 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693396.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693413.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693413.jpeg new file mode 100644 index 000000000..909a5bfc9 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693413.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693420.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693420.jpeg new file mode 100644 index 000000000..c9b768469 Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693420.jpeg differ diff --git a/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693430.jpeg b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693430.jpeg new file mode 100644 index 000000000..79ef8428f Binary files /dev/null and b/test-results/.playwright-artifacts-0/traces/resources/page@e600c850f86c7fc16a2602b9a1330d97-1784630693430.jpeg differ