How to sign on mobile screen

In my project, i need to sign on a mobile screen. What activity do i use for that? or how do i achieve that?

@rpn_mail

Did you go through the movile related activities you have set text activity …and thena tap …can use them

https://docs.uipath.com/test-suite/docs/mobile-device-automation-activities

Cheers

Hi @rpn_mail

To sign on a mobile screen in UiPath, you can use the “Tap Text” activity, which allows you to tap on specific points on the screen. You can use this activity to simulate the movements of a finger on a touch screen.

Here’s how you can use the “Tap Text” activity to sign on a mobile screen:

  1. Open your UiPath project and navigate to the sequence where you want to sign on the mobile screen.

  2. Add a “Tap Text” activity to the sequence by dragging and dropping it from the activities panel.

  3. In the “Text” field of the activity, enter the text that you want to tap on the screen. This text should be the same as the text that appears on the screen where you want to sign.

  4. In the “Target” field, select the mobile device that you want to sign on. To do this, click the “Indicate on screen” button and then click on the screen of the mobile device.

  5. Once you have selected the target device, use the “Offset X” and “Offset Y” fields to adjust the position where you want to tap. These values represent the number of pixels to move horizontally and vertically from the position of the text.

  6. Set the “Wait Before” and “Wait After” fields to a suitable value to ensure that the device has time to register the tap before moving on to the next activity.

  7. Repeat these steps for each point where you need to sign on the mobile screen, adjusting the text and position values as necessary.

Keep in mind that the “Tap Text” activity may not work on all mobile devices, especially if the screen is protected by a password or other security mechanism. In these cases, you may need to use other activities or methods to interact with the mobile device, such as using the “Click Image” activity to tap on specific buttons or icons on the screen.

Thank you @Nitya1 and @Anil_G

I was able to use Draw Pattern activity and it works!. Thank you for your feedback