• Skip to main content
  • Skip to primary sidebar
  • Skip to footer
  • Home
  • Programming Languages
    • Java Tutorials
    • Python Tutorials
    • JavaScript Tutorials
  • Automation Tools and Different Tools
    • Web Automation
      • Selenium with Java
        • Selenium Basic
        • Selenium Advance
        • Selenium Realtime
        • Framework
        • Selenium Interview
        • Selenium Videos
        • Selenium with Docker
      • Selenium with Python
      • WebdriverIO
        • Selenium Webdriver C# Tutorial
      • Cypress
      • Playwright
    • TestNG
    • Cucumber
    • Mobile Automation
      • Appium
    • API Testing
      • Postman
      • Rest Assured
      • SOAPUI
    • testRigor
    • Katalon
    • TestProject
    • Serenity BDD
    • Gradle- Build Tool
    • RPA-UiPath
    • Protractor
    • Windows Automation
  • Automation For Manual Testers
  • Services
  • Online Training
  • Contact us
  • About me
  • Follow us
    • Linkedin
    • Facebook Group
    • Facebook Page
    • Instagram

Automation

Selenium WebDriver tutorial Step by Step

You are here: Home / Basic Selenium / How To Fix Timed Out Receiving Message From Renderer In Selenium

How To Fix Timed Out Receiving Message From Renderer In Selenium

June 16, 2020 by Mukesh Otwani 2 Comments

How To Fix Timed Out Receiving Message From Renderer In Selenium

I often get this warning from chrome browser while running the test which can disturb console log, In this post I will guide you How To Fix Timed Out Receiving Message From Renderer In Selenium while running chrome browser.

 

To fix this issue you just need to add below property which can fix the issue

Note- If you are new to Selenium then kindly refer Step By Step Guide To Learn Selenium 

Solution 1-

System.setProperty(ChromeDriverService.CHROME_DRIVER_SILENT_OUTPUT_PROPERTY,“true”);

Official documentation for ChromeDriverService

Solution 2-

System.setProperty(“webdriver.chrome.silentOutput”,“true”);

If you observe the above code then we are setting a pre-defined property to true, which will suppress the warning.

 

 

How To Fix Timed Out Receiving Message From Renderer In Selenium

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.chrome.ChromeDriver;

public class ChromeDemoWithoutWarning {

public static void main(String[] args) {

// setting up property to suppress the warning
System.setProperty("webdriver.chrome.silentOutput","true");

// set the chrome driver path- You can set the path as per your system path- for mac no extension required
// If you are working with windows then you need to provide path with .exe extension
System.setProperty("webdriver.chrome.driver", "/Users/mukeshotwani/Desktop/chromedriver");

// Start Chrome Driver session
WebDriver driver=new ChromeDriver();

// Maximize the screen
driver.manage().window().maximize();

// Open application
driver.get("http://www.google.com");

// quit the application- You can also use clos method
driver.quit();

}

}

This was a very short post regarding fixing this issue, if you need any other help then let me know in the comment section.

Filed Under: Basic Selenium

Reader Interactions

Comments

  1. nirmala says

    December 16, 2022 at 1:16 PM

    whats the package to import? giving error for System, no such package wwhen i run in pycharm.

    Reply
    • Mukesh Otwani says

      December 31, 2022 at 12:50 PM

      Hi Nirmala, you can use Eclipse or Intellij for Java. Pycharm you can use for Python. Are you looking for Selenium with Java or Selenium with Python ?

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Free Selenium Videos

https://www.youtube.com/watch?v=w_iPCT1ETO4

Search topic

Top Posts & Pages

  • Selenium Webdriver tutorial for beginners
  • How To Fix Eclipse Autocomplete Or Code Suggestion In Eclipse
  • Selenium Webdriver C# Tutorial
  • WHAT ARE YOUR EXPECTATIONS FROM US?

Stay connected via Facebook

Stay connected via Facebook

Archives

Footer

Categories

Recent Post

  • API Testing Using Postman And RestAssured
  • Disable Personalise Your Web Experience Microsoft Edge Prompt In Selenium
  • How To Fix Error: No tests found In Playwright
  • How To Fix Eclipse Autocomplete Or Code Suggestion In Eclipse
  • Best and easy way to Group test cases in selenium

Top Posts & Pages

  • Selenium Webdriver tutorial for beginners
  • How To Fix Eclipse Autocomplete Or Code Suggestion In Eclipse
  • Selenium Webdriver C# Tutorial
  • WHAT ARE YOUR EXPECTATIONS FROM US?