Hey guys,
we currently want to achieve that screenshots of failed tests/test steps will be provided in the test results in Azure DevOps pipeline. Is there possible way to achieve this?
Part of our yaml code if needed:
jobs:
- job: Test
displayName: Testing Application
steps:
- task: CmdLine@2
inputs:
script: |
"C:\Program Files (x86)\Progress\Test Studio\Bin\ArtOfTest.Runner.exe" list="$(Build.Repository.LocalPath)\$(testList)" junit out=$(Common.TestResultsDirectory)
continueOnError: true
condition: ne(variables.testList, '')
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: '$(Common.TestResultsDirectory)\**.xml'
failTaskOnFailedTests: true
testRunTitle: 'Acceptance Test'
publishRunAttachments: true
condition: ne(variables.testList, '')Thanks and regards,
Daniel


Hey guys,
currently we're trying to integrate our tests in azure devops pipeline. We want to achieve that the testlist we're running will stop on failure. How can we do that?
I've found the documentation here but it only describes the solution for the desktop application. Not if we want to achieve this behavior in Visual Studio or in Azure Devops pipeline.
Thanks and regards,
Daniel
Hey guys,
we facing a problem while setting up our continious integration test using Azure Devops & Test Studio (ArtofTestRunner).
Since we are using mouse events to navigate through the website to test our UI, our testserver screen needs to be unlocked the whole time during the tests, correct? There is no other option (Link here)?
Since it's a virtual machine this isn't possible without connecting via remote session before every build which isnt really practical.
I hope you guys can help us out setting up a test enviroment which works
Best regards,
Daniel

How do I fix it?
The only unusual thing I did was re-boot my testing server (desktop pc)
So I'm trying out Test Studio and it's very nice.
Super easy to create web tests for my Blazor application and apply various checks/validations etc.
But when I checked out the load testing it seems like it is an HTTP load testing tool similar to JMeter where it only makes HTTP calls to the application. I created the profile from my web test which appears to have captured all HTTP traffic.
But Blazor is using SignalR so I'm wondering if I can truly load test my Blazor application using Test Studio?
Thanks,
Ed

Hi
I am trying to make a simple website login test. Everything works fine, but when I am trying to untick SimulateRealTyping it's entering login so quick it disappears and selects 'log in' button straightaway so I am ending up with blank 'login' slot and full 'password' slot on the website?
Hope it makes sense? Sorry, English isn't my native language.
Any help appreciated :)

Hi Everyone,
I had installed previous version of test studio and then updated to its latest version 2022.3.1013.2 but after updating to its latest version when i am trying to add Microsoft.Office.Interop.Excel.dll through script tab of settings dialog in test studio, it's not reflecting/adding in reference.
Please let me know if anyone faced same issue or you know any resolution to fix this issue.


