static L> googleSearch_uncached(Browser browser, S query) { temp var page = playwrightOpenPage(browser, appendParamsToURL("https://google.com/search", q := query)); L links1 = page.querySelectorAll("a[href]:has(h3)"); LPairS links = map(links1, l -> pair(l.getAttribute("href"), trim(htmlDecode_dropTags(l.querySelector("h3").innerHTML())))); ret map(links, l -> WithURL(l.a, l.b)); }