Questions tagged [google-chrome]

Inquiries regarding Google Chrome development, the browser utilizing Blink rendering engine, can be addressed through [google-chrome] tag. However, please note that this platform is not suitable for general browser support concerns or inquiries about customization. For such queries, it is recommended to seek assistance on google-chrome. If you have questions specifically related to Chrome OS or Chromium, kindly use their respective tags: [google-chrome-os] and [chromium].

Issue with Webstorm not automatically updating changes made to JavaScript files

On my HTML page, I have included references to several JavaScript files such as: <script type="text/javascript" src="MyClass.js"></script> When debugging in WebStorm using a Python SimpleHTTPServer on Windows with Chrome, I am able to set bre ...

The auto-fill feature on Chrome is populating incorrect text fields

Currently, I am working on a PHP website and encountered an issue regarding the profile page. The auto-fill feature seems to be placing my email address in the input field designated for street address. For a clearer understanding, refer to the image link ...

Chrome is having trouble displaying Roboto font correctly

I have been experiencing an issue with the rendering of the Roboto font on a client's website. When I view the site in Chrome (version 43.0.2357.65 m), all the different weights of Roboto appear to look the same. For example, here is a comparison: On the ...

Automatically Trigger Setup Upon Download Completion [PHP]

When you go to https://www.google.com/chrome/browser/#eula to download Google Chrome, the setup file starts automatically after clicking the accept & install button. I am wondering if it is possible for me to open a file on the user's pc in the same w ...

personalized options for initiating and concluding html audio component

I am currently facing an issue with my html audio element that plays a track. The setup is quite straightforward: <audio controls loop="loop"> <source type="audio/wav" src="song.wav"> </audio> However, I need to create custom start ...

Personalizing Web Push Alerts (Google Chrome)

I successfully implemented a web push notification for Google Chrome using Google Project and Service Worker. One thing I'm curious about is how to customize or style the push notification. The plain message box doesn't quite cut it for me – I'd love to ...

Page jumping vertically in Chrome upon reload, with Firefox and Internet Explorer functioning properly

Utilizing this jQuery script, I am able to center a website vertically within the browser window if it exceeds the height of the outer wrapper-div, which has fixed dimensions. $( document ).ready(function() { centerPage(); )}; // center page vertic ...

Chrome is the only browser that will experience a failure in a CORS request if it includes

