Winium.Desktop icon indicating copy to clipboard operation
Winium.Desktop copied to clipboard

Winium.Desktop is Selenium Remote WebDriver implementation for automated testing of Windows application based on WinFroms and WPF platforms.

Results 112 Winium.Desktop issues
Sort by recently updated
recently updated
newest added

Hi, I need to automate already opened excel sheet i.e before executing my script the excel is already opened and I need to automate that instance of excel workbook. Is...

i am trying to automate a windows application using winium driver latest version. i can find the element correctly but if i try to click on it action is not...

Hi, Would it be possible to send function keys (F1, F2, etc.), with combination of Shift, Control or Alt, to the application under test? Some code example would be great!...

I have tried following code driver.findElement(By.id("txtSearchFields")).sendKeys(Keys.ENTER); Even i tried driver.findElement(By.id("txtSearchFields")).sendKeys("{ENTER}"); also tried WebElement player = driver.findElement(locator1); Actions act= new Actions(driver); act.click(player).sendKeys(player,Keys.ENTER).build().perform(); How can i press shift plus tab using java...

while using drag& drop in my desktop application , getting following error could someone help me on this Exception in thread "main" org.openqa.selenium.UnsupportedCommandException: 'mouseDown' is not valid or implemented command....

Constantly getting the same error while just trying to launch my thick client application through Winnium. My application has WinForms/WPF. Same code works on Calculator but does not works on...

DesktopOptions option1 = new DesktopOptions(); option1.setApplicationPath("C:\\Program Files\\Microsoft Power BI Desktop\\bin\\PBIDesktop.exe"); WiniumDriver driver = new WiniumDriver(new URL("http://localhost:9999"), option1); driver.findElement(By.name("Get data")).click(); Actions action = new Actions(driver); action.moveToElement(driver.findElement(By.name("SQL Server database"))).doubleClick().build().perform(); Actions action =...

New to automation and Working on desktop application and i have a following query on screen Same option ( Ex:- Option a) in two places and tried to identify the...

Hi guys Is it possible to run Parallel test execution for more than one windows form application simultaneously with Winium on the specific PC?

Could you please implement drag and drop actions for Winium. At the moment following error occurs when using mouseDown or any other drag and drop commands: Exception in thread "main"...

enhancement