godog
godog copied to clipboard
GoDog with Playwright Go
🤔 What's the problem you're trying to solve?
I would like to use GoDog with Playwright Go (since playwright has good framework for API and Browser automation). Please let us know if its possible to do this ! if, yes, if you could provide some examples that would be awesome.
✨ What's your proposed solution?
integrate GoDog with Playwright Go (since playwright has good framework for API and Browser automation).
⛏ Have you considered any alternatives or workarounds?
Right now using playwright with other programming languages such as typescript, python, java, c#
📚 Any additional context?
This text was originally generated from a template, then edited by hand. You can modify the template here.
I would create an example to use playwright-go with godog 👍🏻
I'm not aware of any library that provides godog
step definitions to control playwright-go, but it should be relatively easy to write one. godog
itself only provides the engine to define and run tests, it does not have any step definitions out of the box.
You can check https://github.com/godogx/httpsteps/blob/v0.2.5/local_client.go#L183 for a general example of the library that provides step definitions (not related to playwright).