Sampad Rout

Results 2 issues of Sampad Rout

I have following code: @Test public void setup () { DesktopOptions options = new DesktopOptions(); options.setApplicationPath("C:\Windows\System32\notepad.exe"); ``` WiniumDriverService service = new WiniumDriverService.Builder() .usingDriverExecutable(new File("C:\\Winium.Desktop.Driver.exe")) .usingAnyFreePort() .withVerbose(true) .withSilent(false) .buildDesktopService(); WiniumDriver driver...

question

Here is the java code: package com.tratest.org; import java.net.MalformedURLException; import java.net.URL; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.Platform; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.remote.DesiredCapabilities; import org.openqa.selenium.remote.RemoteWebDriver; import org.openqa.selenium.interactions.Action; import org.openqa.selenium.interactions.Actions; public...