fix: complete TechLog migration evidence

This commit is contained in:
DongHyeonka
2026-08-16 04:55:52 +09:00
parent 6c2780b7a7
commit 3a7c5deca0
81 changed files with 1492 additions and 345 deletions
+5 -1
View File
@@ -127,8 +127,12 @@ export async function settleTechLogPage(page: Page) {
export async function gotoTechLog(page: Page, path: string) {
await prepareTechLogPage(page);
await page.goto(path);
const response = await page.goto(path, { waitUntil: "networkidle" });
await page.locator("body").waitFor({ state: "visible" });
if (response?.headers()["content-type"]?.startsWith("text/html")) {
await page.locator("html[data-build-id][data-release-id]").waitFor();
await page.locator(".site-frame, .studio-app").waitFor();
}
await settleTechLogPage(page);
}