mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 18:20:24 -05:00
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
export class MobileBudgetPage {
|
|
constructor(page) {
|
|
this.page = page;
|
|
|
|
this.categoryNames = page
|
|
.getByTestId('budget-groups')
|
|
.getByTestId('category-name');
|
|
}
|
|
}
|