How to make Ctrl + A in puppeteer

How to make Ctrl + A in puppeteer.
I make Ctrl in key press page block
and
A in key press page block

How can I make Ctrl + A

Key down CTRL
Key press A
Key up CTRL

1 Like

It’s working with Key press A
When i try with this, it’s not working anymore
Key down CTRL
Key press U
Key up CTRL

That’s because CTRL+A is an action on the text in the page, CTRL+U is an action of the browser itself I guess.

1 Like

Why do you even need to do CTRL+U? Just use the Get DOM block if you want to read the stuff on the page.

1 Like

thank you so much ruri