QATTS Technical Docs
2.0.0 Main
2.0.0 Main
  • QATTS Product Documentation
  • Getting Started
    • About QATTS
      • A Quick Tour of QATTS
      • Terminology
      • Relationship
    • Dashboard
  • Getting to know
  • Administration
    • Product
      • How to Add Product
      • Configure Test Data Repository
    • Code Branch
      • How to Add Code Branch
    • Feature
    • Client
      • How to Add Client
    • Deployment
      • How to Add Deployment
      • Database Config
      • Email Config
    • Node
      • Streaming Configuration
      • How to register node for streaming
      • Status And Actions
    • Agent
    • User
    • Role
  • Studio
    • UI Elements
      • text_box
        • Properties Library
        • Trouble Shoot
      • loader
        • Trouble Shoot
      • date
      • button
      • drop_down
        • Trouble Shoot
        • Properties Library
      • label
      • check_box
      • radio_button
      • link
      • Shadow
      • Trouble Shoot
      • Properties Library
      • Pre and Post Actions
      • table
        • Example
        • Trouble Shoot
      • form
      • toogle_button
      • file
      • alert
  • Automation
    • Objects
      • UI Element
        • Drop Down
        • Radio Button
        • Multi Elements
        • table
        • form
      • Product Element
        • Advanced Data Types
          • QIntegerArray
          • QStringArray
          • QArray
          • QData
        • Basic Data Types
      • API
      • Query
      • Smarty
        • Excel: Read data from excel
        • File: Reads file Data
        • EmailRead
        • EmailSend
        • SiteScan
        • PDF Utils
      • New Group
    • Test Case
    • Function
    • Data Table
  • Execution
    • Test Case
      • Clients Summary
      • Search and Manage
      • Context Parameters
      • Details by Functionality
        • Sync
    • Test Suite
      • Create Suite
    • Test Run
      • Schedule Test Run
      • Untitled
    • Test Result
      • Results by Clients
      • Results by Fuctionality
    • Build No
    • Reports
      • All Failed Test Cases
      • Recently Failed Test Cases
  • Others
    • Milestone
  • Settings
    • Builds
    • Milestone
  • Site Scan
  • Using QATTS
    • Guide to API Automation
      • Adding API
      • Request
      • Response
        • Writing Response Schema
    • Guide to Web Automation
      • Performing Web Automation
    • Guide to setup agent-service
  • Advanced Data Types
    • QData
  • Methods
  • Standard Actions Methods
    • Execute Methods
  • UI Action Methods
    • extractGroup
  • File Action Methods
  • UI Element Advanced
  • UI Checks
  • Extraction Rules
  • Assertion Operations
  • Error Codes : Automation
  • Error Code: Execution
  • JSpreadSheetUtil Methods
  • Functions
    • Primitive
      • CONCATENATE
    • Date & Time
    • Text
  • Other Information
    • FAQ
    • Troubleshooting
      • UI Methods
Powered by GitBook
On this page

Was this helpful?

  1. Studio
  2. UI Elements
  3. text_box

Properties Library

QATTS has all the solutions to the day-to-day automation problems defined. Below will explain us how to use them.

Property Name
Property Value
When to use
How it works

charSequence

true/false

1) When there were some characters missing in the sent value

2) The given value has some special characters

3) When the field has some dependent results like a search box / date

Sends the value character by character with a time gap of 100ms

copyAndPaste

true/false

This is kind of a hack when none of the configuration were not working / unable to send the value to the textbox

It copies the given value to the clipboard and pastes the same into the element

pasteOnly

true/false

This should be used when there was a value getting copied from the application and that be used for pasting.

It just copies the clipboard value into the element

clickAndSend

true/false

1) When there is no pointer on the text box

2) When the sent value is not visible in the webpage

It performs a click on the element and then sends a value

jsSend

true/false

1) When we got the element click interception

2) When an element is getting overlapped by other element

It sends the value using javascript

focusAndSend

true/false

When the element is not in the active state and in enabled state without any pointer

It mouse hovers on to the element then clicks and send a value

sendWithoutClear

true/false

When we are performing any update operations on the web page

It sends the value into the element without clearing the existing value

selectAllAndSend

true/false

When we couldn’t clear the existing value by default technnique

It performs the CTRL+A Operation then clicks on BACKSPACE -> Which clears the element data, Then sends the value

smartClearAndSend

true/false

When we see an increment / decrement typical text box. We can use this

It clears the value character by character and then sends the value

Previoustext_boxNextTrouble Shoot

Last updated 2 years ago

Was this helpful?