J.Johnson
J.Johnson

Reputation: 11

Test automation-slow motion

Is there any concrete way to make an automation test that is testing a web page progress in slow motion?not keeping the page up for a long amount of time, but actually running the simulation in slow motion?

Upvotes: 0

Views: 679

Answers (1)

Owais Ibrahim
Owais Ibrahim

Reputation: 158

You can try implicit wait time to check your result on each action/statement. (Explicit and Implicit Waits)

//3 second implicit wait (JAVA code)
WebDriver driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS);

Upvotes: 2

Related Questions