试图在控制台中关闭警告但失败

时间:2014-09-02 13:40:15

标签: java selenium warnings gargoyle

我的IRC bot会在YouTube链接发布到频道时发送视频统计信息。但是我收到了大量的警告,他们惹恼了我,让我的控制台变得杂乱无章:

Sep 01, 2014 6:09:29 PM com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error
WARNUNG: CSS error: 'https://s.ytimg.com/yts/cssbin/www-core-vfl0pJopz.css' [1:41191] Fehler in Style-Regel. (Ungültiger Token "*". Erwartet wurde einer von: <EOF>, <S>, <IDENT>, "}", ";".)
Sep 01, 2014 6:09:29 PM com.gargoylesoftware.htmlunit.DefaultCssErrorHandler warning
WARNUNG: CSS warning: 'https://s.ytimg.com/yts/cssbin/www-core-vfl0pJopz.css' [1:41191] Ignoriere die folgenden Deklarationen in dieser Regel.

我想将其关闭,并尝试将此代码添加到我的主要方法中:

java.util.logging.Logger.getLogger("com.gargoylesoftware").setLevel(Level.OFF);

但无济于事。我使用Selenium来使用此代码获取结果:

String[] args = Utilities.toArgs(event.getMessage()); //this is the message sent, split by a space
        String link = null;
        boolean shortLink = false;
        WebDriver driver = new HtmlUnitDriver();
        String title = "No value";
        String duration = "No value";
        String views = "No value";
        String likes = "No value";
        String dislikes = "No value";
        String date = "No value";
        String uploader = "No value";

        for(String s : args)
        {
            if(s.contains("www.youtube.com/watch"))
            {
                if(s.contains("v="))
                    link = "http://www.youtube.com/watch?v=" + s.split("v=")[1].substring(0, 11) + "/";
                else
                {
                    Utilities.chanMsg(event, "Couldn't find video id!"); //just sending a message to the channel
                    break;
                }
            }
            else if(s.contains("http://youtu.be/"))
            {
                link = s;
                shortLink = true;
                break;
            }
        }

        if(shortLink)
        {
            String videoId = link.split("/")[3];

            link = "www.youtube.com/watch?v=" + videoId;
        }

        //if someone posts the link without a space between the link and the word before it
        if(!link.startsWith("w"))
            link = link.split(":")[1].substring(2);

        //check that the link is really the link needed (main use is when someone posts a word directly after the link without a space inbetween)
        if(link.length() != 35)
        {
            StringBuilder builder = new StringBuilder();
            builder.append(link);
            builder.delete(35, link.length());
            link = builder.toString();
        }

        //make sure that the links starts with "http://"
        if(!link.startsWith("http://"))
            link = "http://" + link;

        driver.get(link);

        try
        {
            title = driver.findElement(By.xpath("//meta[@itemprop='name']")).getAttribute("content");
        }
        catch(NoSuchElementException e){}

        try
        {
            duration = resolveDuration(driver);
        }
        catch(NoSuchElementException e){}

        try
        {
            views = driver.findElement(By.xpath("//div[@class='watch-view-count']")).getText();
        }
        catch(NoSuchElementException e)
        {
            views = driver.findElement(By.xpath("//span[@class='watch-view-count yt-uix-hovercard-target']")).getText().split("Views")[0];
        }

        try
        {
            likes = driver.findElement(By.xpath("//button[@id='watch-like']/span[@class='yt-uix-button-content']")).getText();
        }
        catch(NoSuchElementException e){}

        try
        {
            dislikes = driver.findElement(By.xpath("//button[@id='watch-dislike']/span[@class='yt-uix-button-content']")).getText();
        }
        catch(NoSuchElementException e){}

        try
        {
            date = driver.findElement(By.xpath("//p[@id='watch-uploader-info']/strong")).getText().split("on")[1];
        }
        catch(NoSuchElementException e){}

        try
        {
            uploader = driver.findElement(By.xpath("//div[@class='yt-user-info']/a")).getText();
        }
        catch(NoSuchElementException e){}

        driver.close();

那么我怎样才能抑制发送到控制台的警告?

1 个答案:

答案 0 :(得分:0)

您可以使用功能

来处理此问题

虽然这些功能是特定于浏览器的。对于firefox来说 ,它就像 webdriver.log.driver 。有关详细信息,请参阅以下链接。

Desired Capabilities

有关登录Selenium Webdriver的更多详细信息,请访问:Logging in Selenium

更新:如果您使用的是没有打开浏览器的HtmlUnitDriver,则必须使用自己的日志系统并进行适当的配置。你可以去Log4j或SimpleLog库。 如果您使用log4j,只需将此行添加到文件 commons-logging.properties

 org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLogger

并将log4j.xml保存在保存属性文件的同一文件夹中。通常是 / src / main / resources:文件夹,以防它是Maven Project.Then在log4j.xml中你可以根据需要配置日志记录级别。