Skip to content

Commit 5f20319

Browse files
committed
[dotnet] Fix PrintOptions to handle page ranges
Fixes issue #9755.
1 parent 26b625a commit 5f20319

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

dotnet/CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ v4.0.0rc1
2424
response.
2525
* (on behalf of Nikolay Borisenko) Modified to dispose HttpRequestMessage
2626
and HttpResponseMessage when making HTTP calls across the wire.
27+
* Updated the InternetExplorerOptions class to match the existing capabilities
28+
of the IE driver.
29+
* Updatde the events in HttpCommandExecutor to allow the user to capture
30+
the commands sent to the remote end of a WebDriver session.
31+
* Fixed the PrintOptions class to handle page ranges. Fixes issue #9755.
2732

2833
v4.0.0b4
2934
========

dotnet/src/webdriver/PrintOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ internal Dictionary<string, object> ToDictionary()
219219

220220
if (this.pageRanges.Count > 0)
221221
{
222-
222+
toReturn["pageRanges"] = new List<object>(this.pageRanges);
223223
}
224224

225225
return toReturn;

0 commit comments

Comments
 (0)