godog icon indicating copy to clipboard operation
godog copied to clipboard

GoDog with Playwright Go

Open PavanMudigondaTR opened this issue 2 years ago • 2 comments

🤔 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.

PavanMudigondaTR avatar Sep 01 '22 15:09 PavanMudigondaTR

I would create an example to use playwright-go with godog 👍🏻

ninadingole avatar Sep 07 '22 10:09 ninadingole

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).

vearutop avatar Sep 07 '22 13:09 vearutop