Google+

Using type command in Selenium IDE for typing text into a text area field

type command is one of the Selenese commands in Selenium IDE and is mainly used to type text into the text box and text area fields.

Prerequisites:

In order to implement type command in Selenium IDE, we have to first install 'Selenium IDE' firefox add-on in firefox browser. If you don't have Selenium IDE add-on installed in your firefox browser, follow the below posts first:


And also refer to the below post for opening the Application URL in the Firefox Browser using Selenium IDE:


Implementing 'type' selenese command in Selenium IDE for typing text into a text area field:

Lets follow the below steps for implementing the type selenese command for typing text into a text area field:

1. Open Firefox browser and select 'Tools' Menu > 'Selenium IDE' option as shown below:



2. A 'Selenium IDE' window will be displayed as shown below:



3. Select the first row in the 'Table' pane as shown below:



4. While the first row is selected, type the letter 'o' into the 'Command' box field and observe that the 'open' command will be provided by the Selenium IDE as an auto suggestion as shown below:



5. Select 'open' from the auto suggestion and observe that 'open' text got entered into the 'Command' field as shown below:



6. Now enter any application URL say 'http://www.omayo.blogspot.com' into the 'Target' box field as shown below:



7. Click on 'Play current test case' option as shown below:



8. Observe that the application URL provided in the Selenium IDE, will be automatically opened in Firefox browser as shown below:




9. Now, select the second row in the 'Table' pane as shown below:



10. Enter the command text 'type' into the 'Command' field as shown below:



11. Now lets aim for typing the text into a text area field on the Application page. In order to type text into a text area field, we need to create the locator strategy for locating the text area field. Luckily Selenium IDE can automatically generate the locator strategy using the 'Select' button. So to generate the locator strategy for text area field, lets click on 'Select' button on the Selenium IDE as shown below:



12. After performing as specified in the above screen-shot, observe that the locator strategy for the text area field will be auto generated and displayed in the 'Target' field as shown below:



13. Click on 'Find' button to check whether the auto generated locator is properly locating the text area field on the Application Page. If the locator strategy is able to locate the text area field , the text area field on the Application will get highlighted when the 'Find' button is clicked as shown below:



14. Till now we have provided the 'type' command to automate the typing of text and also we have auto generated the locator strategy for text area field where we want to type the text. But, we have to now figure out the text that we want to type into the text area field. Lets say, we want to type the text 'Welcome to the easiest blog on Selenium and the easiest way to find this blog is to search “Selenium By Arun” in Google.com :)' into the text area field. So, in order to type the text 'Welcome to the easiest blog on Selenium and the easiest way to find this blog is to search “Selenium By Arun” in Google.com :)' into the text area field, we need to enter the text 'Welcome to the easiest blog on Selenium and the easiest way to find this blog is to search “Selenium By Arun” in Google.com :)' into the 'Value' field in Selenium IDE a shown below:



15. The purpose of second step in the Selenium IDE is to type text into the text area field on the Application page. After providing the type command , locator strategy for locating the text area field and the text to typed, the Selenium IDE window will look as below:



16. Click on 'Play current test case' option as shown below:



17. Observe that the application URL provided in the Selenium IDE will be opened as part of first step and the text 'Welcome to the easiest blog on Selenium and the easiest way to find this blog is to search “Selenium By Arun” in Google.com :)' will be entered into the text box field on the application page as part of second step. Also observe that the executed test case in Selenium IDE will be displayed as passed as shown below:



Conclusion

type command in Selenium IDE is one of the selenese commands. The purpose of this command is to type the text into the text box and text area fields.

No comments: