Skip to content
#

e2e-testing

Here are 322 public repositories matching this topic...

cypress
playwright
alexeyr-c
alexeyr-c commented May 18, 2022

When a BrowserContext is not obtained from a Playwright Test fixture, but from browser.newContext() in a test or when using Playwright Library, it should be closed once no longer needed (according to @mxschmitt at https://stackoverflow.com/questions/72284057/do-playwright-browser-contexts-opened-manually-need-to-be-closed?noredirect=1#comment127709001_72284057). Similarly pages from `context/b

good first issue
pactum
ASaiAnudeep
ASaiAnudeep commented May 23, 2022

Is your feature request related to a problem? Please describe.
Support form data in mock server.

Describe the solution you'd like

mock.addInteraction({
  request: {
    method: 'POST',
    path: '/api/token',
    form: {
      'key': 'value'
    }
  },
  response: {
    status: 200
  }
})

Describe alternatives you've considered
Ignore the form data.

`

enhancement good first issue

Improve this page

Add a description, image, and links to the e2e-testing topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the e2e-testing topic, visit your repo's landing page and select "manage topics."

Learn more