From 84d56b2606160de2d137207c2894f41f1db141b2 Mon Sep 17 00:00:00 2001 From: pathmapper Date: Sat, 8 Jun 2019 17:16:51 +0200 Subject: [PATCH] Skip "upload" test for the open modal --- test/functional/modals/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/functional/modals/index.js b/test/functional/modals/index.js index 07d34bd..bb9477b 100644 --- a/test/functional/modals/index.js +++ b/test/functional/modals/index.js @@ -41,7 +41,8 @@ describe("modals", function() { closeModal("open-modal"); }); - it("upload", function() { + // "chooseFile" command currently not available for wdio v5 https://github.com/webdriverio/webdriverio/pull/3632 + it.skip("upload", function() { const elem = $("*[type='file']"); elem.waitForExist(); browser.chooseFile("*[type='file']", styleFilePath);