C# 程序定义了多个入口点?CS0017 main()有问题吗?

C# 程序定义了多个入口点?CS0017 main()有问题吗?,c#,selenium,ui-testing,applitools,C#,Selenium,Ui Testing,Applitools,当我尝试在visual studio中运行下面的代码时,我得到以下错误:“程序定义了多个入口点。请使用/main编译以指定包含入口点的类型。” 我尝试过寻找其他切入点,但对c#没有太多经验,在这方面遇到了麻烦。据我所知,一切都应该是正确的 namespace Demos { using System; using System.Drawing; using Applitools; using Applitools.Selenium; using OpenQA.Selenium; using Op

当我尝试在visual studio中运行下面的代码时,我得到以下错误:“程序定义了多个入口点。请使用/main编译以指定包含入口点的类型。”

我尝试过寻找其他切入点,但对c#没有太多经验,在这方面遇到了麻烦。据我所知,一切都应该是正确的

namespace Demos
{
using System;
using System.Drawing;
using Applitools;
using Applitools.Selenium;
using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;

public class HelloWorld2
{
    static string appName = "Hello World 2 App C#";

    // change the value of testName so that it has a unique value on your Eyes system
    static string testName = "Hello World 2 v1";

    // if you have a dedicated Eyes server, set the value of the variable serverURLstr to your URL
    static string serverURLstr = "https://eyesapi.applitools.com";

    //set the value of runAsBatch to true so that the tests run as a single batch
    static Boolean runAsBatch = true;

    // set the value of changeTest to true to introduce changes that Eyes will detect as mismatches
    static Boolean changeTest = true;

    static string weburl = "https://applitools.com/helloworld2";

    public static void Main(string[] args)
    {
        var eyes = new Eyes();
        eyes.ServerUrl = serverURLstr;
        setup(eyes);

        var viewportSizeLandscape = new Size(/*width*/1024, /*height*/ 768);
        var viewportSizePortrait = new Size(/*width*/500, /*height*/ 900);
        IWebDriver innerDriver = new ChromeDriver();

        if (!changeTest) 
        {
            Test01(innerDriver, eyes, viewportSizeLandscape);
            Test01Changed(innerDriver, eyes, viewportSizePortrait);
        } 
        else 
        {
            Test01Changed(innerDriver, eyes, viewportSizeLandscape);
            Test01Changed(innerDriver, eyes, viewportSizePortrait);
        }
        innerDriver.Quit();
    }


    private static void Test01(IWebDriver innerDriver, Eyes eyes, Size viewportSize) 
    {
        // Start the test and set the browser's viewport size
        IWebDriver driver = eyes.Open(innerDriver, appName, testName, viewportSize);
        try 
        {
            driver.Url = weburl;
            eyes.CheckWindow("Before enter name");                 // Visual checkpoint 1

            driver.FindElement(By.Id("name")).SendKeys("My Name"); //enter the name
            eyes.CheckWindow("After enter name");                  // Visual checkpoint 2

            driver.FindElement(By.TagName("button")).Click();      // Click the  button
            eyes.CheckWindow("After Click");                       // Visual checkpoint 3

            Applitools.TestResults result = eyes.Close(false);     //false means don't thow exception for failed tests
            HandleResult(result);
        } 
        catch (Exception ex)
        {
            Console.WriteLine(ex);
        } 
        finally 
        {
            eyes.AbortIfNotClosed();
        }
    }
              

    private static void HandleResult(TestResults result) 
    {
        string resultStr;
        string url = result.Url;
        if (result == null) 
        {
            resultStr = "Test aborted";
            url = "undefined";
        } 
        else 
        {
            url = result.Url;
            int totalSteps = result.Steps;
            if (result.IsNew) 
            {
                resultStr = "New Baseline Created: " + totalSteps + " steps";
            } 
            else if (result.IsPassed) 
            {
                resultStr = "All steps passed:     " + totalSteps + " steps";
            } 
            else 
            {
                resultStr = "Test Failed     :     " + totalSteps + " steps";
                resultStr += " matches=" +  result.Matches;      /*  matched the baseline */
                resultStr += " missing=" + result.Missing;       /* missing in the test*/
                resultStr += " mismatches=" + result.Mismatches; /* did not match the baseline */
            }
        }
        resultStr += "\n" + "results at " + url;
        Console.WriteLine(resultStr);
    }

     private static void Test01Changed(IWebDriver innerDriver, Eyes eyes, Size viewportSize) 
    {
        // Start the test and set the browser's viewport size
        IWebDriver driver = eyes.Open(innerDriver, appName, testName, viewportSize);
        try 
        {
            string webUrlToUse = weburl;
            if (changeTest) 
            {
                webUrlToUse += "?diff2";
            } 
            driver.Url = webUrlToUse;
            if (!changeTest) 
            {  
                eyes.CheckWindow("Before enter name");             // Visual checkpoint 1
            }
            driver.FindElement(By.Id("name")).SendKeys("My Name"); //enter the name
            eyes.CheckWindow("After enter name");                  // Visual checkpoint 2

            driver.FindElement(By.TagName("button")).Click();      // Click the  button
            eyes.CheckWindow("After click");                       // Visual checkpoint 3

            if (changeTest) 
            {  
                eyes.CheckWindow("After click again");             // Visual checkpoint 3
            }
            TestResults result = eyes.Close(false); //false means don't thow exception for failed tests
            HandleResult(result);
        } 
        catch (Exception ex)
        {
            Console.WriteLine(ex);
        } 
        finally 
        {
            eyes.AbortIfNotClosed();
        }
    }

    private static void setup(Eyes eyes) 
    {
        eyes.ApiKey = Environment.GetEnvironmentVariable("APPLITOOLS_API_KEY");
        if (runAsBatch)
        {
            var batchInfo = new Applitools.BatchInfo("Hello World 2 Batch");
            eyes.Batch = batchInfo;
        }
        //eliminate artifacts caused by a blinking cursor - on by default in latest SDK
        eyes.IgnoreCaret = true;
    }
}
}

尝试将其添加到您的
.csproj
项目文件中:


假的

您的项目根目录中是否有另一个
公共静态void Main(string[]args)
方法的
Program.cs
类?另外,
名称空间演示
毕竟应该在使用公共类HelloWorld2之前,项目中的另一个类也包含Main()方法有时,当我遇到此错误时,删除项目的/bin和/obj文件夹可以解决此问题。@Lemm-实际上,
使用
语句可以在
命名空间
声明的内部或外部,这样做可能有微妙的原因。看@Lemm不,我回答不好!谢谢谢谢你,@Thijs我不得不关闭visual studio并重新启动,然后做了一个干净的解决方案,然后重新生成解决方案,以发现错误不再显示,重新生成全部…成功。