I need to know if is possible to add a data-testid tag to PlaybackToggleOverlay using the recommended approach from bitmovin
import { Player } from 'bitmovin-player';
import { PlaybackToggleOverlay, UIContainer, UIManager } from 'bitmovin-player-ui';
// Definition of the UI structure
const mySimpleUi = new UIContainer({
components: [
new PlaybackToggleOverlay(),
],
});
const player = new Player(document.getElementById('container-id'), config);
const myUiManager = new UIManager(player, mySimpleUi);```