summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java')
-rw-r--r--src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java b/src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java
new file mode 100644
index 0000000..c159af9
--- /dev/null
+++ b/src/main/java/com/att/ecomp/dcae/ci/ui/rule_editor/components/BaseComponenet.java
@@ -0,0 +1,15 @@
+package com.att.ecomp.dcae.ci.ui.rule_editor.components;
+
+import org.openqa.selenium.WebElement;
+import org.openqa.selenium.support.ui.WebDriverWait;
+
+public class BaseComponenet {
+
+ protected WebDriverWait wait;
+ protected WebElement root;
+
+ public BaseComponenet(WebDriverWait timeout, WebElement element) {
+ this.wait = timeout;
+ this.root = element;
+ }
+}