Update Chrome version in puppeteer - google-chrome

i tryed to use puppeteer for Youtube, but I´m getting a message that my browser is to old to see videos - any idea?
#Benjamins-MBP Intagram_bot-master % node YViews.js
Chrome/78.0.3882.0

Related

selenium chrome driver, receive a "data:," in the URL and doesn't open correct webpage

I am using Chrome version 62 and Selenium webdriver v3.13.1
I have tried all the Chrome drivers that is compatible with Chrome v62 but yet I still receive the same issue. I can't update the Chrome version as the administrator at work(on a work pc) had prevented me to do so. Are there any alternatives to fixing this issue? Also I made sure the URL I wanted to access had "http://" in the code
Thanks
I had the same issue. What I did was to download MicrosoftWebDriver from
https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/
I placed the file inside the C:/Python37/Scripts folder and used Edge instead:
from selenium import webdriver
browser = webdriver.Edge()
browser.get("https://www.codewars.com")
I know it's not the same but it works! Hope you find it helpful.

Basic access authentication in Chrome url fails (http)

Since few days, I noticed an issue in url parsing in chrome that worked previously.
Indeed when using basic access authentification directly in url using a iframe or an anchor html tag, the final reached link is not correct.
For instance from the domain1.tld's page:
<iframe src="https://bob:thepasswd#domain2.tld"></iframe>
or
Test
will result in accessing the url
https://domain1.tld/https:/bob:thepasswd#domain2.tld
Please note that SSL certificates are valid and cross domain directive is set.
No message from debug console.
Chrome versions tested (under windows 10 x64):
52.0.2743.116 m does not work
53.0.2785.113 m does not work
55.0.2860.0 canary (64-bit) does not work
Firefox and Opera works correctly.
Am I missing something or is it a known issue? Not found more on the web.
However, many modern browsers no longer support this in links
INFO:

Webpage made using Polymer terminates on Google Chrome

I have made a webpage using Polymer. The webpage doesn't open on Google Chrome (both Windows and Android). When I try to open the page, Chrome shows "He's Dead, Jim!" message on Windows and "Aw, Snap!" message on Android. I have reset the settings and reinstalled Chrome but the problem still continues. Can anyone tell me how to solve this problem or the reason behind it?
https://www.googledrive.com/host/0B2Zii8voDW6QcGduNnl1cFBReXc/fold/
maybe you can check if there is any error in your page, which stop polymer initialization:
https://www.polymer-project.org/docs/polymer/debugging.html#unregistered-element-bookmarklet
Btw, did you try the official demo page with your browsers? If they work, then it's your code problem.

GAE app not displaying in Firefox 23.0.1

I have a small Google App Engine App that I've put in an iframe on a google site and have been running for some time now. I just noticed that the app will not display in Firefox version 23.0.1. I downgraded to Firefox version 22 and the form is visible and working. The form also works current versions of Chrome and Safari. The logs on the app engine dashboard show no error messages. If I open up the app in Firefox 23.0.1 using the link directly to the app, it works just fine.
Does anyone have any suggestions on how I might fix this or troubleshoot further? For now I'm just telling my users to use Chrome.
Thanks, brl8

facebook php SDK on chrome

I use the PHP SDK for creating a facebook app. It works fine on all the browsers, but not on Chrome.
I tested the adding of :
header('P3P: CP="CAO PSA OUR"');
at the begining of the facebook.php file, but in vain.
I know this topic has been covered in some posts on SO, but my problem seems different : on chrome when I load the facebook app I have a grey page with this icon
Is the problem related with https things ? With cookie things ?
More than that, when I use the JS sdk the same issue occurs.
Thank you for any help.