document.addEventListener('DOMContentLoaded', function() {
// Check if the page URL matches the one where you want to submit the form
var form = document.querySelector('form.wpcf7-form');
if (form) {
// Trigger form submission automatically
form.submit();
}
});