

But, when it does, it can be very annoying since the page you need to load has essential information for you. If the browser is updated, it will show a message letting you know.Ĭhrome not being able to open a page is not something that always happens.
#I cannot open certain websites on google chrome for mac download
If it finds one, it will download it without you having to do anything. A side menu will appear with the option About Chrome.Ĭhrome will begin to check for updates automatically. To see if you are using the latest version of Chrome go to Settings and place the cursor on the Help option. It’s also a good idea to keep Chrome updated. The programs are using valuable RAM that could be causing you to get this error. You can also try disabling all extensions and then try accessing the site.Īlso, close any other program that is not necessary at the moment. If the problem started right after you installed an extension, try removing it and see if that fixed the issue.

Try saving what you need for later and closing tabs you don’t need at that precise moment. If you have a computer that doesn’t have a lot of RAM power, it can be the reason why you’re getting this error. You find so much information on the subject you’re looking into that you end up opening too many tabs. Restart Chrome and try accessing the pages once again. If this is what is causing Chrome to not load pages, by doing this, the problem should be fixed. Make sure that the time frame option is set to All Time and that all the boxes below are also selected.

When the new window appears, click on the option that says Clear browsing data. To clean Chrome’s cookies, click on the three dots once more and place the cursor on the More Tools option. You can also use the key combination Ctrl + Shift + N. The incognito option will be the third one down. You can access incognito mode by clicking on the three dots at the top right of the browser. If the site loads in incognito mode then it’s definitely time to clean the cookies and cache. Before you go ahead and clean them, there is a way you can confirm if that’s the issue by going into incognito mode. If the problem is happening with every site, you can try cleaning the browser’s cache and cookies. If it’s just one site, then there is a good chance that they could be having some technical issues. You can also try reloading the page and see if you get this error only with this site or with all of them. I know this seems too necessary, but no service is perfect, and it could have failed right when you were trying to access that site. If you see that Chrome launches, but it won’t load a page, try checking to see if your Internet connection is working. Webbrowser.get(browserPath).What to Do When Chrome Doesn’t Load Pages If userBrowserC = 'chrome' and platform.system() = 'Windows':īrowserPath = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'Įlif userBrowserC = 'chrome' and platform.system() = 'Linux':īrowserPath = '/usr/bin/google-chrome %s'Įlif userBrowserC = 'chrome' and platform.system() = 'Darwin' orīrowserPath = 'open -a /Applications/Google\ Chrome.app %s'Įlif userBrowserC = 'opera' and platform.system() = 'Windows':īrowserPath = 'C:/Users/'+ os.getlogin() +'/AppData/Local/Programs/Opera/launcher.exe'Įlif userBrowserC = 'iexplore' and platform.system() = 'Windows':īrowserPath = 'C:/Program Files/internet explorer/iexplore.exe %s'Įlif userBrowserC = 'firefox' and platform.system() = 'Windows':īrowserPath = 'C:/Program Files/Mozilla Firefox/firefox.exe' UserSleepTime = int(input("How long do you want it to run?")) UserBrowserC = input(str("Browser Type: chrome, opera, iexplore, firefox : ")) I actually changed it some more here it is updated since I am still working on this launcher import time Webbrowser.get(chrome_path).open_new_tab(game_site_link) import timeĬhrome_path_windows = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'Ĭhrome_path_linux = '/usr/bin/google-chrome %s'Ĭhrome_path_mac = 'open -a /Applications/Google\ Chrome.app %s' If none are found it opens default browser to your link. If it finds a match it sets the chrome path for you. Checks it against known values for different operating systems. Made this for a game I play, it was relevant so i'm leaving it.
