Unable to click on submit button in lastest ui activities

@askvajrang
I am unable to click on submit button and using latest ui automation activities
how can i resolve it

@askvajrang please help

Check for element active or not before clicking on it

@Vajrang
Use strict selecor by selecing in property and enable all the options wait for ready?

Hi @Vajrang

In this case, you can use the combination of the Click & the Trigger Scope activities to achieve the desired result.

In the Click activity, you need to set the AlterIfDisabled as False, which restricts the clicking action, if the element is inactive.

Along with this action, you need to configure the Trigger Scope activity (by appropriately setting the time out too), such that it will fail in the case of disabled element presence. You can handle this failure using try catch as well.

By this, you can determine the state of the element at the runtime, whether it’s active or not.

Hope this helps,
Best Regards.

Hi @Vajrang

Use Check App State activity or Element Exists activity to click the Submit button.


image

Hope it helps!!
Regards,

Hi @Vajrang

  • Make sure that the button is actually visible. If the button is not visible, you will not be able to click on it. You can use the Is Visible property of the button to check if it is visible.

  • Make sure that the button is enabled. If the button is disabled, you will not be able to click on it. You can use the Is Enabled property of the button to check if it is enabled.

  • Make sure that the button has a valid selector. The selector is the text or xpath that UiPath uses to identify the button. If the selector is not valid, UiPath will not be able to find the button. You can use the Properties window to check the selector of the button.

  • Make sure that the click activity is configured correctly. The click activity has a number of properties that you need to configure correctly in order to click on the button. These properties include the Selector, Xpath, and Wait For Ready properties. You can use the Properties window to configure the click activity.

  • Use the Strict option for the Selector property. This will ensure that UiPath only clicks on the button that matches the selector exactly.

  • Use the Wait For Ready property. This will tell UiPath to wait until the button is ready to be clicked before it tries to click on it.

  • Use the Try/Catch block. This will allow you to handle any errors that occur when you try to click on the button.

Hope it helps!!

Hi @Vajrang

If you are using modern activities to click on the submit button by click activity. You have place the click activity in the Use application\browser activity.
In use application\browser activity indicate the web browser or desktop application that you are using and indicate the submit button for the click activity. Check the below image for better understanding.

Hope it helps!!

Hi,

You can use Click Text activity too, Just put “Submit” as the text and specify selctors for your window, should work like a charm.

Thanks.