mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 14:22:02 +00:00
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
import { Page, Locator } from '@playwright/test';
|
|
|
|
/**
|
|
* Get the settings view scrollable content area
|
|
*/
|
|
export async function getSettingsContentArea(page: Page): Promise<Locator> {
|
|
return page.locator('[data-testid="settings-view"] .overflow-y-auto');
|
|
}
|