我正在按照指南将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...
}
}
}
在指南中包含的代码块中,有一个部分用于读取 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 没有建议添加新的"使用"引用,所以我假设这不是问题所在。
那么问题可能出在哪里呢?从:指南到整个代码块
简短的回答 - 是的。
长答案 - 我相信您需要在此处添加System.Web
dll。默认情况下,C# 项目不会添加所有依赖项,而是为您提供潜在引用的列表,并让用户根据需要进行选择。
在您的项目下,找到Dependencies
部分。右键单击,然后单击Add Reference
。在Assemblies
下,找到System.Web
并选中它旁边的框,然后单击确定。
添加后,您需要将using System.Web
添加到文件顶部。
本指南也可能有所帮助: https://learn.microsoft.com/en-us/visualstudio/ide/how-to-add-or-remove-references-by-using-the-reference-manager?view=vs-2019