driver.FindElement(By.Id("inputUsername")).SendKeys("test");
driver.FindElement(By.Id("inputPassword")).SendKeys("test2018");
driver.FindElement(By.TagName("button")).Submit();
尝试使用以上内容并在Internet Explorer中执行它。单击登录按钮后,出现错误消息“引发了带有空响应的异常,向远程WebDriver服务器发送了HTTP请求”。但这仅在IE中发生。其他浏览器在执行上述代码时表现不错。有人知道这是什么问题吗?