File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this
6
6
project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
- <!-- ## Unreleased -->
8
+ ## Unreleased
9
+
10
+ - Fix bug where a unique browser would not be launched if the only difference
11
+ between browser configurations was ` binary ` , ` addArguments ` ,
12
+ ` removeArguments ` , ` cpuThrottlingRate ` or ` preferences ` .
9
13
10
14
## [ 0.5.3] 2020-09-11
11
15
Original file line number Diff line number Diff line change @@ -85,9 +85,14 @@ export function browserSignature(config: BrowserConfig): string {
85
85
return JSON . stringify ( [
86
86
config . name ,
87
87
config . headless ,
88
- config . remoteUrl || '' ,
88
+ config . remoteUrl ?? '' ,
89
89
config . windowSize . width ,
90
90
config . windowSize . height ,
91
+ config . binary ?? '' ,
92
+ config . addArguments ?? [ ] ,
93
+ config . removeArguments ?? [ ] ,
94
+ config . cpuThrottlingRate ?? 1 ,
95
+ config . preferences ?? { } ,
91
96
] ) ;
92
97
}
93
98
You can’t perform that action at this time.
0 commit comments