Hi @prasanthv , you should be able to achieve this using the event object and some custom code.
A very simple example, I set up a rule with three click events using 3 different element IDs as selectors,
- Click Event 1: Uses ID "carousel-43c8d133ed-item-2122a9f81a-tab"
- Click Event 2: Uses ID "carousel-43c8d133ed-item-da32481ec8-tab"
- Click Event 3: Uses ID "carousel-43c8d133ed-item-5f1778b56a-tab"
Then in rule actions I can use event.element.id to identify which of these events triggered the rule like below,
console.log("Rule triggered by: Click|ID|", event.element.id);
And it worked prefectly,

As I said, this is a very simple example, you can utilize event object based on the event triggers that you are using.