I am Senior Test Automation Engineer, who is interested in Open Source & Quality at scale.
I am available for freelancing & technical work.
Sep 18, 2024 · 3 min read · When testing API interactions, you have two primary options: using HAR (HTTP Archive) files or mocking. Each method has its strengths and weaknesses, and the choice between them depends on your specific testing needs. Use HAR Files for: Complex, mul...
IIssy commented
Sep 18, 2024 · 2 min read · To start, you'll need to record all necessary network calls into a HAR (HTTP Archive) file. The process for doing so varies slightly depending on the browser you're using. Next, you'll want to sanitize your HAR file to remove any sensitive informatio...
Join discussion
Sep 17, 2024 · 1 min read · Add the following options to your Playwright Config to disable CORS depending on your usecase. { use: { bypassCSP: true, // add this to disable cors launchOptions: { args: ['--disable-web-security'], // add this to di...
Join discussion