| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Browser test for basic Chrome OS file manager functionality: | 5 // Browser test for basic Chrome OS file manager functionality: |
| 6 // - The file list is updated when a file is added externally to the Downloads | 6 // - The file list is updated when a file is added externally to the Downloads |
| 7 // folder. | 7 // folder. |
| 8 // - Selecting a file and copy-pasting it with the keyboard copies the file. | 8 // - Selecting a file and copy-pasting it with the keyboard copies the file. |
| 9 // - Selecting a file and pressing delete deletes it. | 9 // - Selecting a file and pressing delete deletes it. |
| 10 | 10 |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 } | 700 } |
| 701 | 701 |
| 702 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestOpenRecent) { | 702 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestOpenRecent) { |
| 703 drive_test_util::WaitUntilDriveMountPointIsAdded(browser()->profile()); | 703 drive_test_util::WaitUntilDriveMountPointIsAdded(browser()->profile()); |
| 704 | 704 |
| 705 ResultCatcher catcher; | 705 ResultCatcher catcher; |
| 706 StartTest("openSidebarRecent"); | 706 StartTest("openSidebarRecent"); |
| 707 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); | 707 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); |
| 708 } | 708 } |
| 709 | 709 |
| 710 IN_PROC_BROWSER_TEST_P(FileManagerBrowserDriveTest, TestAutocomplete) { |
| 711 drive_test_util::WaitUntilDriveMountPointIsAdded(browser()->profile()); |
| 712 |
| 713 ResultCatcher catcher; |
| 714 StartTest("autocomplete"); |
| 715 ASSERT_TRUE(catcher.GetNextResult()) << catcher.message(); |
| 716 } |
| 717 |
| 710 } // namespace | 718 } // namespace |
| OLD | NEW |