In an authoritative intelligence dispatch verified through The Guardian Sport, significant international developments have emerged regarding Gay and Brook put England in complete control after Pakistan crumble once more. Observers across key diplomatic, corporate, and policy corridors are actively parsing the immediate impact, as corroborated by verified wire filings. England lead at Edgbaston after 14 wickets on day one Tongue takes four wickets, Robinson and Archer three In jettisoning seven players from their squad, parachuting seven more in, and then making four changes to their XI, Pakistan went into this third Test against England pretty much throwing mud at the wall in the hope that some of it might stick. Some did, in fairness, with newcomer Razaullah dismissing Joe Root after tea on the opening day with just his fourth delivery in Test cricket. Propelling the Dukes from a slingy, chest-on action that has a touch of Waqar Younis in his pomp, and hitting 92mph on the speed gun, the 21-year-old’s eventual two for 42 offered a glimmer of cheer for Pakistan’s otherwise downtrodden supporters. Continue reading... Close dialogue1/3Next imagePrevious imageToggle captionPrint subscriptionsSearch jobs Sign indocument.addEventListener('DOMContentLoaded', function () { /** The checkbox input element used to toggle the navigation menu. */ const navInputCheckbox = document.getElementById('header-nav-input-checkbox'); /** The veggie burger button element used to open/close the menu. */ const veggieBurger = document.getElementById('header-veggie-burger'); /** List of menu items that should be selectable when the menu is open. */ const expandedMenuClickableTags = document.querySelectorAll( '.selectableMenuItem', ); /** The root element of the expanded menu. */ const expandedMenu = document.getElementById('header-expanded-menu-root'); /** The label for the first column in the menu, assumed to be "News".*/ const firstColLabel = document.getElementById('News-button'); /** The link element in the second list item under news links. */ const firstColLink = document.querySelector( '#newsLinks > li:nth-of-type(2) > a', ); /** * Focuses on the first navigation element depending on whether the first column label is visible. * * If the first column label is not visible, the function focuses on the first link element. * Otherwise, it focuses on the first column label. */ const focusOnFirstNavElement = () => { if (window.getComputedStyle(firstColLabel).display === 'none') { firstColLink.focus(); } else { firstColLabel.focus(); } }; /** * Updates ARIA attributes and tabindex values based on whether the menu is open or closed. */ const updateAttributesForMenu = (isOpen) => { firstColLabel.setAttribute('aria-expanded', isOpen ? 'true' : 'false'); veggieBurger.setAttribute( 'data-link-name', isOpen ? 'header : veggie-burger : hide' : 'header : veggie-burger : show', ); expandedMenuClickableTags.forEach((tag) => { tag.setAttribute('tabindex', isOpen ? '0' : '-1'); }); }; /** Toggles the navigation menu by simulating a click on the checkbox. */ const toggleMainMenu = () => { if (navInputCheckbox) { navInputCheckbox.click(); } }; /** * Handles keydown events to toggle the menu when the Enter or Space key is pressed. */ const keydownToggleMainMenu = (e) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); toggleMainMenu(); } }; /** * Handles click events to manage the state of the navigation menu. * * - Toggles the menu open/close state when the menu button (veggieBurger) is clicked. */ const handleMenuClick = (e) => { const menuButtonClicked = navInputCheckbox === e.target; const clickInsideMenu = expandedMenu.contains(e.target); const menuIsOpen = navInputCheckbox.checked if (menuButtonClicked && !menuIsOpen) { document.body.classList.toggle('nav-is-open') firstColLabel.setAttribute('aria-expanded', 'false') veggieBurger.setAttribute('data-link-name','header : veggie-burger : show') expandedMenuClickableTags.forEach(function($selectableElement){ $selectableElement.setAttribute('tabindex','-1') }) } else if (menuButtonClicked && menuIsOpen) { document.body.classList.toggle('nav-is-open') firstColLabel.setAttribute('aria-expanded', 'true') veggieBurger.setAttribute('data-link-name','header : veggie-burger : hide') expandedMenuClickableTags.forEach(function($selectableElement){ $selectableElement.setAttribute('tabindex','0') }) focusOnFirstNavElement() } }; /** Adds event listeners to manage the navigation menu. */ if (navInputCheckbox) { navInputCheckbox.addEventListener('click', handleMenuClick); veggieBurger.addEventListener('keydown', keydownToggleMainMenu); document.addEventListener('keydown', (e) => { if (e.key === 'Escape' && navInputCheckbox.checked) { toggleMainMenu(); veggieBurger.focus(); } }); /** * Handles mouse down events to manage the state of the navigation menu. * * - Closes the menu if the click occurs outside both the menu button and the expanded menu. */ document.addEventListener('mousedown', function(e){ if(navInputCheckbox.checked && !expandedMenu.contains(e.target) && !veggieBurger.contains(e.target)){ toggleMainMenu() } }); } });UKUK editionUS editionAustralia editionEurope editionInternational editionThe Guardian - Back to homeThe GuardianNewsOpinionSportCultureLifestyleShow moreHide expanded menudocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('News-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('News-checkbox-input').click(); } }) })NewsView all NewsUK newsUS politicsWorld newsClimate crisisMiddle EastUkraineFootballNewslettersBusinessEnvironmentUK politicsScienceTechGlobal developmentObituariesdocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Opinion-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Opinion-checkbox-input').click(); } }) })OpinionView all OpinionThe Guardian viewColumnistsCartoonsOpinion videosLettersdocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Sport-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Sport-checkbox-input').click(); } }) })SportView all SportFootballCricketRugby unionTennisCyclingF1GolfBoxingRugby leagueRacingUS sportsdocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Culture-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Culture-checkbox-input').click(); } }) })CultureView all CultureFilmMusicTV & radioBooksArt & designStageGamesClassicaldocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Lifestyle-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Lifestyle-checkbox-input').click(); } }) })LifestyleView all LifestyleThe FilterFashionFoodRecipesTravelHealth & fitnessWomenMenLove & sexBeautyHome & gardenMoneyCarsSearch input google-search SearchSupport usPrint subscriptionsSearch jobsHire with Guardian JobsHolidaysLive eventsAbout UsDigital ArchiveGuardian Print ShopPatronsGuardian LicensingThe Guardian appVideoPodcastsPicturesNewslettersToday's paperInside the GuardianGuardian WeeklyCrosswordsWordiplyCorrectionsTipsSearch input google-search SearchSearch jobsHire with Guardian JobsHolidaysLive eventsAbout UsDigital ArchiveGuardian Print ShopPatronsGuardian LicensingFootballCricketRugby unionTennisCyclingF1GolfBoxingRugby leagueRacingUS sportsEngland v Pakistan 2026England v Pakistan 2026Gay and Brook put England in complete control after Pakistan crumble once more Emilio Gay plays a shot on his way to a half century at Edgbaston. Photograph: Gareth Copley/Getty ImagesView image in fullscreenEmilio Gay plays a shot on his way to a half century at Edgbaston. Photograph: Gareth Copley/Getty ImagesEngland v Pakistan 2026Gay and Brook put England in complete control after Pakistan crumble once moreEngland lead at Edgbaston after 14 wickets on day one Prefer the Guardian on GoogleIn jettisoning seven players from their squad, parachuting seven more in, and then making four changes to their XI, Pakistan went into this third Test against England pretty much throwing mud at the wall in the hope that some of it might stick. Some did, in fairness, with newcomer Razaullah dismissing Joe Root after tea on the opening day with just his fourth delivery in Test cricket. Propelling the Dukes from a slingy, chest-on action that has a touch of Waqar Younis in his pomp, and hitting 92mph on the speed gun, the 21-year-old’s eventual two for 42 offered a glimmer of cheer for Pakistan’s otherwise downtrodden supporters. Sadly their team’s broader slide continued and by stumps – even with just 73 overs bowled despite a mere five-minute stoppage for rain – England’s upperhand in a series they have already secured at 2-0 up remained. Having dismissed the tourists for 133 in just shy of 34 overs after winning a helpful toss, Root’s men closed on 156 for four and will go into day two leading by 23 runs. View image in fullscreenEngland’s Ollie Robinson celebrates the wicket of Pakistan’s Abdullah Shafique, caught by Dan Lawrence in the slips. Photograph: Mike Egerton/PAOllie Robinson had earlier passed 100 wickets in Test cricket, with the first of his three for 15 seeing him becoming the first Englishman to do so with a sub-20 average since a young Ian Botham. Josh Tongue whistled up four more of his own, while Jofra Archer, who openly said he was not looking forward to this match because of Edgbaston’s reputation for a flat one, walked off happy with three. Long term, however, it may be that England’s reply with the bat was the more significant half of the day. They got the better of the conditions, having rolled Pakistan under cloud cover and then enjoyed periods of sunshine thereafter. But for Emilio Gay, who made his third Test half-century with 60 from 114 balls, it may be the innings that books him a spot on the plane to South Africa this winter. View image in fullscreenEngland’s Harry Brook plays at Edgbaston on his way to a hard-fought 50. Photograph: Oli Scarff/AFP/Getty ImagesWhile Ben Duckett fell trying to land some early blows, and Jordan Cox was the latest to succumb to the charms of Mohammad Abbas lbw, Gay looked to play himself in and it was far from straightforward. The new ball zipped about, his running between the wickets produced the odd hairy moment, and he wore one eye-watering blow to his knee via an inside edge off the slippery Razaullah. But by the time the Razaullah got another to cannon into the stumps half an hour before the close, Gay had good reason to appear so crestfallen, having looked as good as anyone and unfurled nine silky-smooth fours en route. A stand of 105 with Harry Brook, who scrapped to 52 not out, was the kind of contribution that Root had called for in a summer that has been dominated by wobble-seam bowlers.
The underlying catalysts behind these events trace back to evolving structural dynamics across the Sports landscape. Over recent quarters, multilateral authorities and market participants have navigated mounting volatility, heightening the urgency of coordinated responses and policy alignment.
Senior analysts and industry stakeholders underscore that strategic transparency remains paramount. As institutional delegations evaluate risk models and operational contingencies, secondary dispatches indicate that further compliance directives and consultative reviews will be initiated in the coming cycle.
Broader economic and regulatory ramifications are projected to ripple across interconnected regional ecosystems. Market analysts note that supply chains, capital allocations, and policy frameworks must swiftly assimilate these verified updates to insulate against systemic bottlenecks.
The Global Post's editorial desk will continue rigorous monitoring of this developing story, with periodic updates provided as official statements and primary documentation are released by relevant governing bodies.