File tree 18 files changed +27
-27
lines changed
dotnet/src/webdriver/DevTools
18 files changed +27
-27
lines changed Original file line number Diff line number Diff line change 24
24
namespace OpenQA . Selenium . DevTools . V86
25
25
{
26
26
/// <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.
28
28
/// </summary>
29
29
public class V86JavaScript : JavaScript
30
30
{
Original file line number Diff line number Diff line change 1
- // <copyright file="V85Log .cs" company="WebDriver Committers">
1
+ // <copyright file="V86Log .cs" company="WebDriver Committers">
2
2
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
Original file line number Diff line number Diff line change 1
- // <copyright file="V84Network .cs" company="WebDriver Committers">
1
+ // <copyright file="V86Network .cs" company="WebDriver Committers">
2
2
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
Original file line number Diff line number Diff line change 1
- // <copyright file="V86Domains .cs" company="WebDriver Committers">
1
+ // <copyright file="V87Domains .cs" company="WebDriver Committers">
2
2
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
22
22
namespace OpenQA . Selenium . DevTools . V87
23
23
{
24
24
/// <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.
26
26
/// </summary>
27
27
public class V87Domains : DevToolsDomains
28
28
{
Original file line number Diff line number Diff line change 1
- // <copyright file="V86JavaScript .cs" company="WebDriver Committers">
1
+ // <copyright file="V87JavaScript .cs" company="WebDriver Committers">
2
2
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
24
24
namespace OpenQA . Selenium . DevTools . V87
25
25
{
26
26
/// <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.
28
28
/// </summary>
29
29
public class V87JavaScript : JavaScript
30
30
{
31
31
private RuntimeAdapter runtime ;
32
32
private PageAdapter page ;
33
33
34
34
/// <summary>
35
- /// Initializes a new instance of the <see cref="V86JavaScript "/> class.
35
+ /// Initializes a new instance of the <see cref="V87JavaScript "/> class.
36
36
/// </summary>
37
37
/// <param name="runtime">The DevTools Protocol adapter for the Runtime domain.</param>
38
38
/// <param name="page">The DevTools Protocol adapter for the Page domain.</param>
Original file line number Diff line number Diff line change 1
- // <copyright file="V85Log .cs" company="WebDriver Committers">
1
+ // <copyright file="V87Log .cs" company="WebDriver Committers">
2
2
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
25
25
namespace OpenQA . Selenium . DevTools . V87
26
26
{
27
27
/// <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.
29
29
/// </summary>
30
30
public class V87Log : DevTools . Log
31
31
{
32
32
private LogAdapter adapter ;
33
33
34
34
/// <summary>
35
- /// Initializes a new instance of the <see cref="V86Log "/> class.
35
+ /// Initializes a new instance of the <see cref="V87Log "/> class.
36
36
/// </summary>
37
37
/// <param name="adapter">The adapter for the Log domain.</param>
38
38
public V87Log ( LogAdapter adapter )
Original file line number Diff line number Diff line change 1
- // <copyright file="V84Network .cs" company="WebDriver Committers">
1
+ // <copyright file="V87Network .cs" company="WebDriver Committers">
2
2
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
26
26
namespace OpenQA . Selenium . DevTools . V87
27
27
{
28
28
/// <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
30
30
/// </summary>
31
31
public class V87Network : DevTools . Network
32
32
{
33
33
private FetchAdapter fetch ;
34
34
private NetworkAdapter network ;
35
35
36
36
/// <summary>
37
- /// Initializes a new instance of the <see cref="V86Network "/> class.
37
+ /// Initializes a new instance of the <see cref="V87Network "/> class.
38
38
/// </summary>
39
39
/// <param name="network">The adapter for the Network domain.</param>
40
40
/// <param name="fetch">The adapter for the Fetch domain.</param>
Original file line number Diff line number Diff line change 1
- // <copyright file="V86Target .cs" company="WebDriver Committers">
1
+ // <copyright file="V87Target .cs" company="WebDriver Committers">
2
2
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
26
26
namespace OpenQA . Selenium . DevTools . V87
27
27
{
28
28
/// <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
30
30
/// </summary>
31
31
public class V87Target : DevTools . Target
32
32
{
33
33
private TargetAdapter adapter ;
34
34
35
35
/// <summary>
36
- /// Initializes a new instance of the <see cref="V86Target "/> class.
36
+ /// Initializes a new instance of the <see cref="V87Target "/> class.
37
37
/// </summary>
38
38
/// <param name="adapter">The adapter for the Target domain.</param>
39
39
public V87Target ( TargetAdapter adapter )
Original file line number Diff line number Diff line change 22
22
namespace OpenQA . Selenium . DevTools . V88
23
23
{
24
24
/// <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.
26
26
/// </summary>
27
27
public class V88Domains : DevToolsDomains
28
28
{
Original file line number Diff line number Diff line change 24
24
namespace OpenQA . Selenium . DevTools . V88
25
25
{
26
26
/// <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.
28
28
/// </summary>
29
29
public class V88JavaScript : JavaScript
30
30
{
Original file line number Diff line number Diff line change 25
25
namespace OpenQA . Selenium . DevTools . V88
26
26
{
27
27
/// <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.
29
29
/// </summary>
30
30
public class V88Log : DevTools . Log
31
31
{
Original file line number Diff line number Diff line change 26
26
namespace OpenQA . Selenium . DevTools . V88
27
27
{
28
28
/// <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
30
30
/// </summary>
31
31
public class V88Network : DevTools . Network
32
32
{
Original file line number Diff line number Diff line change 26
26
namespace OpenQA . Selenium . DevTools . V88
27
27
{
28
28
/// <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
30
30
/// </summary>
31
31
public class V88Target : DevTools . Target
32
32
{
Original file line number Diff line number Diff line change 22
22
namespace OpenQA . Selenium . DevTools . V89
23
23
{
24
24
/// <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.
26
26
/// </summary>
27
27
public class V89Domains : DevToolsDomains
28
28
{
Original file line number Diff line number Diff line change 24
24
namespace OpenQA . Selenium . DevTools . V89
25
25
{
26
26
/// <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.
28
28
/// </summary>
29
29
public class V89JavaScript : JavaScript
30
30
{
Original file line number Diff line number Diff line change 25
25
namespace OpenQA . Selenium . DevTools . V89
26
26
{
27
27
/// <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.
29
29
/// </summary>
30
30
public class V89Log : DevTools . Log
31
31
{
Original file line number Diff line number Diff line change 26
26
namespace OpenQA . Selenium . DevTools . V89
27
27
{
28
28
/// <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
30
30
/// </summary>
31
31
public class V89Network : DevTools . Network
32
32
{
Original file line number Diff line number Diff line change 26
26
namespace OpenQA . Selenium . DevTools . V89
27
27
{
28
28
/// <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
30
30
/// </summary>
31
31
public class V89Target : DevTools . Target
32
32
{
You can’t perform that action at this time.
0 commit comments