[iPad] Clicking on system popups

Hi.

During the course of my tests on iPad, system alerts with options like “Cancel”, “OK”, “Install” come up.

I tried finding them both by image and by text and then click on the “Install” button. The script finds the button correctly and clicks on it, but there is no effect of click. But, if I touch the button manually, it works.

Is it limitation that eggPlant cannot execute clicks on system alerts?

Trying using OCR , to find the text on pop up and click on that.And also try to capture image in different capture type like tolerance, precise and pulsing etc.

Should work :slight_smile:

Let me know if you find any issues.

You currently need to hold down the shift key when clicking on panels generated by the iOS:

KeyDown ShiftKey
Click "Install button"
KeyUp ShiftKey

This is a temporary workaround; in the future you will either be able to just click on those buttons or you will use a different modifier key.

Thanks.