Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.5.1
* Slightly increased default recording save wait time a bit

# 1.5.0
* No longer map timezone into container by default
* This should keep tests consistent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public class BrowserWebDriverContainer<SELF extends BrowserWebDriverContainer<SE

protected static Boolean currentOsWindows; // You should use the method instead, this might be NULL

protected boolean mapTimezoneIntoContainer = false;
protected boolean mapTimezoneIntoContainer;

protected boolean validateImageEnabled = true;
protected Duration validateImageGetTimeout = Duration.ofMinutes(5);
Expand All @@ -114,8 +114,8 @@ public class BrowserWebDriverContainer<SELF extends BrowserWebDriverContainer<SE
protected Path recordingDirectory;
protected TestRecordingFileNameFactory testRecordingFileNameFactory = new DefaultTestRecordingFileNameFactory();
protected Duration recordingSaveTimeout = Duration.ofMinutes(3);
// Ensure that the current frame will be fully recorded (default record FPS = 15 -> 67ms per Frame)
protected Duration beforeRecordingSaveWaitTime = Duration.ofMillis(70);
// Ensure that the current frame will be fully recorded (default record FPS = 15 -> 67ms per Frame + some buffer)
protected Duration beforeRecordingSaveWaitTime = Duration.ofMillis(100);

public BrowserWebDriverContainer(final String dockerImageName)
{
Expand Down