File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -531,6 +531,8 @@ export async function testFilterCounts(
531
531
// Exit the filter menu
532
532
await page . locator ( "body" ) . click ( ) ;
533
533
await expect ( page . getByRole ( "checkbox" ) ) . toHaveCount ( 0 ) ;
534
+ // Wait for the table to load
535
+ await expect ( getFirstRowNthColumnCellLocator ( page , 0 ) ) . toBeVisible ( ) ;
534
536
// Expect the displayed count of elements to be 0
535
537
const firstNumber =
536
538
filterNumber <= elementsPerPage ? filterNumber : elementsPerPage ;
@@ -638,7 +640,7 @@ export async function testClearAll(
638
640
* Get the first link to a backpage with specified backpage access
639
641
* @param page - a Playright page locator
640
642
* @param access - the string denoting the level of access desired
641
- * @returns a Pla
643
+ * @returns a Playwright locator object to the first link to a backpage with the specified access
642
644
*/
643
645
const getBackpageLinkLocatorByAccess = ( page : Page , access : string ) : Locator =>
644
646
page
You can’t perform that action at this time.
0 commit comments