File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -565,7 +565,7 @@ export default class FOBasePage extends CommonPage implements FOBasePagePageInte
565
565
*/
566
566
async hasAutocompleteSearchResult ( page : Page , productName : string ) : Promise < boolean > {
567
567
await this . setValue ( page , this . searchInput , productName ) ;
568
-
568
+
569
569
return this . isAutocompleteSearchResultVisible ( page ) ;
570
570
}
571
571
@@ -578,7 +578,7 @@ export default class FOBasePage extends CommonPage implements FOBasePagePageInte
578
578
async getAutocompleteSearchResult ( page : Page , productName : string ) : Promise < string > {
579
579
await this . setValue ( page , this . searchInput , productName ) ;
580
580
await this . waitForVisibleSelector ( page , this . autocompleteSearchResult ) ;
581
-
581
+
582
582
return this . getTextContent ( page , this . autocompleteSearchResult ) ;
583
583
}
584
584
@@ -591,7 +591,7 @@ export default class FOBasePage extends CommonPage implements FOBasePagePageInte
591
591
async countAutocompleteSearchResult ( page : Page , productName : string ) : Promise < number > {
592
592
await this . setValue ( page , this . searchInput , productName ) ;
593
593
await this . waitForVisibleSelector ( page , this . autocompleteSearchResultItem ) ;
594
-
594
+
595
595
return page . locator ( this . autocompleteSearchResultItem ) . count ( ) ;
596
596
}
597
597
You can’t perform that action at this time.
0 commit comments