mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 10:17:00 +02:00
12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
import { BasePage } from './BasePage';
|
|
|
|
export class VersionsPage extends BasePage {
|
|
getVersionUpdatesPanel() {
|
|
return this.page.getByTestId('version-updates-panel');
|
|
}
|
|
|
|
getVersionCard() {
|
|
return this.page.getByTestId('version-card');
|
|
}
|
|
}
|