Skip to content
View canadianpython13's full-sized avatar

Block or report canadianpython13

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. sample test spec file sample test spec file
    1
    // sample test file using page-object model in a previous project
    2
    
                  
    3
    import { test } from "playwright-test-coverage"
    4
    import { ProductPage } from "../../pages/ProductPage"
    5
    import { orders } from "../../data/orders"
  2. sample page-objects sample page-objects
    1
    // Supporting page-object model for tests
    2
    
                  
    3
    import { expect, FrameLocator, Locator, Page } from "@playwright/test"
    4
    import { OrderPage } from "./OrderPage"
    5
    import { OrderedPage } from "./OrderedPage"
  3. supporting data sample supporting data sample
    1
    // I've created sample data to support the tests in standard-order.spec.ts
    2
    
                  
    3
    import { PurchaseOrder } from "./types"
    4
    import {
    5
      Gender,
  4. Types sample Types sample
    1
    // A sample of the types I've created in a project in order to support the tests written in standard-order.spec.ts
    2
    
                  
    3
    import {
    4
      AdditionalService,
    5
      CheckOutKind,