Wenguang Tian

Results 11 comments of Wenguang Tian

So, what's the good practice to index the generic type T inside the function?

yes, I was trying to use multiple `test.use()` to switch authentications between tests in one `test.describe` block, but the last `test.use()` will just override the previous ones. And those tests...

Upvote, same needs here, my test is testing e2e workflow of 3 applications: app A, app B and app C. I want to run all tests related to app A...

Upvote to this feature, and wonder why PR https://github.com/microsoft/playwright/pull/17548 is removed

> I don't think this is the solution I was hoping for. To give context: to test our SaaS app, we have multiple tests across multiple files, and we run...

hi, @18202izm , I'm also looking for feature, do you have any solutions, thanks

@gravityvi still the same result, the error is logged but the test isn't failed

Hi, @gravityvi , update on this issue, I just found out, nightwatch official commands like `click` `sendKeys` also won't fail the test in programmatic api

> @Terence625 That is not the correct way of using it. Instead of using `browser.setValue()` and passing the element to it, you can directly do: > > ```ts > import...

> @Terence625 In that case, you could use `await` with `element.find` and `element.findAll` commands. Awaiting these commands returns a `WebElement` which can be directly used with other commands. > >...