How can I schedule 2 or more Daily Cron-Jobs on Travis with Same Branch

I want to schedule 2 or more Daily Cron-Jobs on Travis with the Same Branch. But whenever I add the Cron Job for the same branch, it replaces the old (already existing) job.

Is there any solution for that?

Travis only allows to schedule jobs to run as often as daily, and you cannot set a specific time of the day. So it doesn’t make sense to have more than 1 daily job for the same branch.

About the specific time, Travis Cron Job runs specifically at that time of the day only On which it is scheduled for the first time.

I use Travis CI to Build and Run UI Automation using selenium for a product. So, I want to schedule 2 Cron Jobs Daily.

Is there any option to do the same ?