Commit 58126f56 authored by chrisgao@chromium.org's avatar chrisgao@chromium.org

[chromedriver] Release 0.5

Release version 0.5 as Beta. Main changes from last release are as below:
1. Fixed issues on navigation and frame javascript execution context.
2. Added optional 'promptText' parameter to DevTools Page.handleJavaScriptDialog.
3. Added command implicitlyWait. 
4. Made session commands run in separate session threads.

NOTRY=true

Review URL: https://chromiumcodereview.appspot.com/12703023

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190486 0039d316-1c4b-4281-b951-d872f2087c98
parent fa3a14e7
......@@ -13,7 +13,7 @@ const int kMinimumSupportedChromeVersion[] = {26, 0, 1395, 0};
} // namespace
// This variable must be able to be found and parsed by the upload script.
const char kChromeDriverVersion[] = "0.4";
const char kChromeDriverVersion[] = "0.5";
const int kMinimumSupportedChromeBuildNo = kMinimumSupportedChromeVersion[2];
......
......@@ -114,10 +114,10 @@ def MaybeRelease(revision):
sys.executable,
os.path.join(_THIS_DIR, 'third_party', 'googlecode',
'googlecode_upload.py'),
'--summary', 'alpha version of ChromeDriver2 r%s' % revision,
'--summary', 'version of ChromeDriver2 r%s' % revision,
'--project', 'chromedriver',
'--user', 'chromedriver.bot@gmail.com',
'--label', 'Release-Alpha',
'--label', 'Release',
zip_path
]
with open(os.devnull, 'wb') as no_output:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment