1

Is there any way to set wait for winium driver other than thread.sleep(). I tried implicit wait but getting this exception:

"'setTimeout' is not valid or implemented command"

Below is the code snippet:

options = new DesktopOptions();
options.setApplication(String);
driver = new winiumDriver(new URL("..."),options);
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
YadavNish
  • 11
  • 2
  • Can you post the error you're getting using the code you're using? Have you tried: ```driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(15));``` – Adam Jun 10 '20 at 11:20
  • Below is the error which i am getting: org.openqa.selenium.UnsupportedCommandException: 'setTimeout' is not valid or implemented command – YadavNish Jun 10 '20 at 12:57

0 Answers0