Hello, Test Automation Expert.
Thank you for taking the Robot Framework test. Taking the test is a critical part of your application for a Test Automation QA Engineer at Bitglass, Inc.
In order to complete the test please do the following:
1. Make sure you have Robot Framework version 2.9 and selenium webdriver library for Robot Framework installed on your computer.
2. Create a data-driven test suite that tests the Change Password form.
3. Your test suite should
- execute positive and negative test cases.
- generate a report listing all your test cases properly documented
- have Suite Setup and Suite Teardown
- use Firefox or Chrome browser
4. Test your test suite and make sure it works well. The tested form has a few bugs, ideally your tests should find and report some bugs.
5. Name the test suite file [yourFirstName]_[yourLastName]_rftest.txt. The file should have .txt extension.
6. Upload the test suite file using the form below.
7. Inform recruiter or hiring manager that you have completed this test.
Good luck!
*** Settings ***
Documentation < your documentation for the test suite >
Library Selenium2Library
Suite Setup < your suite setup procedure(s) >
Suite Teardown < your suite teardown procedure(s) >
# ----- your test suite implementation below -----
...
...