Skip to content

Commit 357403b

Browse files
committed
Update documentation comments to align with proper CDP versions in .NET
1 parent c31ea12 commit 357403b

18 files changed

+27
-27
lines changed

dotnet/src/webdriver/DevTools/v86/V86JavaScript.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
namespace OpenQA.Selenium.DevTools.V86
2525
{
2626
/// <summary>
27-
/// Class containing the JavaScript implementation for version 85 of the DevTools Protocol.
27+
/// Class containing the JavaScript implementation for version 86 of the DevTools Protocol.
2828
/// </summary>
2929
public class V86JavaScript : JavaScript
3030
{

dotnet/src/webdriver/DevTools/v86/V86Log.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="V85Log.cs" company="WebDriver Committers">
1+
// <copyright file="V86Log.cs" company="WebDriver Committers">
22
// Licensed to the Software Freedom Conservancy (SFC) under one
33
// or more contributor license agreements. See the NOTICE file
44
// distributed with this work for additional information

dotnet/src/webdriver/DevTools/v86/V86Network.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="V84Network.cs" company="WebDriver Committers">
1+
// <copyright file="V86Network.cs" company="WebDriver Committers">
22
// Licensed to the Software Freedom Conservancy (SFC) under one
33
// or more contributor license agreements. See the NOTICE file
44
// distributed with this work for additional information

dotnet/src/webdriver/DevTools/v87/V87Domains.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="V86Domains.cs" company="WebDriver Committers">
1+
// <copyright file="V87Domains.cs" company="WebDriver Committers">
22
// Licensed to the Software Freedom Conservancy (SFC) under one
33
// or more contributor license agreements. See the NOTICE file
44
// distributed with this work for additional information
@@ -22,7 +22,7 @@
2222
namespace OpenQA.Selenium.DevTools.V87
2323
{
2424
/// <summary>
25-
/// Class containing the domain implementation for version 86 of the DevTools Protocol.
25+
/// Class containing the domain implementation for version 87 of the DevTools Protocol.
2626
/// </summary>
2727
public class V87Domains : DevToolsDomains
2828
{

dotnet/src/webdriver/DevTools/v87/V87JavaScript.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="V86JavaScript.cs" company="WebDriver Committers">
1+
// <copyright file="V87JavaScript.cs" company="WebDriver Committers">
22
// Licensed to the Software Freedom Conservancy (SFC) under one
33
// or more contributor license agreements. See the NOTICE file
44
// distributed with this work for additional information
@@ -24,15 +24,15 @@
2424
namespace OpenQA.Selenium.DevTools.V87
2525
{
2626
/// <summary>
27-
/// Class containing the JavaScript implementation for version 85 of the DevTools Protocol.
27+
/// Class containing the JavaScript implementation for version 87 of the DevTools Protocol.
2828
/// </summary>
2929
public class V87JavaScript : JavaScript
3030
{
3131
private RuntimeAdapter runtime;
3232
private PageAdapter page;
3333

3434
/// <summary>
35-
/// Initializes a new instance of the <see cref="V86JavaScript"/> class.
35+
/// Initializes a new instance of the <see cref="V87JavaScript"/> class.
3636
/// </summary>
3737
/// <param name="runtime">The DevTools Protocol adapter for the Runtime domain.</param>
3838
/// <param name="page">The DevTools Protocol adapter for the Page domain.</param>

dotnet/src/webdriver/DevTools/v87/V87Log.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="V85Log.cs" company="WebDriver Committers">
1+
// <copyright file="V87Log.cs" company="WebDriver Committers">
22
// Licensed to the Software Freedom Conservancy (SFC) under one
33
// or more contributor license agreements. See the NOTICE file
44
// distributed with this work for additional information
@@ -25,14 +25,14 @@
2525
namespace OpenQA.Selenium.DevTools.V87
2626
{
2727
/// <summary>
28-
/// Class containing the browser's log as referenced by version 86 of the DevTools Protocol.
28+
/// Class containing the browser's log as referenced by version 87 of the DevTools Protocol.
2929
/// </summary>
3030
public class V87Log : DevTools.Log
3131
{
3232
private LogAdapter adapter;
3333

3434
/// <summary>
35-
/// Initializes a new instance of the <see cref="V86Log"/> class.
35+
/// Initializes a new instance of the <see cref="V87Log"/> class.
3636
/// </summary>
3737
/// <param name="adapter">The adapter for the Log domain.</param>
3838
public V87Log(LogAdapter adapter)

dotnet/src/webdriver/DevTools/v87/V87Network.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="V84Network.cs" company="WebDriver Committers">
1+
// <copyright file="V87Network.cs" company="WebDriver Committers">
22
// Licensed to the Software Freedom Conservancy (SFC) under one
33
// or more contributor license agreements. See the NOTICE file
44
// distributed with this work for additional information
@@ -26,15 +26,15 @@
2626
namespace OpenQA.Selenium.DevTools.V87
2727
{
2828
/// <summary>
29-
/// Class providing functionality for manipulating network calls using version 86 of the DevTools Protocol
29+
/// Class providing functionality for manipulating network calls using version 87 of the DevTools Protocol
3030
/// </summary>
3131
public class V87Network : DevTools.Network
3232
{
3333
private FetchAdapter fetch;
3434
private NetworkAdapter network;
3535

3636
/// <summary>
37-
/// Initializes a new instance of the <see cref="V86Network"/> class.
37+
/// Initializes a new instance of the <see cref="V87Network"/> class.
3838
/// </summary>
3939
/// <param name="network">The adapter for the Network domain.</param>
4040
/// <param name="fetch">The adapter for the Fetch domain.</param>

dotnet/src/webdriver/DevTools/v87/V87Target.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="V86Target.cs" company="WebDriver Committers">
1+
// <copyright file="V87Target.cs" company="WebDriver Committers">
22
// Licensed to the Software Freedom Conservancy (SFC) under one
33
// or more contributor license agreements. See the NOTICE file
44
// distributed with this work for additional information
@@ -26,14 +26,14 @@
2626
namespace OpenQA.Selenium.DevTools.V87
2727
{
2828
/// <summary>
29-
/// Class providing functionality for manipulating targets for version 86 of the DevTools Protocol
29+
/// Class providing functionality for manipulating targets for version 87 of the DevTools Protocol
3030
/// </summary>
3131
public class V87Target : DevTools.Target
3232
{
3333
private TargetAdapter adapter;
3434

3535
/// <summary>
36-
/// Initializes a new instance of the <see cref="V86Target"/> class.
36+
/// Initializes a new instance of the <see cref="V87Target"/> class.
3737
/// </summary>
3838
/// <param name="adapter">The adapter for the Target domain.</param>
3939
public V87Target(TargetAdapter adapter)

dotnet/src/webdriver/DevTools/v88/V88Domains.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
namespace OpenQA.Selenium.DevTools.V88
2323
{
2424
/// <summary>
25-
/// Class containing the domain implementation for version 86 of the DevTools Protocol.
25+
/// Class containing the domain implementation for version 88 of the DevTools Protocol.
2626
/// </summary>
2727
public class V88Domains : DevToolsDomains
2828
{

dotnet/src/webdriver/DevTools/v88/V88JavaScript.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
namespace OpenQA.Selenium.DevTools.V88
2525
{
2626
/// <summary>
27-
/// Class containing the JavaScript implementation for version 85 of the DevTools Protocol.
27+
/// Class containing the JavaScript implementation for version 88 of the DevTools Protocol.
2828
/// </summary>
2929
public class V88JavaScript : JavaScript
3030
{

dotnet/src/webdriver/DevTools/v88/V88Log.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
namespace OpenQA.Selenium.DevTools.V88
2626
{
2727
/// <summary>
28-
/// Class containing the browser's log as referenced by version 86 of the DevTools Protocol.
28+
/// Class containing the browser's log as referenced by version 88 of the DevTools Protocol.
2929
/// </summary>
3030
public class V88Log : DevTools.Log
3131
{

dotnet/src/webdriver/DevTools/v88/V88Network.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
namespace OpenQA.Selenium.DevTools.V88
2727
{
2828
/// <summary>
29-
/// Class providing functionality for manipulating network calls using version 86 of the DevTools Protocol
29+
/// Class providing functionality for manipulating network calls using version 88 of the DevTools Protocol
3030
/// </summary>
3131
public class V88Network : DevTools.Network
3232
{

dotnet/src/webdriver/DevTools/v88/V88Target.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
namespace OpenQA.Selenium.DevTools.V88
2727
{
2828
/// <summary>
29-
/// Class providing functionality for manipulating targets for version 86 of the DevTools Protocol
29+
/// Class providing functionality for manipulating targets for version 88 of the DevTools Protocol
3030
/// </summary>
3131
public class V88Target : DevTools.Target
3232
{

dotnet/src/webdriver/DevTools/v89/V89Domains.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
namespace OpenQA.Selenium.DevTools.V89
2323
{
2424
/// <summary>
25-
/// Class containing the domain implementation for version 86 of the DevTools Protocol.
25+
/// Class containing the domain implementation for version 89 of the DevTools Protocol.
2626
/// </summary>
2727
public class V89Domains : DevToolsDomains
2828
{

dotnet/src/webdriver/DevTools/v89/V89JavaScript.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
namespace OpenQA.Selenium.DevTools.V89
2525
{
2626
/// <summary>
27-
/// Class containing the JavaScript implementation for version 85 of the DevTools Protocol.
27+
/// Class containing the JavaScript implementation for version 89 of the DevTools Protocol.
2828
/// </summary>
2929
public class V89JavaScript : JavaScript
3030
{

dotnet/src/webdriver/DevTools/v89/V89Log.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
namespace OpenQA.Selenium.DevTools.V89
2626
{
2727
/// <summary>
28-
/// Class containing the browser's log as referenced by version 86 of the DevTools Protocol.
28+
/// Class containing the browser's log as referenced by version 89 of the DevTools Protocol.
2929
/// </summary>
3030
public class V89Log : DevTools.Log
3131
{

dotnet/src/webdriver/DevTools/v89/V89Network.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
namespace OpenQA.Selenium.DevTools.V89
2727
{
2828
/// <summary>
29-
/// Class providing functionality for manipulating network calls using version 86 of the DevTools Protocol
29+
/// Class providing functionality for manipulating network calls using version 89 of the DevTools Protocol
3030
/// </summary>
3131
public class V89Network : DevTools.Network
3232
{

dotnet/src/webdriver/DevTools/v89/V89Target.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
namespace OpenQA.Selenium.DevTools.V89
2727
{
2828
/// <summary>
29-
/// Class providing functionality for manipulating targets for version 86 of the DevTools Protocol
29+
/// Class providing functionality for manipulating targets for version 89 of the DevTools Protocol
3030
/// </summary>
3131
public class V89Target : DevTools.Target
3232
{

0 commit comments

Comments
 (0)