How to use subtract_time_from_time method in Robotframework

Best Python code snippet using robotframework

DateTime.py

Source:DateTime.py Github

copy

Full Screen

...398 | Should Be Equal | ${time} | 04:07:03 |399 """400 time = Time(time1) + Time(time2)401 return time.convert(result_format, millis=is_falsy(exclude_millis))402def subtract_time_from_time(time1, time2, result_format='number',403 exclude_millis=False):404 """Subtracts time from another time and returns the resulting time.405 Arguments:406 - ``time1:`` Time to subtract another time from in one of407 the supported `time formats`.408 - ``time2:`` Time to subtract in one of the supported `time formats`.409 - ``result_format:`` Format of the returned time.410 - ``exclude_millis:`` When set to any true value, rounds and drops411 milliseconds as explained in `millisecond handling`.412 Examples:413 | ${time} = | Subtract Time From Time | 00:02:30 | 100 |414 | Should Be Equal | ${time} | ${50} |415 | ${time} = | Subtract Time From Time | ${time} | 1 minute | compact |416 | Should Be Equal | ${time} | - 10s |...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Robotframework automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful