繁体   English   中英

运行数据驱动的测试代码时出现log4j错误

[英]Getting log4j error while running data driven testing code

我正在运行以下数据驱动的测试代码,但收到以下错误:

log4j:WARN No appenders could be found for logger (org.apache.http.client.protocol.RequestAddCookies).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. 

谁能帮我解决这个问题

import java.io.File;
import java.io.FileInputStream;

import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;

public class DataDriven_Ex {

    static WebElement searchbox;
    public static void main(String[] args) {
        FirefoxDriver driver = new FirefoxDriver();
        driver.get("http://www.amazon.in");
        WebElement searchbox = driver.findElement(By.xpath("//*[@id='twotabsearchtextbox']"));
    }

    @Test
    public void test() throws Exception {

        File file = new File("F://Selenium excel//DataDriven.xlsx");
        FileInputStream fs = new FileInputStream(file);
        XSSFWorkbook wb = new XSSFWorkbook(fs);
        XSSFSheet sh = wb.getSheet("Sheet1");

        int rowcount = sh.getLastRowNum();

        for (int i = 0; i<=rowcount;i++)
        {   
            String keyword = sh.getRow(i).getCell(0).getStringCellValue();
            searchbox.sendKeys(keyword);

            searchbox.submit();      
        }
    }   
}

如警告消息中所述,您应该在http://logging.apache.org/log4j/1.2/faq.html#noconfig上看到完整的说明。 您必须检查是否提供log4j.propertieslog4j.xml作为运行时类路径的一部分(即,可以在运行时从Classloader进行访问)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM