uchagani

Results 56 comments of uchagani

My homepods have stopped working also but I don't have the same errors in the logs but I have the following: ``` [2022-01-02 20:17:41] [ LOG] mdns: Avahi Resolver failure:...

Here is how to do it with JUnit 5: ```java import org.junit.jupiter.api.Test; import static com.microsoft.playwright.assertions.PlaywrightAssertions.assertThat; import static org.junit.jupiter.api.Assertions.assertAll; public class TestSoftAssertions extends TestBase { @Test void testSoftAssertions() { page.setContent("Text content");...

I don't unfortunately. Personally I've moved all of my codebases to junit 5 because it's so much better than testng in terms of extensibility and functionality.

I've created a new package that brings soft assertions to Playwright-Java: https://github.com/uchagani/playwright-java-soft-assertions @yury-s @dgozman I have an open PR for this implementation to be merged into this repo if you...

The motivation behind #1361 was to enable calling playwright-java's auto-waiting assertions in a soft way, without tying it to any other library, similar to playwright-java's assertions themselves. They are not...

Is there anything the community can help with this?

I'll add another use case for this: I need to get the value of the parameter from a `@ParameterTest` so that I can do some clean up using that value...

Here is how I handle it: Since all we need to do is ensure that the print was actually called when the print button is clicked we do: (in Java...

a couple use cases but they might be handled by the workaround above: 1. introduce delays to ensure application handles that properly. 2. defect recreations that are caused by network...

@jfgreffier correct it doesn't matter from a parallel testing perspective. The user can use it if they want but it's more controlling the lifecycle of the test class and not...