File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- // <copyright file="RemoteJavaScriptEngine .cs" company="WebDriver Committers">
1
+ // <copyright file="JavaScriptEngine .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
using System . Threading . Tasks ;
23
23
using OpenQA . Selenium . DevTools ;
24
24
25
- namespace OpenQA . Selenium . Remote
25
+ namespace OpenQA . Selenium
26
26
{
27
27
/// <summary>
28
28
/// Provides methods allowing the user to manage settings in the browser's JavaScript engine.
29
29
/// </summary>
30
- public class RemoteJavaScriptEngine : IJavaScriptEngine
30
+ public class JavaScriptEngine : IJavaScriptEngine
31
31
{
32
32
private Lazy < DevToolsSession > session ;
33
33
private Dictionary < string , InitializationScript > initializationScripts = new Dictionary < string , InitializationScript > ( ) ;
@@ -38,7 +38,7 @@ public class RemoteJavaScriptEngine : IJavaScriptEngine
38
38
/// Initializes a new instance of the <see cref="RemoteJavaScriptEngine"/> class.
39
39
/// </summary>
40
40
/// <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 )
42
42
{
43
43
this . session = new Lazy < DevToolsSession > ( ( ) =>
44
44
{
You can’t perform that action at this time.
0 commit comments