As we have already gone through the getValue( ) method in our previous post #42 Using getValue( ) method, go through this post to rewind before going to the next steps.
Test Description:
Now lets use getValue( ) method to retrieve the text entered into the 'TextArea Comment' Text Area text field as explained in the below screenshot:
Lets Implement the Test on Eclipse IDE:
Pre-requisites:
1. Create a new Project say 'RC-Project48' in Eclipse IDE
2. Configure the Project to work with Selenium RC
3. Configure the Selenium Standalone Server to run from Eclipse IDE
4. Create a package say 'package48' under the newly created project.
5. Create a Java Class file say 'Class48' under the newly created package as shown below:
Actual Steps:
1. Write the following code into the newly created Java Class file as shown below and make sure that you resolve all the errors before going to next step:
2. Create a test method 'typeRetrieveAndVerify()' as shown below:
3. Use Selenium RC command type for entering the text into the 'TextArea comment' Text Area field as shown below:
4. Use Selenium RC command getValue( ) method for retrieving the text value from the 'TextArea comment' Text Area field and also use JUnit method assertEquals( ) to verify whether the text retrieved by the getValue( ) method is equal to the text entered by the type command as shown below:
5. Start the Selenium Standalone Server
6. Save and Run the 'Class48.java' file by selecting the 'JUnit Test' option and ensure that our Automation Test has passed to confirm that the text retrieved from the 'TextArea comment' Text Area field using getValue( ) method is equal to the text entered into the same field using type method as shown in the below video:
Watch the below video:
Click here to watch the video.
Download this Project:
Click here to download this project and import into Eclipse IDE on your machine.
Please comment below to feedback or ask questions.
Using getValue method with drop down field will be explained in the next post.
No comments:
Post a Comment