From 0162914bcfb900d55c649bb9fd50e3f9ba65e391 Mon Sep 17 00:00:00 2001
From: Xiao Gui <xgui3783@gmail.com>
Date: Mon, 2 Nov 2020 10:18:12 +0100
Subject: [PATCH] chore: add parc version placeholder code

---
 e2e/util/selenium/layout.js | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/e2e/util/selenium/layout.js b/e2e/util/selenium/layout.js
index e437604ce..99b7e97c6 100644
--- a/e2e/util/selenium/layout.js
+++ b/e2e/util/selenium/layout.js
@@ -337,6 +337,10 @@ class WdLayoutPage extends WdBase{
     throw new Error(`changeParc NYI`)
   }
 
+  async changeParcVersion(parcVerion) {
+    throw new Error(`changeParcVersion NYI`)
+  }
+
   async selectAtlasTemplateParcellation(atlasName, templateName, parcellationName, parcVersion) {
     if (!atlasName) throw new Error(`atlasName needs to be provided`)
     try {
@@ -365,6 +369,12 @@ class WdLayoutPage extends WdBase{
       await this.changeParc(parcellationName)
     }
 
+    if (parcVersion) {
+      await this.wait(1000)
+      await this.waitUntilAllChunksLoaded()
+      await this.changeParcVersion(parcVersion)
+    }
+
     try {
       await this._setAtlasSelectorExpanded(false)
     } catch (e) {
-- 
GitLab