是否可以在NUnit项目中使用“ HttpRuntime”?

时间:2019-10-02 14:44:34

标签: c# selenium unit-testing nunit httpruntime

我正在跟踪guide,将Visual Studio的输出数据写入Google电子表格。我正在将NUnit项目类型用于测试自动化。

该指南的末尾有一个代码块,我将其粘贴到项目中:

using OpenQA.Selenium.Support.UI;
using System;
using NUnit.Framework;
using OpenQA.Selenium;
using System.Collections;
using System.Collections.Generic;
using Google.Apis.Sheets.v4;
using Google.Apis.Auth.OAuth2;
using System.IO;
using Google.Apis.Services;
using Newtonsoft.Json;
using WikipediaTests.Foundation_Class;

namespace AutomationProjects
{
    [TestFixture]
    public class TestClass : TestFoundation
    {
        public class SpreadSheetConnector
        {
        //Codeblock from guide pasted here!
        }
        [Test]
        public void test1()
        {
         //Test case 1. Do XYZ...
        }
    }
}

guide中包含的代码块中,有一部分读取JSON凭证文件:

private void ConnectToGoogle()
{
    GoogleCredential credential;                
    using (var stream = new FileStream(Path.Combine(HttpRuntime.BinDirectory, "Export Project-03e8aa07234e.json"),
        FileMode.Open, FileAccess.Read))
    {
        credential = GoogleCredential.FromStream(stream).CreateScoped(_scopes);
    }

    //...

但是我对“ HttpRuntime”说了一个错误:Error CS0103 The name 'HttpRuntime' does not exist in the current context

VS没有建议添加新的“使用”引用,因此我认为这不是问题。

那么可能是什么问题?从以下位置到整个代码块:guide

1 个答案:

答案 0 :(得分:1)

简短回答-是。

长答案-我相信您需要在此处添加System.Web dll。 C#项目默认情况下不会添加所有依赖项,而是为您提供潜在引用的列表,并让用户根据需要选择。

在您的项目下,找到Dependencies部分。右键单击,然后单击Add Reference。在Assemblies下,找到System.Web并选中它旁边的框,然后单击“确定”。

添加后,就需要在文件顶部添加using System.Web

本指南也可能会有所帮助:https://docs.microsoft.com/en-us/visualstudio/ide/how-to-add-or-remove-references-by-using-the-reference-manager?view=vs-2019