diff --git a/bigbluebutton-html5/tests/puppeteer/chat/util.js b/bigbluebutton-html5/tests/puppeteer/chat/util.js
index b752b299b9a0d80a6e16fec0988bdc0bc79a3330..bb47d4b7fcc97e927ead894c63fd8a225b289e72 100644
--- a/bigbluebutton-html5/tests/puppeteer/chat/util.js
+++ b/bigbluebutton-html5/tests/puppeteer/chat/util.js
@@ -1,7 +1,10 @@
 const e = require('./elements');
+const ce = require('../core/elements');
 
 async function openChat(test) {
-  await test.click(e.chatButton);
+  // TODO: Check this if it's open before click
+  await test.click(ce.userList);
+  await test.click(e.chatButton,true);
   await test.waitForSelector(e.chatBox);
   await test.waitForSelector(e.chatMessages);
 }
diff --git a/bigbluebutton-html5/tests/puppeteer/user/status.js b/bigbluebutton-html5/tests/puppeteer/user/status.js
index 0f72163f77f60c75643727417c687d830ffb34e5..3f196a81c43d43f1460093edac867b164ffbc99e 100644
--- a/bigbluebutton-html5/tests/puppeteer/user/status.js
+++ b/bigbluebutton-html5/tests/puppeteer/user/status.js
@@ -1,5 +1,6 @@
 const Page = require('../core/page');
 const e = require('./elements');
+const ce = require('../core/elements');
 const util = require('./util');
 
 class Status extends Page {
@@ -8,6 +9,9 @@ class Status extends Page {
   }
 
   async test() {
+    // TODO: Check this if it's open before click
+    await this.click(ce.userList);
+
     await this.screenshot(true);
     const status0 = await util.getTestElements(this);