| OLD | NEW |
| 1 #library('webdriver_test'); | 1 library webdriver_test; |
| 2 #import('../webdriver.dart'); | 2 import '../webdriver.dart'; |
| 3 #import('../../../pkg/unittest/unittest.dart'); | 3 import '../../../pkg/unittest/lib/unittest.dart'; |
| 4 | 4 |
| 5 WebDriver web_driver; | 5 WebDriver web_driver; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * These tests are not expected to be run as part of normal automated testing, | 8 * These tests are not expected to be run as part of normal automated testing, |
| 9 * as they are slow, many of them do not yet work due to WebDriver limitations, | 9 * as they are slow, many of them do not yet work due to WebDriver limitations, |
| 10 * and they have external dependencies. Nontheless it is useful to keep them | 10 * and they have external dependencies. Nontheless it is useful to keep them |
| 11 * here for manual testing. | 11 * here for manual testing. |
| 12 */ | 12 */ |
| 13 main() { | 13 main() { |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 //print(logs); | 412 //print(logs); |
| 413 return session.close(); | 413 return session.close(); |
| 414 }).then((_) { | 414 }).then((_) { |
| 415 session = null; | 415 session = null; |
| 416 completionCallback(); | 416 completionCallback(); |
| 417 }); | 417 }); |
| 418 }); | 418 }); |
| 419 }); | 419 }); |
| 420 } | 420 } |
| 421 | 421 |
| OLD | NEW |