Skip to content

Commit 7a932e7

Browse files
committed
[dotnet] Moving CDP JS engine monitoring class
1 parent 656c55f commit 7a932e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dotnet/src/webdriver/Remote/RemoteJavaScriptEngine.cs renamed to dotnet/src/webdriver/RemoteJavaScriptEngine.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// <copyright file="RemoteJavaScriptEngine.cs" company="WebDriver Committers">
1+
// <copyright file="JavaScriptEngine.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,12 +22,12 @@
2222
using System.Threading.Tasks;
2323
using OpenQA.Selenium.DevTools;
2424

25-
namespace OpenQA.Selenium.Remote
25+
namespace OpenQA.Selenium
2626
{
2727
/// <summary>
2828
/// Provides methods allowing the user to manage settings in the browser's JavaScript engine.
2929
/// </summary>
30-
public class RemoteJavaScriptEngine : IJavaScriptEngine
30+
public class JavaScriptEngine : IJavaScriptEngine
3131
{
3232
private Lazy<DevToolsSession> session;
3333
private Dictionary<string, InitializationScript> initializationScripts = new Dictionary<string, InitializationScript>();
@@ -38,7 +38,7 @@ public class RemoteJavaScriptEngine : IJavaScriptEngine
3838
/// Initializes a new instance of the <see cref="RemoteJavaScriptEngine"/> class.
3939
/// </summary>
4040
/// <param name="driver">The <see cref="IWebDriver"/> instance in which the JavaScript engine is executing.</param>
41-
public RemoteJavaScriptEngine(IWebDriver driver)
41+
public JavaScriptEngine(IWebDriver driver)
4242
{
4343
this.session = new Lazy<DevToolsSession>(() =>
4444
{

0 commit comments

Comments
 (0)