Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
14 views

In my Test app, using TestStack.White nuget package (last available version: 0.13.3) I need to search an Item with a given AutomationId in a container (main app window). I want to wait for it for max ...
Bug Raptor's user avatar
-1 votes
1 answer
65 views

Anybody know how to test Message Box, it`s appearance? While i wrote this code: [TestMethod] public void TestDisplayError() { Application application = Application.Launch("D:\\...
Nikolay's user avatar
  • 25
0 votes
1 answer
148 views

i want to run all tests 1 time. One method will run after all tests are finished. This test will change the language of the application. How can I start all tests from scratch?
Mehmet Ceylan's user avatar
0 votes
1 answer
696 views

I am writing a test method to launch a window application. Below is my code namespace UnitTestProject1 { [TestClass] public class UnitTest1 { [TestMethod] ...
Satwik163's user avatar
0 votes
0 answers
614 views

I have been working on an attempt to automate a Windows Program using C#. After using Inspect.exe from Windows Kits (SDK), it seems that many of the elements that I am trying to work with do not have ...
bennickhill's user avatar
0 votes
0 answers
280 views

I need to automate some repetive tasks performed in an application installed in my machine. I'm coding in C# and using the library TestStack.White I can key in keyboard inputs like SHIFT or RETURN but ...
memiDev's user avatar
  • 17
-1 votes
1 answer
256 views

I tried finding the element using Get but it does not work, thats why i treid with GetElement method I am trying to enter text in an textbox element found using GetElement in teststack white using C# ...
Dominic's user avatar
0 votes
1 answer
208 views

I am writing some Automation tests using Teststack white framework (C#, .net) for my WPF application. I want any cursor movement to be frozen while the tests are running. Is there any way to do that? ...
An Kumar's user avatar
1 vote
1 answer
920 views

is there a way to get all elements of a specific type of a window? In my case, I want to get all tabs of the page to filter it afterwards by which has the greater Y-coord. This method: Get<...
Jan021981's user avatar
  • 553
1 vote
1 answer
141 views

This is Windows 10 UI automation testing via nunit3.ConsoleRunner. It is really pretty weird, but the same code that worked flawlessly before my vacation now hangs for so far up to 2 hours or more. I ...
Jeff H's user avatar
  • 217
0 votes
0 answers
1k views

I have a custom Control HtButton which inherits from Control. I made a custom FrameworkElementAutomationPeer and override the OnCreateAutomationPeer() in HtButton. public class ...
Dominic Jonas's user avatar
0 votes
1 answer
420 views

I want to create an autologin WinForms app with TestStack.White. Here is my code: private void button1_Click(object sender, EventArgs e) { Process[] process = Process.GetProcessesByName("...
jlvngrg0's user avatar
0 votes
1 answer
483 views

I started writing test for a WPF application with FlaUI (UI Automation framework). Now I want to get the Visibility value of a couple of buttons. These buttons are located on the same position in ...
Kevin S's user avatar
  • 21
1 vote
1 answer
329 views

I'm trying to use TestStack.White to simulate a click on a menu subitem in a WPF application. That subitem is added at runtime, and I have little control over how it's created. I don't seem to be able ...
Black Light's user avatar
  • 2,414
1 vote
1 answer
869 views

So what I'm doing is using the .Exist<T> method in TestStack.White to see if an error dialog box exists. The problem I'm having is that finding it is EXTREMELY slow. This is due to the fact the ...
845614720's user avatar
  • 858
7 votes
4 answers
10k views

I am new to using FLAUI and Automation Testing and would like to use it to test my system. At the moment I am using a Thread.Sleep() to wait till the application launches to then find the Login ...
RonaldMcdonald's user avatar
0 votes
2 answers
73 views

When I Inspect a button in the window, below properties are listed with FrameworkId="InternetExplorer". How can I automate the button click or textbox fill by using Teststack.white? This is what the ...
Shrini's user avatar
  • 193
4 votes
1 answer
1k views

I made a WPF app, and have made some automated tests using teststack.white. They have documentation on how they map controls in Windows to their framework but I don't see TextBlock there anywhere. ...
pdschuller's user avatar
0 votes
1 answer
1k views

I am automating a wpf windows application. Trying to perform a logout function where I click on the settings icon. A new modal window opens up with several TabItems such as "General", "Security", "...
Suhaib Ahmad's user avatar
0 votes
0 answers
229 views

I am currently looking for automation open source framework & tool either in C#, Java or any language to automate WPF application. I have already explore TestStack White for WPF automation and ...
Den's user avatar
  • 1
4 votes
1 answer
558 views

I am using TestStack.White for automating a test on an existing application. I have received a particular AutomationID "example_ID" for an element using Inspect.exe, however when I am using var ...
Aditya Basak's user avatar
6 votes
2 answers
572 views

I'm looking for a solution to start my tests from command line. I created a UnitTest Procjet in VisualStudio2017 for my .NET solution. Added TestStack.White NuGet package to the project. The test are ...
Tomi's user avatar
  • 3,588