Strategic Software Consultant

I'm the partner of choice for many of the world's leading enterprises. I help businesses elevate their value through solution discovery, software development, design, QA, and consultancy services. As your Strategic Software Consultant, I work across many technology products and delivery teams. The scope of technology is broad, and it is my job to understand how your technology applications holistically support and connect to create a sustainable technology ecosystem. The ecosystem of technologies may span to 3rd party applications, in-house developed solutions, business intelligence, data integrations, and of course, SaaS applications.

Oracle Certified Specialist
Interview Extension Oracle Intelligent Advisor

Intelligent Advisor – Extend Timeout Warning

// create interval to call the lookForTimeoutWarning every 5 minutes
var extendWorkCheck = setInterval(lookForTimeoutWarning, 300000);
// function to look for the button KEEP WORKING
function lookForTimeoutWarning() {
   let timeOutText = 'KEEP WORKING';
   // find all instances of KEEP WORKING and iterate through them
   $(':contains("'+timeOutText+'")').each(function() {
      if($( this ).text() == timeOutText){
         console.log('keep working extended');
         // simulate the button click to
         $( this ).trigger('click');
      }
   });
}

Leave a comment

Your email address will not be published. Required fields are marked *