Updated page util method
This commit is contained in:
parent
a4d6183229
commit
c10d03b6ab
|
@ -10,10 +10,8 @@ import { pressKeyWithModifier } from '@wordpress/e2e-test-utils';
|
||||||
* @param {string} value
|
* @param {string} value
|
||||||
*/
|
*/
|
||||||
const clearAndFillInput = async ( selector, value ) => {
|
const clearAndFillInput = async ( selector, value ) => {
|
||||||
await page.focus( selector );
|
await page.click(selector ,{ clickCount: 3 });
|
||||||
await page.waitFor(2000); // avoiding flakiness
|
await page.waitFor(1000); // avoiding flakiness
|
||||||
await pressKeyWithModifier( 'primary', 'a' );
|
|
||||||
await page.waitFor(2000); // avoiding flakiness
|
|
||||||
await page.type( selector, value );
|
await page.type( selector, value );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue