Keystroke Chars
#
PurposeThis action simulates typing specific characters or keystrokes into an input field or textarea by using its identifier. It is used to replicate user keyboard input, making it useful for automating text entry in forms or web applications.
#
Scenarios#
Scenario 1#
TitleType characters into an input field using its identifier (ID)
Sample test case: TEST-7994 Type Characters Using ID
#
Scenario OverviewA user needs to type a string into an input field identified by its id
attribute. This scenario demonstrates the use of the "Keystroke Chars" action to simulate text input.
#
Steps to Follow- Navigate to a webpage that contains an input field (e.g., a search bar).
- Provide the
id
of the input field and the desired characters to be typed. - Execute the "Keystroke Chars" action.
#
ActionsParameter | Type | Value |
---|---|---|
id | element parameter | searchBox |
keystroke chars | selenium action | programming |
#
Expected Result- The input field contains the text "programming".
#
Common Errors and Fixes- Error: The input field is not located.
- Fix: Verify that the
id
provided matches the element on the webpage.
- Fix: Verify that the
#
Scenario 2#
TitleType characters into a textarea using a class name
Sample test case: TEST-8119 Type Characters Using Class
#
Scenario OverviewA user needs to type multiple lines of text into a textarea identified by its class
attribute. This scenario demonstrates how to use the "Keystroke Chars" action for multiline text input.
#
Steps to Follow- Navigate to a webpage that contains a textarea field.
- Provide the
class
of the textarea and the desired characters to be typed. - Execute the "Keystroke Chars" action.
#
ActionsParameter | Type | Value |
---|---|---|
class | element parameter | mr-sm-2 form-control |
keystroke chars | selenium action | Sadiqul Alam |
#
Expected Result- The textarea contains the text "Sadiqul Alam".
#
Common Errors and Fixes- Error: The text is not entered into the textarea.
- Fix: Ensure that the correct
class
name is provided and that the textarea is neither hidden nor disabled.
- Fix: Ensure that the correct
#
Test Cases#
Test Case for Scenario 1#
ObjectiveEnsure that typing characters into an input field using its ID
works correctly.
#
Steps to Perform- Open a webpage containing an input field.
- Use the action with inputs:
- Input parameters:
- Element parameter:
id = searchBox
- Selenium action:
keystroke chars = programming
.
- Element parameter:
- Input parameters:
- Verify that the input field contains the text "programming".
#
Expected Outcome- The input field is populated with the text "programming".
#
Test Case for Scenario 2#
ObjectiveEnsure that typing multiline text into a textarea using its class name works correctly.
#
Steps to Perform- Open a webpage containing a textarea.
- Use the action with inputs:
- Input parameters:
- Element parameter:
class = mr-sm-2 form control
- Selenium action:
keystroke chars = Sadiqul Alam
.
- Element parameter:
- Input parameters:
- Verify that the textarea contains the text "Sadiqul Alam".
#
Expected Outcome- The textarea is populated with the text "Sadiqul Alam".
#
Additional Tips for this Action- Use unique identifiers, such as
id
orclass
, to reliably locate elements. - For special keys, ensure proper formatting (e.g.,
CTRL+C
). - Test actions across different browsers to ensure consistent behavior.
#
Error Handling for Keystroke Chars#
Common Problems and Their FixesProblem: Element is not found.
Possible Cause: Incorrect identifier (e.g.,id
orclass
).
How to Fix: Verify that the identifier matches the element.Problem: Text is not entered into the field.
Possible Cause: The field is hidden or disabled.
How to Fix: Ensure that the field is visible and enabled before performing the action.Problem: Special key sequence does not work.
Possible Cause: Unsupported key or incorrect format.
How to Fix: Use standard key names and verify compatibility with the webpage.