Test Purpose: After the user arrives on the home page verify the create file feature

Steps:

# File /home/cliff/l_bkup/svn/co/cyberconnect/qa_robusta/qa_observer/sites/demo/test_cases/home_page.rb, line 77
def test_file_created
   @demo_flows.home
   @demo_flows.home_page.create_file_text_field.set('blah')
   @demo_flows.home_page.submit_create_file.click
   wait_for(2) { @demo_flows.home_page.file_status.text != '' }
   assert_equal 'file created', @demo_flows.home_page.file_status.text
   assert @remote_unix.file_exists?('/tmp/blah')
end