We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0e846 commit 108f5c6Copy full SHA for 108f5c6
playwright/src/main/java/com/microsoft/playwright/impl/BrowserContextImpl.java
@@ -114,7 +114,7 @@ enum EventType {
114
115
JsonObject recordVideo = initializer.getAsJsonObject("options").getAsJsonObject("recordVideo");
116
if (recordVideo != null) {
117
- this.videosDir = Path.of(recordVideo.get("dir").getAsString());
+ this.videosDir = Paths.get(recordVideo.get("dir").getAsString());
118
}
119
120
0 commit comments