Hello Franklin John
Since you have already enabled CDC on the DB and table level, please confirm if you have enabled @supports_net_changes =1 on the table level.
I believe this is causing the issue here.
I see the same behavior when suppots_net_changes is not enabled on the tables.
EXEC sys.sp_cdc_enable_table
@source_schema = N'dbo',
@source_name = N'tab2',
@role_name = NULL,
@filegroup_name = NULL,
@supports_net_changes = 1
GO