如何在selenium中防止css和img下载

时间:2013-07-24 09:35:04

标签: python selenium selenium-webdriver phantomjs

是否有可能在phantomjs webdriver(selenium)中阻止img和css下载?

2 个答案:

答案 0 :(得分:2)

如果您选中phantomjs API,则可以将选项传递为: --load-images = [true | false]加载所有内联图像(默认为true)。也接受:[是|否]。

但是,你无法阻止CSS下载AFAIK。

答案 1 :(得分:0)

如果您在HtmlUnitDriver上使用Java,则可以使用以下方法修改网络客户端选项:

 @Override
    protected WebClient modifyWebClient(WebClient client) {
        client.getOptions().setCssEnabled(false);
        return client;
    }

希望这会有所帮助