noname29

Results 7 comments of noname29

@kernel-sanders any illustration for that ?

how to pass arguments to a dll ? @kernel-sanders

not really. I am making experiments. @kernel-sanders i work with security

I tried to add ``` await page.touchscreen.touchStart(0, 0); await page.touchscreen.touchMove(15, 15); await page.touchscreen.touchMove(30.5, 30); await page.touchscreen.touchMove(50, 45.4); await page.touchscreen.touchMove(80, 50); await page.touchscreen.touchEnd() ``` Yet it has no effect, I don't...

I expect it to scroll down on the webpage, as on mobile you would put your finger and slide it up or down to scroll. I didnt see notice any...

Yes It seems `'Input.synthesizeScrollGesture'` is what I am looking for.. I tried 'Input.synthesizeTapGesture' to make a click as if touching on a phone screen, but didn't work ? How can...

``` await page.touchscreen.touchStart(150, 300); await page.touchscreen.touchMove(150, 310); await page.touchscreen.touchMove(150, 320); await page.touchscreen.touchMove(150, 330); await page.touchscreen.touchMove(150, 340); await page.touchscreen.touchMove(150, 350); await page.touchscreen.touchMove(150, 360); await page.touchscreen.touchEnd(); ``` This actually works very well...