Hello! I’m using k6 browser for the first time to simulate logging into a page. Two lines of code provoke the following warning:
Datadog Browser SDK: service value doesn't meet tag requirements and will be sanitized. More details: https://docs.datadoghq.com/getting_started/tagging/#defining-tags browser_source=console-api source=browser
The relevant code is:
const page = await browser.newPage();
const response = await page.goto(loginUrl); // This line causes the warning
await page.locator('input[name="USERNAME"]').type(username);
await page.locator('input[name="PASSWORD"]').type(password);
await Promise.all([
page.waitForNavigation(),
page.locator('input[type="submit"]').click(),
]); // So does this one
I’ve never used datadog and haven’t intentionally installed it to use with k6. How can I resolve the warning?