| OLD | NEW |
| 1 # -*- coding: utf-8 -*- | 1 # -*- coding: utf-8 -*- |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Automated tests for many websites""" | 6 """Automated tests for many websites""" |
| 7 | 7 |
| 8 import argparse | 8 import argparse |
| 9 import logging | 9 import logging |
| 10 | 10 |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 args.profile_path[0], | 480 args.profile_path[0], |
| 481 passwords_path, | 481 passwords_path, |
| 482 True, | 482 True, |
| 483 numeric_level, | 483 numeric_level, |
| 484 args.log_screen, | 484 args.log_screen, |
| 485 log_file, | 485 log_file, |
| 486 tested_websites, | 486 tested_websites, |
| 487 args.tests) | 487 args.tests) |
| 488 | 488 |
| 489 saveResults(tests_results, save_path) | 489 saveResults(tests_results, save_path) |
| OLD | NEW |