Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use WinAppDriver v1.2 Release Candidate #60

Merged
merged 1 commit into from
Oct 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import path from 'path';
import { exec } from 'teen_process';
import log from './logger';

const WAD_VER = '1.1';
const WAD_VER = '1.2-RC';
const WAD_DL = `https://github.com/Microsoft/WinAppDriver/releases/download/v${WAD_VER}/WindowsApplicationDriver.msi`;
const WAD_DL_MD5 = '1105548ca82ea32fb7be9ca4ea21ea58';
const WAD_DL_MD5 = 'dbaa9a3f7416c2b73cc5cd0e7452c8d0';

let WAD_INSTALL_PATH = process.env['ProgramFiles(x86)'] || process.env.ProgramFiles || 'C:\\Program Files';
WAD_INSTALL_PATH = path.resolve(WAD_INSTALL_PATH, 'Windows Application Driver',
'WinAppDriver.exe');
const WAD_EXE_MD5 = '2d1b2adfb7b8d86fd890e260c1400ab7';
const WAD_EXE_MD5 = '50d694ebfaa622ef7e4061c1bf52efe6';
const WAD_GUID = 'DDCD58BF-37CF-4758-A15E-A60E7CF20E41';

async function downloadWAD () {
Expand Down