C# System.Net.WebException:在本地仿真器上测试UI时POST失败

C# System.Net.WebException:在本地仿真器上测试UI时POST失败,c#,xamarin,uitest,system.net.webexception,C#,Xamarin,Uitest,System.net.webexception,我正在尝试验证LoginPage的UI元素是否按预期工作。测试应该将用户名、用户密码和服务器地址写入相应的输入字段,然后点击登录按钮 UITest加载登录页面,然后失败,出现以下异常: Nachricht: System.Net.WebException : POST Failed Stapelüberwachung: HttpClient.HandleHttpError(String method, Exception exception, ExceptionPolic

我正在尝试验证LoginPage的UI元素是否按预期工作。测试应该将用户名、用户密码和服务器地址写入相应的输入字段,然后点击登录按钮

UITest加载登录页面,然后失败,出现以下异常:

Nachricht: 
    System.Net.WebException : POST Failed
  Stapelüberwachung: 
    HttpClient.HandleHttpError(String method, Exception exception, ExceptionPolicy exceptionPolicy)
    HttpClient.SendData(String endpoint, String method, HttpContent content, ExceptionPolicy exceptionPolicy, Nullable`1 timeOut)
    HttpClient.Post(String endpoint, String arguments, ExceptionPolicy exceptionPolicy, Nullable`1 timeOut)
    HttpApplicationStarter.Execute(String intentJson)
    AndroidAppLifeCycle.LaunchApp(String appPackageName, ApkFile testServerApkFile, Int32 testServerPort)
    AndroidApp.ctor(IAndroidAppConfiguration appConfiguration, IExecutor executor)
    AndroidAppConfigurator.StartApp(AppDataMode appDataMode)
    ReplDroid.ConnectToDeviceAndr() Zeile 33
    ReplDroid.BeforeEachTest() Zeile 24
现在真正有趣的是,它以前工作过,但在我添加了引发和异常的代码(并再次删除)之后,它被困在这个失败的异常中

为了解决我的问题,我已经尝试过:对仿真器进行出厂重置,清理解决方案并重建它,删除.vs文件夹,重新启动vs和仿真器,在不同的仿真器实例上进行测试,并重新启动整个PC。没有什么能可靠地工作

我的测试项目代码如下:

using NUnit.Framework;
using System;
using System.Threading;
using Xamarin.UITest;

namespace REPL
{
    [TestFixture(Platform.Android)]
    public class ReplDroid
    {
        IApp app;
        Platform platform;
        LoginPageController loginPageController;
        MainMenuController mainMenuController;

        public ReplDroid(Platform platform)
        {
            this.platform = platform;
        }

        [SetUp]
        public void BeforeEachTest()
        {
            ConnectToDeviceAndr();

            loginPageController = new LoginPageController(app);
            mainMenuController = new MainMenuController(app);

        }

        private void ConnectToDeviceAndr()
        {
            app = ConfigureApp.Android
                .ApkFile(ApkLocation)
                .PreferIdeSettings()
                .EnableLocalScreenshots()
                .StartApp();
        }

        [Test]
        public void Login()
        {
            loginPageController.EnterUserNumber(UserNumber);
            loginPageController.EnterPassword(Password);
            loginPageController.EnterServerUrl(ServerUrl);
            loginPageController.SignIn();
        }
    }
}

using Xamarin.UITest;
using Xamarin.UITest.Queries;

namespace REPL
{
    public class LoginPageController
    {
        private readonly IApp app;

        private const string UserEntryAutomationId = "UserEntry";

        private const string PasswordEntryAutomationId = "PasswordEntry";

        private const string ServerUrlEntryAutomationId = "ServerUrlEntry";

        private const string LoginButtonAutomationId = "LoginButton";

        public LoginPageController(IApp app)
        {
            this.app = app;
        }

        public AppResult GetUserEntry() => app.GetByAutomationId(UserEntryAutomationId);

        public AppResult GetPasswordEntry() => app.GetByAutomationId(PasswordEntryAutomationId);

        public AppResult GetServerUrlEntry() => app.GetByAutomationId(ServerUrlEntryAutomationId);

        public AppResult GetLoginButton() => app.GetByAutomationId(LoginButtonAutomationId);

        public void EnterUserNumber(string userNumber) => app.WaitAndContinue(UserEntryAutomationId).EnterText(userNumber);

        public void EnterPassword(string password) => app.WaitAndContinue(PasswordEntryAutomationId).EnterText(password);

        public void EnterServerUrl(string serverUrl) => app.WaitAndContinue(ServerUrlEntryAutomationId).EnterText(serverUrl);

        public void SignIn()
        {
            app.DismissKeyboard();
            app.WaitAndContinue(LoginButtonAutomationId).Tap();
        }
    }
}

我能找到的所有类似帖子都是关于未能在App Center上进行测试的,如果我不知何故遗漏了一篇与我的问题相关的帖子,请为我指出正确的方向。

确保您已在AndroidManifest.xml中添加了网络权限。@LucasZhang MSFT您的意思是
?这不是问题,它已经在清单中。您可以将问题发布到AppCenter官方支持论坛:打开AppCenter门户右上角的帮助菜单:?><代码>联系支持人员。使用消息字段解释您的问题。我没有使用AppCenter。请确保您已在AndroidManifest.xml中添加了网络权限。@LucasZhang MSFT您的意思是
?这不是问题,它已经在清单中。您可以将问题发布到AppCenter官方支持论坛:打开AppCenter门户右上角的帮助菜单:?><代码>联系支持人员。使用消息字段解释您的问题。我没有使用AppCenter。