Bruno

Results 8 comments of Bruno

@Nisthar This is an example using **webdriverIO**: ``` driver.touchAction([ { action: 'press', x: 500, y: 1400 }, { action: 'moveTo', x: 500, y: 300 }, 'release', { action: 'press', x:...

In my case, I need more than only two base urls, so maybe it could be a useful a `host:string[] | undefined` instead of `baseURL: string | undefined`.

I estimate that the new tag syntax will not break the existing tags, but will be weird to find some tests using: ``` test.tags('@fast', '@mobile'); test('Test login page', async ({...

Maybe you could use a fixture: ``` import { test as base } from '@playwright/test'; export const test = base.extend({ testHook: [ async ({ }, use): Promise => { //...

It's not completely accurate, but you can do something like: ``` const requestDate = new Date(); // your request: await request ... const responseDate = new Date(); console.log(responseDate - requestDate);...

Another _workaround_ is to use testStep.duration: https://playwright.dev/docs/api/class-teststep#test-step-duration

> Hey folks! Could you share a little more about your usecases? Specifically I'm curious about the granularity of timing you need. Do you care about the full roundtrip time,...

> @brunojbarros thanks for getting back to me. I'm curious, are you performing load testing? Could you share a little bit more about your usecase? Not really. Currently, we do...