Disable auto-update setting & settings page has scroll shortcuts (#590)

Fixes https://github.com/dyad-sh/dyad/issues/561
This commit is contained in:
Will Chen
2025-07-07 15:43:06 -07:00
committed by GitHub
parent bc38f9b2d7
commit ab6a9d3b34
28 changed files with 526 additions and 136 deletions

View File

@@ -833,6 +833,10 @@ export class PageObject {
expect(sanitizedSettingsContent).toMatchSnapshot();
}
async toggleAutoUpdate() {
await this.page.getByRole("switch", { name: "Auto-update" }).click();
}
async clickTelemetryAccept() {
await this.page.getByTestId("telemetry-accept-button").click();
}