How to get tags with custom taxonomy field?

Have you try
$tags = wp_get_post_tags($post->ID); ?

<?php foreach($tags as $tag): ?>
    <span class="tag-element">
        <?=$tag->name ?>,
    </span>
<?php endforeach; ?>