# Trouble Shoot

**FAQ's**

<details>

<summary>How can I send a value to the text box using JavaScript?</summary>

We can simply configure the “jsSend” property for the respective object

</details>

<details>

<summary>Can I click on the element before sending a value?</summary>

Yes, QATTS has the PRE-ACTION feature. Refer to LINK. (OR) Configure “clickAndSend” property.

</details>

<details>

<summary>I have a text box at the bottom of page, Can QATTS scroll automatically and send the value?</summary>

Yes, With the PRE and POST Action features it can be done. By, default QATTS scrolls to the element and sends the value.

</details>

<details>

<summary>Getting an exception “ElementNotInteractable” when sending a value. How can I handle this?</summary>

In general, whenever the element is getting overlapped with another element, we receive this kind of exceptions, to handle this kind of issues. Configure the property “jsClick”.

</details>

<details>

<summary>Value was not seen in the element after populating? There was no exception either?</summary>

In this scenario we have hover the mouse and send the value. Configuring “moveAndSend” will do the job perfectly.

</details>

<details>

<summary>Sending a value to a textbox, few characters were missing?</summary>

Cases like this, We need to send the value character by character to the element. It can be achieved simply by configuring “charSequence”.

</details>

<details>

<summary>How can I send a value from clipboard?</summary>

Yes, clipboard values can be sent by configuring “pasteOnly”.

</details>

<details>

<summary>How can i append my value to the existing value without clearing?</summary>

By configuring “sendWithoutClear”, We can achieve this.

</details>

<details>

<summary>By default, the value of element was not getting cleared, How to clear the value?</summary>

In this special case, we can configure “selectAllAndSend”, which highlights the complete value and clicks on backspace.

</details>

<details>

<summary>How to clear the value in the incremental/decremental textbox?</summary>

We need to configure “smartClearAndSend” which clear the value character by character.

</details>
