2

我尝试通过 NuGet 解决方案下载 Selenium.WebDriver,但出现以下错误:

Failed to add reference. The package 'Selenium.WebDriver' tried to add a framework reference to 'System.Drawing' which was not found in the GAC.

当我在 xamarin 中安装 Appium 时,我遇到了与上述相同的错误,因此任何人都可以分享我的想法如何克服这个问题?

4

1 回答 1

0
  1. 编辑您的.csproj文件。
    1. 在 Visual Studio 中,您可以“卸载”项目,然后右键单击已卸载的项目,您就可以进行编辑了。
  2. 找到ItemGroup包含引用并编辑它以包含此行
    1. <Reference Include="System.Drawing" />

像这样的东西:

<ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Drawing" />
    <Reference Include="WebDriver, Version=3.141.0.0, Culture=neutral, processorArchitecture=MSIL">
于 2019-05-20T21:47:38.177 回答