Visual Studio Code – Dynamically Generate playwright test ,shows No test found
playwright document has parameterize sample like this. It works const people = ['Alice', 'Bob']; for (const name of people) { test(`testing with ${name}`, async () => { // ... }); // You can also do it with test.describe() or with…