When attempting to make a simple CORS request to an external application server that uses a session key for authorization, I encountered some issues. $.ajax({ type: "GET", url: "https://192.168.1.72:8442/api/file/", headers: {"Authorization": ...

Inquiry on Selenium Python Web Scraping

I encountered an issue with my code : from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.common.by import By from selenium.webdriver import EdgeOptions import os os.environ['PATH'] += "C:\U ...

Using VBA with Selenium and Chromedriver to download and store PDF files

Here is a link to a PDF file that opens in Chrome: PDF file. Is there a way to save this PDF file directly from this page? I am running chrome with the following settings: driver.SetPreference "download.default_directory", "c:\chr" ...

Issue with PHP Custom 404 Page not displaying correctly on Chrome browsers

There have been reports indicating that individuals are not able to view the customized 404 page implemented by our framework. header("HTTP/1.0 404 Not Found"); header("Status: 404 Not Found"); header("refresh:0;url=" . ERROR_PAGES_404 ); header("Connecti ...

Inconsistent behavior between Chrome and Firefox when using AngularJS $resource GET method: success in Chrome but error

I am currently working on a simple custom GET request in Angular using $resource angular.module('myApp') .factory('MyService', function($resource){ return $resrouce('some url', {}, { list: {method:'GET', params:{}} }); }); This ...

How can we ensure that pointer events return the same coordinates as touch events when the viewport is zoomed in?

I attempted to utilize pointer events (such as pointerdown) instead of using a combination of touch events (e.g. touchstart) and mouse events (e.g. mousedown) to determine the input event coordinates. var bodyElement = document.body; bodyElement.addEvent ...

Python WebDriverException: The loading status cannot be determined because there is no execution context available

Currently using Selenium for web scraping with the following code: driver.switch_to.window(driver.window_handles[1]) WebDriverWait(driver, 60).until(EC.presence_of_element_located((By.CSS_SELECTOR,'#listForm > div ...

Google Chrome does not support inlined sources when it comes to source maps

Greetings to all who venture across the vast expanse of the internet! I am currently delving into the realm of typescript-code and transcending it into javascript. With the utilization of both --inlineSourceMap and --inlineSources flags, I have observed t ...

The synchronization between Selenium and ChromeDriverManager fails to grab the most recent update of ChromeDriver

I encountered an issue: Error: Type: <class 'selenium.common.exceptions.SessionNotCreatedException'> Message: session not created: This version of ChromeDriver only supports Chrome version 96 Current browser version is 98.0.4758.82 with binary path . ...

Selenium Grid: Unable to locate the DevToolsActivePort file (error: Chrome did not launch successfully and exited abnormally)

Recently, I decided to use Selenium Grid to automate some tests. To make the process more efficient, I set up VMs running on a LINUX Platform (one acting as a Selenium hub and others as Selenium nodes). The standalone server started without any issues in b ...

Debugging and ensuring the functionality of Cordova (Phonegap) HTTPS connections

There is an HTTPS site with an API that needs to be accessed. I need to work from Cordova (AngularJS) with its HTTPS API. Additionally, I want to debug the AngularJS app in a web browser (Chrome) because it's much quicker compared to rebuilding and deplo ...

Chrome full screen mode can be toggled on websites after ajax data has loaded

I am currently experiencing a frustrating issue with Chrome on my webpage. The pagination feature loads content via an ajax call at: Whenever I click on the 2nd, 3rd, or subsequent tab in the pagination, the load process occurs but then suddenly jumps int ...

Issue with display of Favicon in Google Chrome browser

My favicon is not appearing on my Chrome tab, even though I've checked multiple articles and confirmed that the code is correct. It does show up in Firefox, so I'm confused as to why it's not working in Chrome. I've cleared my cache and ...

Tips for launching a new tab within the current browsing session

Looking for a way to open a new tab in the same session? I have attempted the usual solutions provided by others with no success. I am specifically working with the Chrome browser for this task. My project is coded in Java. ...

Chrome is experiencing a problem with anchor tags that have an href attribute set to a "blob:" URL and using a target of "_blank"

My current project involves developing a website feature that allows users to download a PDF version of a page. To achieve this, the generated HTML is rendered into a PDF on the server, which is then returned as a Base64-encoded PDF. This data is converted ...

Encountering ERR_SSL_PROTOCOL_ERROR with ChromeDriver even with the --ignore-certificate-errors flag

I'm attempting to perform integration tests on a local host (without HTTPS) using Selenium with ChromeDriver. Chrome insists on an HTTPS certificate, but I discovered from this question that I can bypass this requirement by using the argument --ignore-cer ...

Guide on scraping at regular intervals using Python Selenium Chrome Driver

Scenario: I am facing a challenge with a website that requires me to scrape information from it at regular intervals. The site involves user input, so I opted to use Selenium for this task. The workflow is such that the user can interact with the web brows ...

ChromeDriver fails to open a new page when using the chrome_options parameter

When attempting to open a new page using ChromeDriver, I am using the following code: import selenium from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as E ...

Can Chrome Support Bookmarklets?

While attempting to craft a bookmarklet in Chrome using the console, I encountered the following error: Refused to load the script 'https://code.jquery.com/jquery-1.6.1.min.js' because it violates the following Content Security Policy directive: ...

Chrome won't display the downloaded file until at least 8 bytes have been sent, unlike Firefox which shows it immediately

My goal is to implement an HTTP method that sends a file to the user, but there is a delay of 4 seconds required to generate the file content. The challenge I'm facing is that Chrome only displays the file as being downloaded after 8 bytes are sent. U ...

Excess space appearing to the right of the text box in Internet Explorer 9 standards mode and Google Chrome

Looking for help on how to eliminate the space between the right side of an input textbox and a red border? Check out these examples: IE: http://jsfiddle.net/fQHGA/ <div style="float:left;border:1px solid red"> <label style="float:left">a ...

Displaying cursor in Selenium Webdriver with s

As I develop a Selenium Webdriver script using Python, my current challenge involves executing actions that involve moving to a specific spot and performing a click. However, I encountered an issue where these actions are not working as expected. To troubl ...

Errors encountered by the Chrome extension

Hey there, I've recently delved into creating a chrome extension but hit a roadblock. My issue revolves around the service worker registration failing and encountering errors related to undefined properties. https://i.stack.imgur.com/bGzB4.png The core c ...

Chrome Experiencing Issues with Nested Divs

Having an issue with nested divs in Chrome <div id="wrapper"> <div id="content"> </div> </div> The wrapper div acts as a bordered container, forming a box. In Safari and Firefox, the content sits inside this box consistentl ...

NodeJS CORS functionality failing to function properly in the Google Chrome browser

In my nodejs script, I have implemented CORS as shown below: var express = require('express') , cors = require('cors') , app = express(); app.use(cors()); To fetch JSON data from another domain, I am using an AJAX request. While this setup works fl ...

Error encountered when attempting to click a button in a Python/Selenium script due to timeout exception

I've hit a roadblock trying to create a Python/Selenium script that should be straightforward. All I need is an automated process to click a button on a webpage, triggering the download of a CSV file associated with that button click. Here is the sc ...

`Text-overflow ellipsis should function consistently across both Firefox and Chrome browsers`

A design has been created to showcase captions for articles and their respective statuses. The article name box has a fixed width, with text-overflow:ellipsis applied to trim excessively long names. Additionally, a light grey dotted line is added at the en ...

Every time Chrome on Android returns a keyCode of 229

Here is a snippet of code that I am having trouble with: ... @HostListener('keydown', ['$event']) onKeyDown(evt: KeyboardEvent) { console.log('KeyCode : ' + evt.keyCode); console.log('Which : ' + evt.which); ...

Encountered an error while trying to upload a file to a web application using Chrome through Appium

My attempts to upload a file to through Chrome using Appium have consistently resulted in an ERR_ACCESS_DENIED error. The file I am trying to upload is located in the Download folder on my device. Please see the image below: https://i.stack.imgur.com/w ...

Is there a way to customize Firefox's default styles similar to Chrome's?

Can you change the default styles of Firefox to match those of Chrome? ...

What is the reason behind the varying dimensions of images on Chrome compared to Firefox?

I've been working on enhancing my web development skills and decided to create a personal portfolio. During the development process, I focused mainly on Firefox as my browser of choice. One section of the portfolio includes showcasing my skills using flexb ...

Steps to display the leave site prompt during the beforeunload event once a function has finished running

While facing a challenge with executing synchronous Ajax methods in page dismissal events, I discovered that modern browsers no longer support this functionality in the "beforeunload" event. To work around this issue, I implemented a new promise that resol ...

Using Selenium on a Mac: Issues with Webdrivers not displaying browser window

Is there a way to display the browser window on Mac Os Monterey while using Selenium (non-headless mode)? For instance: #!/usr/bin/env python3 from selenium import webdriver from selenium.webdriver.chrome.service import Service from webdriver_manager.chr ...

Is there a way to exit from await Promise.all once any promise has been fulfilled in Chrome version 80?

Seeking the most efficient way to determine which server will respond to a request, I initially attempted sending requests in sequence. However, desiring to expedite this probing process, I revised my code as follows: async function probing(servers) { ...

Running Selenium ChromeDriver as a daemon and deploying it: A comprehensive guide

After successfully setting up the latest version of Selenium Server, ChromeDriver, and Chrome on a headless Debian 7 VM with manual running through Screen and Xvfb, I am now looking to transfer this setup to a production Ubuntu 12.04 VM. For security reaso ...

Is it common for Google Chrome console snapshots to have a prolonged idle time?

I noticed in Google Chrome console snapshot that my JavaScript code has a long "Idle" time. I'm not sure if this is normal. Attached is a screenshot for reference: https://i.stack.imgur.com/k0mkp.png Could this extended "Idle" time be attributed to ...

Voice recognition feature in the latest version of Chrome on Android devices

When using a PC with Chrome 25 (non beta), I see a microphone icon that prompts for input when clicked. After speaking, my alert call is successfully executed. However, on a Galaxy Note smartphone with Chrome 25 and an Android 4.04 operating system, the sa ...

Caching HTML5 videos in Google Chrome

I am currently in the process of building a website and have successfully added an HTML5 video. However, I encountered an issue when attempting to change the video file in the background for users to upload a new one. Despite updating the video URL, Chro ...

Hiding Chrome Web Driver Icon in Python-Selenium

UPDATED FOR BETTER PERFORMANCE Aim: Operate chrome web driver in the background without revealing an app icon in the dock or application bar. Please note that while I can run chrome headless, I've not yet found a way to prevent the chrome icon from appear ...

Differences in the way websites scroll on Chrome compared to Safari and Firefox

Currently, I am in the process of developing a rendering system for my application that extracts objects from a collection and processes them through JavaScript templates to generate additional children as the user scrolls through the page. The system is d ...

Modify user profile in Selenium WebDriver using Chrome

I'm currently facing an issue with Selenium Webdriver. I need to switch the user profile from one user to another within my tests. For example, user1 is a regular user while user2 has administrative rights. I plan to run a test case using a common user wi ...

Troubleshooting CSS Display Problem on Chrome and Firefox

While working on the design of a website offline, everything seemed to be running smoothly. However, upon uploading it to the server, various issues began to arise. Initially, the file loaded correctly upon first visit. Unfortunately, after reloading the ...

selenium.common.exceptions.WebDriverException: Error: Could not start Chrome process using ChromeDriver in combination with Selenium and Python

I'm attempting to automate clicking a button using Selenium. Since I couldn't locate the element ID, I used xpath to find it. EDIT: Although I initially didn't think the rest of the code was relevant, I've included it just in case. Here is The Code: impo ...

What advantages does Selenium's Chromedriver have in terms of resource efficiency compared to standard Chrome?

Upon observation, I have discovered that launching Chrome with fresh user data directories via Selenium WebDriver results in significantly lower resource usage (CPU, memory, and disk) compared to a normal launch. The reason for this significant difference ...

When scrubbing through videos, Chrome consistently throws a MEDIA_ERR_DECODE error

Encountering a MEDIA_ERR_DECODE error while scrubbing in Chrome on two different PCs. One PC runs Windows 7 with Chrome version 26, and the other runs Windows 8 with Chrome version 27. This issue occurs across all videos. When attempting to scrub on the v ...

Using the Selenium web driver with Google Chrome

I'm having an issue while attempting to utilize Selenium WebDriver with Google Chrome in Eclipse. When I execute my code, the following error is displayed: Starting ChromeDriver 2.25.426923 (0390b88869384d6eb0d5d09729679f934aab9eed) on port 40315 Only ...

Chrome on OSX Mavericks threw a RangeError because the maximum call stack size was exceeded

While attempting to run an Angular app using linemanjs in Chrome on a Mac, I encountered the following error: Uncaught RangeError: Maximum call stack size exceeded An interesting observation is that the site functions properly on Chrome on a Windows mach ...

Having trouble getting your Symfony2 application to work with Behat and Selenium2 for mobile testing?

Struggling to configure Behat tests for mobile devices in a Symfony2 project. I currently have the Selenium standalone server with Chromedriver running. Below is my behat.yml configuration file: default: suites: default: contexts: - ...

Opacity for ghost images in HTML5 drag-and-drop interface

Is there a way to make the ghost image for draggable elements in Chrome render on a transparent background, similar to how Firefox does it? I'm seeing that in Chrome (Chromium 45), the ghost image is displayed on a white background. For Example: http ...

Utilize the Golang Selenium library to establish a connection with a Selenium server and run headless Chrome

I recently started using the Go selenium package available at this link Currently, I have set up a headless chrome + selenium-server configuration within a docker container on localhost:4444 The server appears to be running smoothly as I am able to acces ...

Issue: Python Selenium ChromeDriver Chrome TypeError: Cannot Call 'Module'Description: When attempting to use Selenium Python with ChromeDriver to control Chrome

Currently, I am working on a project to create a spam bot for Google Forms in order to generate random submissions for my homework. However, I have encountered an error which reads: TabError: inconsistent use of tabs and spaces in indentation. Please note ...

The mobile responsive view in Chrome DevTools is displaying incorrect dimensions

Seeking some clarification on an issue I encountered: I recently created a simple webpage and attempted to make an element full width using width: 100vw. However, I observed that on screens smaller than around 300px, the element appeared smaller and not t ...

How can one transform a web-based application into a seamless full-screen desktop experience on a Mac?

"Which software can be utilized to enable a web application to display an icon on the desktop of a Mac computer, while also opening up the web application in a fully immersive full-screen mode that supports all the touch and gesture functionalities provi ...

Upon running the Python Selenium script, Google Chrome will shut down automatically

I was testing this code and noticed that it runs without any errors, but for some reason it automatically closes Google Chrome after searching for w3schools. from selenium import webdriver from selenium.webdriver.common.keys import Keys driver = webdri ...

Error: Unable to access the 'CodeMirror' property of null due to type mismatch

Encountering an issue with my NextJS (13) app. Chrome is throwing the following error: TypeError: Cannot read properties of null (reading 'CodeMirror') This error occurs every time I enter data in any input field within the app, although everyt ...

Ways to observe programmatically produced source code within a web browser

I have a question that is not related to a bug in my code, but rather a general inquiry about how browsers refresh source code. While it pertains to debugging, I believe it is appropriate to ask in this context. My rails app renders partials using ajax, a ...

Font malfunctioning on Microsoft Edge and Internet Explorer

Apologies if this seems like a silly question, but I recently imported a font from my computer into a CSS file. While it displays correctly in Chrome, it's not working in Microsoft Edge or Internet Explorer. Unfortunately, I don't have access to ...

How to extract Network Content displayed in Chrome using file_get_contents in PHP

While browsing through a website on Chrome, I noticed that one of the items loaded in the network tab of ChromeDev Tools is a JSON file. I tried using file_get_contents to retrieve this JSON file but all it returned was the HTML content of the webpage. I ...

Guide on Implementing jQuery UI Autocomplete with Chrome's Speech Input Feature

I have recently discovered a cool feature in Chrome that allows users to dictate into any input field using speech input. Learn more here. It's easy to add this feature in Chrome: <input type="text" x-webkit-speech="x-webkit-speech" /> <!-- read ...

The transparency feature using rgba is not supported in the Chrome browser for Android

Have you noticed the transparency effect in certain divs using the rgba CSS property? Strangely, Chrome on my ASUS tablet and Samsung S3 mini Galaxy smartphone does not seem to support this feature. Surprisingly, Internet Explorer does! Any insights on w ...

Is there a problem with Chrome's display?

I'm currently using Chrome version 53.0.2785.143 and have noticed a rendering issue that tends to occur more frequently within my application when utilizing CSS transform scale. Feel free to check out this JSFiddle link which demonstrates the problem. If ...

Guide to managing authentication popups in Chrome using Selenium WebDriver in Java

I'm currently dealing with an authentication pop-up in one of my new Webdriver scripts. While I have a solution that works for Internet Explorer, I'm facing some challenges with Chrome. The approach for IE was straightforward - following the guid ...

Bug in canvas rendering for Chrome versions 94 and 95

The Canvas drawing functionality in the Chrome browser seems to have some visible bugs. Here's an example of code that demonstrates this issue: const canvas = document.getElementById('canvas'); const ctx = canvas.getContext('2d'); ctx.setTransform(2, ...

Why is it that the date selector is missing in Firefox?

When using the provided HTML code, a date selector will appear on Google Chrome: <html> <head> <title> </title> </head> <body> <form> <input type="date" /> </form> </body> However, ...