From ca83409a753cc76299cfdddf342f1c12531cc283 Mon Sep 17 00:00:00 2001 From: Navid Zolghadr Date: Wed, 22 Mar 2017 12:07:25 -0400 Subject: [PATCH] Introduce the introducing input automation stubs The documentation of the API is written here: https://navidz.github.io/web-input-automation This API will be used by the manual web platform tests to inject user input to the test. --- testharnessreport.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/testharnessreport.js b/testharnessreport.js index 59ad5d2..64f8721 100644 --- a/testharnessreport.js +++ b/testharnessreport.js @@ -417,4 +417,20 @@ try { } } catch (e) { } + +var Testing = (function() { + + // See https://navidz.github.io/web-input-automation + var InputDriver = { + sendPointerActions : function(actions) { + return Promise.reject('Not Implemented'); + } + } + + return { + InputDriver: InputDriver; + }; + +})(); + // vim: set expandtab shiftwidth=4 tabstop=4: