Questions tagged [winium]

For questions about the Open Source Windows store apps testing framework

73 questions
0
votes
1 answer

Winium design pattern

I am using winium C# to test my desktop tool. I have currently placed all my action methods in one class and just reusing those methods in the tests. I want to know what design pattern can i use ?
Nivi24
  • 9
  • 2
0
votes
2 answers

How to resolve “package org.openqa.selenium.winium does not exist” error?

I am using Winium tool for automation. I have included below jar files into the classpath of my project, selenium-server-standalone-3.14.0.jar testng-7.0.0-beta1.jar winium-elements-desktop-0.1.0-1.jar winium-elements-desktop-0.2.0-1.jar Java…
0
votes
1 answer

How to locate Automation Ids (winium automation) in Chrome legacy window of a desktop application

I'm trying to automate an application that can be hosted on web browsers (Edge,chrome,firefox) and on desktop (windows 10) as well. For browser application I have used selenium tool for automation. In case of desktop application I'm trying to use…
Shyam5674
  • 1
  • 2
0
votes
1 answer

WebDriver exception on using Winiumdriver

I have started learning Winium tool. When running using the below code getting: public class CalcDemo { public static void main(String[] args) throws MalformedURLException { DesktopOptions options=new DesktopOptions(); …
naazneen3264
  • 315
  • 2
  • 7
  • 22
0
votes
1 answer

Closing a Winium from a thread with Ruby

So i'm trying to automate a desktop app using winium and i want to automate the launching of the winium driver thru script, so far i'm able to start it just fine, but when it comes to closing it, that's the problem. winium = Thread.new{ system ( …
0
votes
1 answer

How could set/configure the winium and webdriver with the desired capabilities with remote web driver?

I want to write the winium (selenium for desktop applications) code for desktop and selenium code for web application as this is the need of my current project. Since, we have both the applications communicating with each other for the business…
0
votes
0 answers

Unable to automate uninstalling a program silently from Program files using C#

If I place the same file in another folder location it works fine. This is the code I am currently using `Process UninstallCmd = new Process(); UninstallCmd.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; UninstallCmd.StartInfo.FileName =…
Jnewbie
  • 1
  • 2
0
votes
1 answer

winium implicit wait is not working

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);
narendra
  • 7
  • 5
0
votes
2 answers

Winium Automation- How to press Enter or Escape on keyboard using Winium with java?

I tried all of these but it's still not working driver.findElementByName("3").sendKeys(Keys.ENTER); driver.findElementByName("Form1").sendKeys(Keys.ENTER); driver.findElement(By.name("3")).sendKeys(Keys.ESCAPE); …
Emily
  • 43
  • 2
  • 8
-1
votes
0 answers

Winium and Jenkins

I have a problem configuring Jenkins and Winium. And no information on the web. Can you share please any info about this process? Thanks a lot. Expecting to configure Jenkins and Winium for the testing desktop application.
Denys
  • 1
-1
votes
1 answer

Winium and Jenkins without Remote Desktop

I'm trying to automatize some tests with Jenkins and Winium for GUI Application on remote machine. If I try to execute tests on the machine with activated RDP all work fine, while if RDP is dis-activated I have the error "Some simulated input…
-1
votes
1 answer

Not able to automate list items from Treeview in desktop application using winium

I am stuck. I am trying to automate a desktop app using java (Winium), I am not able to automate controltype.pane as it show me automationid="" and name="" ever there is Classname and ControlType. How does xpath or name or id is work…
-2
votes
1 answer

Can I write a code in groovy in wait for page load?

I'm using Winium automation tool for desktop apps that is integrated with Katalon Studio but I'm using static wait time, like Thread.sleep(). Sometimes page load is taking more than the time what I'm putting there. So is there any way to use groovy…
1 2 3 4
5