Test Case 1 :
new context()
page.goto("https://example.com");
Test Case 2
new context()
page.goto("https://example.com");
I want to reuse all the static resource cache from Test Case 1 in Test Case 2, so that this test case will not download the resources anymore, it will be very useful when it accesses some websites with large file resources
In Isolation mode, Is there a way to achieve it?
PS: Just want to reuse the static resources not cookies or storage.
Test Case 1 :
new context()
page.goto("https://example.com");
Test Case 2
new context()
page.goto("https://example.com");
I want to reuse all the static resource cache from Test Case 1 in Test Case 2, so that this test case will not download the resources anymore, it will be very useful when it accesses some websites with large file resources
In Isolation mode, Is there a way to achieve it?
PS: Just want to reuse the static resources not cookies or storage.