remove unnecessary await (https://github.com/woocommerce/woocommerce-blocks/pull/2764)
This commit is contained in:
parent
3fae904643
commit
1953d4f96a
|
@ -49,7 +49,7 @@ export async function visitBlockPage( title ) {
|
||||||
await page.type( '#post-search-input', title );
|
await page.type( '#post-search-input', title );
|
||||||
await page.click( '#search-submit', { waitUntil: 'domcontentloaded' } );
|
await page.click( '#search-submit', { waitUntil: 'domcontentloaded' } );
|
||||||
const pageLink = await page.$x( `//a[contains(text(), '${ title }')]` );
|
const pageLink = await page.$x( `//a[contains(text(), '${ title }')]` );
|
||||||
if ( ( await pageLink.length ) > 0 ) {
|
if ( pageLink.length > 0 ) {
|
||||||
// clicking the link directly caused racing issues, so I used goto.
|
// clicking the link directly caused racing issues, so I used goto.
|
||||||
link = await page.evaluate(
|
link = await page.evaluate(
|
||||||
( a ) => a.getAttribute( 'href' ),
|
( a ) => a.getAttribute( 'href' ),
|
||||||
|
|
Loading…
Reference in New Issue