使用Selenium WebDriver.dll

时间:2017-10-16 20:04:14

标签: c# azure selenium selenium-webdriver azure-functions

我正在尝试使用Azure Function C#代码中的Selenium WebDriver.dll,并在实例化WebDriver时遇到以下问题。

错误:

  

2017-10-16T20:02:25.169执行函数时出现异常:Functions.fnTestSelenium。 Microsoft.Azure.WebJobs.Script:发生了一个或多个错误。 mscorlib:路径不是合法形式.2017-10-16T20:02:25.278功能完成(失败,Id = 2fcb928f-ee39-4cfe-99f2-4be2d57e91b2,持续时间= 843ms)

代码

#r“D:\ home \ site \ wwwroot \ fnTestSelenium \ bin \ WebDriver.dll” 使用System.Net;

using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;

public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
    log.Info("C# HTTP trigger function processed a request.");

    IWebDriver driver=new FirefoxDriver();
    // parse query parameter
    string name = req.GetQueryNameValuePairs()
        .FirstOrDefault(q => string.Compare(q.Key, "name", true) == 0)
        .Value;

    // Get request body
    dynamic data = await req.Content.ReadAsAsync<object>();

    // Set name to query string or body data
    name = name ?? data?.name;

    return name == null
        ? req.CreateResponse(HttpStatusCode.BadRequest, "Please pass a name on the query string or in the request body")
        : req.CreateResponse(HttpStatusCode.OK, "Hello " + name);
}

1 个答案:

答案 0 :(得分:5)

我不认为您在Azure Functions上运行Selenium会取得很大成功。

Azure应用程序(如WebApp和移动应用程序)在App Service中运行。 App Service在称为沙箱的安全环境中运行,这会产生一定的限制。其中,就是使用GDI +。

您可以看到限制列表以及不受支持的框架列表https://github.com/projectkudu/kudu/wiki/Azure-Web-App-sandbox#unsupported-frameworks

如果您在底部检查,您将在不受支持的列表中看到Selenimum:

  

不支持的其他方案:

     

PhantomJS / Selenium :尝试连接到本地地址,也使用   GDI +。