0

I'm trying to check implicit wait functionality in winium but application is getting freeze while executing the below step.

driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

syam
  • 799
  • 1
  • 12
  • 30
narendra
  • 7
  • 5

1 Answers1

0

Not sure if you have already received an answer to this, but here is what I did and it worked for me. It is similar to what you already have just updated some.

driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(15));
Robert Moskal
  • 21,737
  • 8
  • 62
  • 86