How to download a pdf file in chrome using selenium webdriver

前端 未结 5 944
生来不讨喜
生来不讨喜 2020-11-30 14:33

I want to download pdf in chrome using selenium.

System.setProperty(\"webdriver.chrome.driver\", System.getProperty(\"user.dir\")  
               + System.         


        
5条回答
  •  天涯浪人
    2020-11-30 15:04

    You would need to add below statement to your chrome profile:

    chromePrefs.put("pdfjs.disabled", true);
    

    It seems that newer versions of browsers are coming with built-in ability of displaying PDF files inside browser. Refer this for more information, though it is for firefox profile but still a good read.

    Hope that solves your issue, else you may need to downgrade your chrome to make it work. Let me know if you have any queries.

提交回复
热议问题