我想构建一个自动化测试,所以我必须知道chrome控制台中出现的错误。
有一个选项可以获取控制台中出现的错误行吗?
要查看控制台:右键单击页面中的某个位置,单击“检查元素”,然后转到“控制台”。
答案 0 :(得分:30)
我不知道C#但是这里的Java代码可以完成这项工作,我希望你能把它翻译成C#
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.logging.LogEntries;
import org.openqa.selenium.logging.LogEntry;
import org.openqa.selenium.logging.LogType;
import org.openqa.selenium.logging.LoggingPreferences;
import org.openqa.selenium.remote.CapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class ChromeConsoleLogging {
private WebDriver driver;
@BeforeMethod
public void setUp() {
System.setProperty("webdriver.chrome.driver", "c:\\path\\to\\chromedriver.exe");
DesiredCapabilities caps = DesiredCapabilities.chrome();
LoggingPreferences logPrefs = new LoggingPreferences();
logPrefs.enable(LogType.BROWSER, Level.ALL);
caps.setCapability(CapabilityType.LOGGING_PREFS, logPrefs);
driver = new ChromeDriver(caps);
}
@AfterMethod
public void tearDown() {
driver.quit();
}
public void analyzeLog() {
LogEntries logEntries = driver.manage().logs().get(LogType.BROWSER);
for (LogEntry entry : logEntries) {
System.out.println(new Date(entry.getTimestamp()) + " " + entry.getLevel() + " " + entry.getMessage());
//do something useful with the data
}
}
@Test
public void testMethod() {
driver.get("http://mypage.com");
//do something on page
analyzeLog();
}
}
注意上面代码中的setUp方法。我们使用LoggingPreferences对象来启用日志记录。有几种类型的日志,但如果要跟踪控制台错误,则应使用LogType.BROWSER。然后我们将该对象传递给DesiredCapabilities,并进一步传递给ChromeDriver构造函数,我们有一个ChromeDriver实例,并启用了日志记录。
在页面上执行某些操作后,我们调用analyzeLog()方法。在这里,我们只需提取日志并遍历其条目。在这里,您可以放置断言或进行任何其他报告。
我的灵感来自this code by Michael Klepikov,解释了如何从ChromeDriver中提取效果日志。
答案 1 :(得分:19)
您可以通过这种方式获取日志:
Driver().Manage().Logs.GetLog();
通过指定您感兴趣的日志,您可以获取浏览器日志,即:
Driver().Manage().Logs.GetLog(LogType.Browser);
还要记得相应地设置驱动程序:
ChromeOptions options = new ChromeOptions();
options.SetLoggingPreference(LogType.Browser, LogLevel.All);
driver = new ChromeDriver("path to driver", options);
答案 2 :(得分:4)
这是用于从chrome记录浏览器日志的c#代码。
JLabel background = new JLabel(new ImageIcon("C:/User/Desktop/Assignment/bg.jpg"));
con.add(background);
background.setLayout(new FlowLayout());
//con.add(button);
background.add( button );
这是我的实际日志代码:
private void CheckLogs()
{
List<LogEntry> logs = Driver.Manage().Logs.GetLog(LogType.Browser).ToList();
foreach (LogEntry log in logs)
{
Log(log.Message);
}
}
答案 3 :(得分:1)
根据issue 6832日志尚未实现C#绑定。因此,现在可能没有一种简单的方法可以使其正常工作。
答案 4 :(得分:1)
这是使用C#,Specflow和 Selenium 4.0.0-alpha05 获取Chrome日志的解决方案。 请注意,相同的代码不适用于Selenium 3.141.0。
[AfterScenario]
public void AfterScenario(ScenarioContext context)
{
if (context.TestError != null)
{
GetChromeLogs(context); //Chrome logs are taken only if test fails
}
Driver.Quit();
}
private void GetChromeLogs()
{
var chromeLogs = Driver.Manage().Logs.GetLog(LogType.Browser).ToList();
}
答案 5 :(得分:1)
C#绑定到Chrome控制台日志了。硒3.141.0及更低版本不支持。
在实例化新的ChromeDriver对象之前,请在ChromeOptions对象中设置日志记录首选项,然后将其传递给ChromeDriver:
ChromeOptions options = new ChromeOptions();
options.SetLoggingPreference(LogType.Browser, LogLevel.All);
ChromeDriver driver = new ChromeDriver(options);
然后,将Chrome控制台日志写入平面文件:
public void WriteConsoleErrors()
{
string strPath = "C:\\ConsoleErrors.txt";
if (!File.Exists(strPath))
{
File.Create(strPath).Dispose();
}
using (StreamWriter sw = File.AppendText(strPath))
{
var entries = driver.Manage().Logs.GetLog(LogType.Browser);
foreach (var entry in entries)
{
sw.WriteLine(entry.ToString());
}
}
}
答案 6 :(得分:0)
driver.manage().logs().get("browser")
获取控制台上打印的所有日志。我能够获得除Violations之外的所有日志。请看这里Chrome Console logs not printing Violations
答案 7 :(得分:0)
public void Test_DetectMissingFilesToLoadWebpage()
{
try
{
List<LogEntry> logs = driver.Manage().Logs.GetLog(LogType.Browser).ToList();
foreach (LogEntry log in logs)
{
while(logs.Count > 0)
{
String logInfo = log.ToString();
if (log.Message.Contains("Failed to load resource: the server responded with a status of 404 (Not Found)"))
{
Assert.Fail();
}
else
{
Assert.Pass();
}
}
}
}
catch (NoSuchElementException e)
{
test.Fail(e.StackTrace);
}
}
您可以在C#中执行类似的操作。这是一个完整的测试案例。然后在控制台中将控制台输出打印为String,即logInfo。由于某种原因,以上解决方案中的Log(log.Message)给了我构建错误,因此我将其替换了。