aboutsummaryrefslogtreecommitdiffstats
path: root/src/wait_element.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wait_element.ts')
-rw-r--r--src/wait_element.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wait_element.ts b/src/wait_element.ts
index f24b891..cd1bb1d 100644
--- a/src/wait_element.ts
+++ b/src/wait_element.ts
@@ -1,3 +1,6 @@
+import logger from './logger';
+
+
export default function wait_element (selector: string): Promise<Element> {
return new Promise(function(resolve) {
const interval = setInterval(
@@ -5,6 +8,8 @@ export default function wait_element (selector: string): Promise<Element> {
const element = document.querySelector(selector);
if (element) {
+ logger.debug('wait_element():', 'found', element);
+
clearInterval(interval);
resolve(element);