Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/dotnet/src/webdriver/Edge/EdgeDriverService.cs
2885 views
// <copyright file="EdgeDriverService.cs" company="Selenium Committers">
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied.  See the License for the
// specific language governing permissions and limitations
// under the License.
// </copyright>

using OpenQA.Selenium.Chromium;
using OpenQA.Selenium.Internal;
using System;
using System.IO;

namespace OpenQA.Selenium.Edge;

/// <summary>
/// Exposes the service provided by the native WebDriver executable.
/// </summary>
public sealed class EdgeDriverService : ChromiumDriverService
{
    private const string MSEdgeDriverServiceFileName = "msedgedriver";

    /// <summary>
    /// Initializes a new instance of the <see cref="EdgeDriverService"/> class.
    /// </summary>
    /// <param name="executablePath">The full path to the EdgeDriver executable.</param>
    /// <param name="executableFileName">The file name of the EdgeDriver executable.</param>
    /// <param name="port">The port on which the EdgeDriver executable should listen.</param>
    private EdgeDriverService(string? executablePath, string? executableFileName, int port)
        : base(executablePath, executableFileName, port)
    {
    }

    /// <inheritdoc />
    protected override DriverOptions GetDefaultDriverOptions()
    {
        return new EdgeOptions();
    }

    /// <summary>
    /// Gets or sets a value indicating whether the service should use verbose logging.
    /// </summary>
    [Obsolete("Use EnableVerboseLogging")]
    public bool UseVerboseLogging
    {
        get => this.EnableVerboseLogging;
        set => this.EnableVerboseLogging = value;
    }

    /// <summary>
    /// Creates a default instance of the EdgeDriverService.
    /// </summary>
    /// <returns>A EdgeDriverService that implements default settings.</returns>
    public static EdgeDriverService CreateDefaultService()
    {
        return new EdgeDriverService(null, null, PortUtilities.FindFreePort());
    }

    /// <summary>
    /// Creates a default instance of the EdgeDriverService using a specified path to the EdgeDriver executable.
    /// </summary>
    /// <param name="driverPath">The path to the executable or the directory containing the EdgeDriver executable.</param>
    /// <returns>An EdgeDriverService using a random port.</returns>
    public static EdgeDriverService CreateDefaultService(string? driverPath)
    {
        if (File.Exists(driverPath))
        {
            string fileName = Path.GetFileName(driverPath);
            string driverFolder = Path.GetDirectoryName(driverPath)!;

            return CreateDefaultService(driverFolder, fileName);
        }
        else
        {
            string fileName = ChromiumDriverServiceFileName(MSEdgeDriverServiceFileName);
            string? driverFolder = driverPath;

            return CreateDefaultService(driverFolder, fileName);
        }
    }

    /// <summary>
    /// Creates a default instance of the EdgeDriverService using a specified path to the EdgeDriver executable with the given name.
    /// </summary>
    /// <param name="driverPath">The directory containing the EdgeDriver executable.</param>
    /// <param name="driverExecutableFileName">The name of the EdgeDriver executable file.</param>
    /// <returns>A EdgeDriverService using a random port.</returns>
    public static EdgeDriverService CreateDefaultService(string? driverPath, string? driverExecutableFileName)
    {
        return new EdgeDriverService(driverPath, driverExecutableFileName, PortUtilities.FindFreePort());
    }

}