Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,11 @@ export class BackfillPage extends BasePage {
public async selectReprocessBehavior(behavior: ReprocessBehaviorApi): Promise<void> {
const label = REPROCESS_API_TO_UI[behavior];

await this.page.locator("label").getByText(label, { exact: true }).click({ timeout: 5000 });
await this.page
.getByRole("radiogroup", { name: "Reprocess Behavior" })
.locator("label")
.filter({ hasText: label })
.click({ timeout: 10_000 });
}

public async toggleColumn(columnName: string): Promise<void> {
Expand Down
Loading