Is there a function that allows me to record the system time/GMT?

Looking to see the time I scrape a certain item. Thank you.

You can get the current time via Javascript. Run the JS via “Execute Script” command.

For example:

var today = new Date();

var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();

return time;

@Plankton I was wondering if you could help however obtaining today’s Date more specifically all I need is the Day MM-DD-YYYY, however, the day is not found in the source code?