Try this;
notificationReceived: function(notification, payload, sender) {
switch(notification) {
case "DOM_OBJECTS_CREATED":
var elem = document.getElementById("TEST")
elem.addEventListener("click", () => {
this.sendNotification('CHANGE_POSITIONS', ...
...
},
Or,
notificationReceived: function(notification, payload, sender) {
switch(notification) {
case "DOM_OBJECTS_CREATED":
var elem = document.getElementById("TEST")
var that = this
elem.addEventListener("click", function() {
that.sendNotification('CHANGE_POSITIONS', ...
...
},