Questions tagged [chromium]

Chromium is the open source web browser project from which Google Chrome draws its source code.

Chromium is the open source web browser project from which Google Chrome draws its source code.

The project's hourly Chromium snapshots appear essentially similar to the latest builds of Google Chrome aside from the omission of certain Google additions, most noticeable among them being Google's branding, auto-update mechanism, click-through licensing terms, usage tracking, and built-in PDF viewer.

Chromium uses the Blink layout engine.

See

4191 questions
29
votes
4 answers

How to reload page in Puppeteer?

I would like to reload the page whenever the page doesn't load properly or encounters a problem. I tried page.reload() but it doesn't work. for(const sect of sections ){ // Now collect all the URLs const appUrls = await…
glhe13
  • 469
  • 1
  • 4
  • 10
28
votes
2 answers

Finding way around chromium's source code

I just checked out chromium's source, but I desperately need to learn how to navigate around this monster. How would I search for parts of the code that implement behavior/features I'm interested in? Let's say I want to see what happens after a URL…
ntl0ve
  • 1,896
  • 3
  • 19
  • 25
28
votes
1 answer

How to install chromium in Docker based on Ubuntu 19.10 and 20.04?

I have this simple docker file: FROM ubuntu:eoan ENV DEBIAN_FRONTEND=noninteractive RUN apt update && apt install -y \ chromium-browser \ chromium-chromedriver When I try to build it: ... Preparing to unpack…
Jeremad
  • 883
  • 2
  • 10
  • 21
28
votes
3 answers

Chromium's XSS auditor refused to execute a script

This is a message from the Chrome Inspector: The XSS Auditor refused to execute a script in http://localhost/Disposable Working NOTAS.php because its source code was found within the request. The auditor was enabled as the server sent…
MountainMan
  • 753
  • 2
  • 10
  • 20
27
votes
4 answers

Running headless Chrome / Puppeteer with --no-sandbox

Background I built an application that uses Puppeteer on my localhost. Now that I am trying to deploy it into a debian environment the script that runs Puppeteer is timing out. After researching it I realized it is a common problem. Most debian…
wuno
  • 9,547
  • 19
  • 96
  • 180
27
votes
3 answers

Strange diagonal lines in Chrome/Chromium (bug?)

When I use CSS filters, shadows, transformations, SVG (or similar), my Chrome/Chromium shows a strange diagonal lines: filter:drop-shadow(0px 0px 10px #dce810); transform:skew(-15deg); No error in Firefox (Windows) / Canary Chrome 58.…
Manz
  • 948
  • 12
  • 26
27
votes
3 answers

Chrome + CORS + cache - requesting same file from two different origins

I'm experiencing an issue with Chrome that I can't seem to fully understand, I'm curious if folks here have dealt with it before. This doesn't reproduce in Firefox. The steps are as follows: Start incognito Chrome, navigate to…
Alexandr Kurilin
  • 7,685
  • 6
  • 48
  • 76
26
votes
8 answers

Use Selenium with Chromium Browser

In the Selenium options (on Firefox) I can find Custom browser. Is it possible to use this option to run a Selenium test in Chromium Browser (not Chrome)?
RusAlex
  • 8,245
  • 6
  • 36
  • 44
26
votes
1 answer

How to share & WebRTC stream from /dev/videoX device from a Chromium on host and Chromium in a docker container

Environment Host running Ubuntu 14.04.5 LTS Docker version 17.09.0-ce, build afdb6d4 Chromium 62.0.3202.89 2 webcams: /dev/video0, /dev/video1 Cameras # v4l2-ctl --list-devices Venus USB2.0 Camera (usb-0000:00:1a.0-1.2.2): /dev/video1 USB 2.0…
zabumba
  • 12,172
  • 16
  • 72
  • 129
26
votes
1 answer

Failed to load because no supported source was found. when playing HTML5 audio element

I have HTML5 audio element If I try to call element.play() strange error appears in Chrome web console. Uncaught (in promise) DOMException: Failed…
Sergii Bishyr
  • 8,331
  • 6
  • 40
  • 69
26
votes
10 answers

Server has a weak ephemeral Diffie-Hellman public key. How to by-pass it?

While I'm trying to visit a specific website (that one: https://login.uj.edu.pl) I'm getting ERR_INVALID_ARGUMENT error. Here is the problem: "Server has a weak ephemeral Diffie-Hellman public key". More about the issue there:…
koras
  • 1,107
  • 2
  • 13
  • 28
26
votes
1 answer

PAC support disabled because there is no system implementation

I've recently upgraded my Nexus 4 to Android 4.4. Whilst debugging my app, I discovered message W/chromium(14962): [WARNING:proxy_service.cc(888)] PAC support disabled because there is no system implementation What does it mean ? Logcat 12-12…
Someone Somewhere
  • 23,475
  • 11
  • 118
  • 166
25
votes
1 answer

karma tests on chromium

Is it possible to run karma tests with chromium browser, in order to run these karma tests on linux box which has an open source version of chrome in it?
Kamal Reddy
  • 2,610
  • 5
  • 28
  • 36
24
votes
3 answers

Package not found: com.android.chrome

I have seen lots of crashes in the app with the message used as title here. Almost all of the crashes are on OnePlus devices and most of them are on the version of Oxygen OS forked from Android Oreo. Has anyone else seen this? The following is the…
Jayesh Elamgodil
  • 1,467
  • 11
  • 15
24
votes
7 answers

puppeteer - how to set download location

I was able to successfully download a file with puppeteer, but it was just saving it to my /Downloads folder. I've been looking around and can't find anything in the api or forums to set this location. My downloads are basically just go going to the…
A. L
  • 11,695
  • 23
  • 85
  • 163