Payments are experiencing issues due to temporary restrictions in Russia. If your payment does not go through, please submit a support request.Our support team is available 24/7 — we are always here to help with hosting and server issues.We are now accepting requests for dedicated server rental and colocation services in our data center.Reminder: we recommend enabling backups for additional data protection.A new VPS/VDS lineup with NVMe storage and improved performance is now available.Maintenance work on some servers has been completed. All services are operating normally.
Article3 min read

Chrome Shifts to Biweekly Major Releases: How to Verify Your Site

Starting with Chrome 153, major releases occur more frequently. I explain how to restructure testing for your online store and personal account without constant emergency checks.

Two empty calendar cards next to a small browser window model
In this article

On September 8, 2026, the Chrome team announced a shift to a two-week cycle for major releases, beginning with version 153. This change affects both desktop and mobile versions. For organizations requiring a different pace, the Extended Stable channel remains available.

For a website owner, this news means the environment where customers shop updates more often. It does not require rewriting the project every two weeks. However, relying on compatibility checks performed only once after a major redesign becomes an even less convincing control method.

Test actions, not just pages

The homepage may look perfect until the pickup point selection fails or a document upload hangs. Therefore, your test suite should describe a user journey: find a product, select an option, add it to the cart, complete the order, and view the confirmation.

For a service website, the journey differs: read the offer, fill out a form, submit an attachment, and receive a clear result. For a personal account, include logging in, recovering access, and logging out. A dozen such scenarios are more valuable than hundreds of formal page openings.

What to entrust to automated checks

Repetitive actions are best run automatically in a test environment. The check must confirm the result: the order actually appeared in the test system, the selected delivery method was saved, and the total amount did not change unexpectedly.

The absence of errors in the console is not enough. Conversely, not every console entry indicates a user-facing failure. Developers need context to understand when an error impacts a specific action.

Where human involvement is still required

Manual testing remains valuable for unusual layouts, accessibility, and behavior on real mobile devices. A virtual keyboard can cover a button, a dialog can end up behind another layer, and a long product name can push the price out of view.

I would keep a short manual flow for the most critical screens. It must be equally clear to both the tester and the product owner: what result is expected and what counts as a problem. This ensures the check does not rely on one employee's memory.

Do not update everything at once

If a browser update coincides with changes to the template, payment module, and delivery service, finding the root cause becomes harder. It is useful to record versions and timestamps of changes, and to save a reproducible example immediately after detecting the issue.

Pre-release testing in an available browser channel helps identify incompatibilities before the mass update. However, it does not replace monitoring for real errors after the stable version is released.

What to include in site maintenance

Agree on a small, constant set of scenarios, their execution frequency, and the person responsible for receiving the results. For critical errors, the response time and the method to temporarily restore operations must be clear.

The most useful change is to make compatibility a regular part of maintenance. Then, a new Chrome release becomes a routine reason to check familiar actions, rather than a sudden explanation for why the store lost orders for several days.

Discussion0

Share your experience and ask questions. Comments without links appear after editorial review.

No comments yet. Start the discussion.