I have some UI tests (written using FlaUI) that will pass locally but will fail on TeamCity. When I tried watching the tests run on the remote build agent through remote desktop to see the error, I realized that the tests will pass if the remote desktop app is open and not minimized. This is only a small subset of my tests that fail as most of them pass in any condition. What could be causing this?
Flaky tests passing locally and on TeamCity only when remote desktop window is open
347 Views Asked by user14146382 At
1
There are 1 best solutions below
Related Questions in .NET
- file download method in visual studio 2017
- Repository manager receives the wrong connection string in .net core
- MongoDb not connecting C#
- The current .NET SDK does not support targeting .NET Core 6.0. Brand new WPF Project VS Community 2022 17.9.5
- Why Scanning GSI on DynamoDb doesnt work as fast as expected when using CONTAINS?
- Are "blittable types" really unmanaged types for StructLayout Sequential
- Failed to fetch dynamically imported module on Blazor JS Interop
- Problem to upload several images per one request
- Implementing Azure AD B2C Authentication in .NET 8 Blazor Project (RenderMode: InteractiveAuto)
- Stripe connect payout - throws exceptions
- 'IOException: The cloud file provider is not running', when trying to delete 'cloud' folder
- Azure Application Insights Not Displaying Custom Logs for Azure Functions with .NET 8
- Convert C# DateTime.Ticks to Bigquery DateTime Format
- Socket.io nodejs server .NET connection
- Producer Batching Service Bus Vs Kafka
Related Questions in TEAMCITY
- How do I delete unused VCS roots with REST API?
- Why is "Extract template" not showing on a TeamCity 11 build configuration?
- Restore Teamcity
- Team City Build configurations/ Build Steps using vscode
- How to resolve a "Kotlin: Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:" error?
- Error in while performing Angular tests on TeamCity
- Unable to complete new 'Cloud Profile' setup in TeamCity using Azure Resource Manager Cloud Support plugin
- JetBrains TeamCity: Agent Executor Mode
- email notification templates changes reverting after the upgrade of Teamcity server
- Why does the TeamCity agent initially perform 1 build
- Errors when launching a build on TeamCity
- How to integrate multiple jacocoReport in teamcity?
- Custom parameter with file browser in TeamCity runner
- Upload fails with no description
- Gitversion "could not load ssl libraries" error on TeamCity with normalization enabled
Related Questions in VSTEST
- Getting Could not load file or assembly 'Mono.Cecil while running VSTests with code coverage enabled
- VSTest branch coverage missing on fixed statement
- How to run all Unit Tests that DON'T have a trait?
- Azure DevOps VSTest@2 does not generate code coverage
- Excluding integration tests in yaml not working
- My vstest custom adapter is not found during discovery
- Issue with VS Test Task Version 2.229.0 - Failing to collect coverage
- TestCategory no longer works in Azure Pipelines
- VsTest is running all my tests and ignoring Test Category for Nunit Tests in the Azure Pipeline
- How to rerun failed tests right after they fail in Azure DevOps release pipeline
- Is is possible to set test case results from an ADO deployment pipeline
- Filter Code Coverage results in Azure DevOps Pipelines
- Vstest task in Azure DevOps detecting non impacted test cases.?
- bash script to find failed tests count in dotnet test
- How Can I run VsTest Runner with Percy in Azure Pipelines
Related Questions in FLAUI
- FlaUI reference a button by a Control instead of a string
- Launching the application is slow using FlaUI , application and program not syncing
- Issue running Fla UI test cases using Azure Pipelines
- How to Enter Value in table, if the table cells as Document F#
- Read content from Java GUI without having the source code
- C# FlaUi null value with FindFirstDescendant
- Why does FlaUI fail to find elements at times?
- UI automation frameworks can't see the elements on windows desktop
- FlaUI | Unable to find DevExpress control Combobox
- How to call a generic method in PowerShell?
- How to click button with FlaUI?
- How to set value in field using FlaUI?
- How do I click on button on firefox?
- Reference Windows only project from NET MAUI
- Loop through CheckBoxes to find a particular one based upon string
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Typically, when a test passes locally, but fails on CI, there are two potential causes:
I give a more detailed answer here.
In your specific case, my guess is that the Remote Desktop window thing is a coincidence, or maybe something about that forces the tests to execute in a specific order which has the leaky test(s) running after the test that would otherwise fail.
To debug the situation you want to figure out what order causes the flaky test to fail. Then you want to start removing tests from the test run until you find the one that causes the failure. Some tests tools (like RSpec) have a feature that allows you to bisect your test suite automatically. Leverage that if possible. Otherwise you'll have to do the binary search yourself.
To do that yourself, check your build logs where the test fails to see what tests ran before it. Then run them see if you can reproduce it locally by running the tests in that same order. If you cannot, then you likely have the second problem I described above. But, if you can, then you just need to run the first half of the tests before the failure, and keep cutting the tests you run in half every time the test continues to fail. If you run half the tests and the test doesn't fail, then run the other half of the tests. (Hopefully the leak the results in the test failure is caused by a single test. If not debugging this manually gets really hard.