public
override
void
OnBeforeTestStarted(BeforeTestStartedArgs args)
{
string
defaultEnvName =
"xxxx"
;
string
envName = args.Context.Params.ContainsKey(
"environment"
) ? args.Context.Params[
"environment"
] : defaultEnvName;
}
I am evaluating test studio, but I am having trouble. I have two apps that need to interact with each other during the test case. One is the primary app (app1) and the other is a hardware emulation app (app2).
1. App2 needs to open and load a script and begin it's run,
2. App1 opens
3. App1 begins to communicate with app2 (which starts running the script that was previously loaded).
4. If the script runs successful, app1 will open show a successful connection to app2.
Hope that is not too confusing.
In this scenario, when I run test studio to complete the first step, app2 closes. App2 needs to stay open and wait for app1 to run.
How can I create a test for this scenario?
We use Jenkins to run Test Studio tests against our API following publishes and I'm getting the following error:
1/27/2020 11:04:29 AM' - System.TimeoutException: Wait for condition has timed out\r\n at ArtOfTest.Common.WaitSync.CheckResult(WaitSync wait, String extraExceptionInfo, Object target)\r\n at ArtOfTest.Common.WaitSync.For[T](Predicate`1 predicate, T target, Boolean invertCondition, Int32 timeout, WaitResultType errorResultType)\r\n at ArtOfTest.Common.WaitSync.For[T](Predicate`1 predicate, T target, Boolean invertCondition, Int32 timeout)\r\n at ArtOfTest.WebAii.Core.Manager.WaitForBrowserToConnect(Int32 browserIndexToWaitFor)\r\n at ArtOfTest.WebAii.Core.Manager.LaunchNewBrowser(BrowserType browserToLaunch, Boolean waitForBrowserToConnect, ProcessWindowStyle windowStyle, String arguments)\r\n at ArtOfTest.WebAii.Design.Execution.ExecutionEngine.InitializeWeb(ExecutionEngineCreateParams initParams)\r\n at ArtOfTest.WebAii.Design.Execution.TestExecuteProxy.CreateAndInitializeEngine(Test test, ExecutionEngineCreateParams cp)\r\n at ArtOfTest.WebAii.Design.Execution.TestExecuteProxy.ExecuteTest(ExecuteTestCommand command)\r\n------------------------------------------------------------\r\n'1/27/2020 11:04:29 AM' - Test completed!\r\n
I don't think the tests are running at all. We have logging on the API and it's not logging any attempts that would have been generated by this process. The API is fine when I access it directly and with our applications. This is happening in multiple environments so it's not confined to one API server. I've tried shutting down and restarting the agent, but that didn't help. How can I go about troubleshooting this further?
Hello
I'm trying to find documentation around how to use ArtOfTest.Runner to execute tests remotely distributed across machines.
We're planning to use Azure Devops which I've setup the agents.
I've been unable though to find using CLI how to have tests execute distributed in a remote fashion.
We have 4 remote servers (1 controller, 3 runtimes)
I'm hoping to be able to distribute execution of a test list across those machines using ArtOfTest.Runner.
We've encountered quite a frustrating issue.
One of our testers using Test Studio was testing some changes with an existing test. They were prompted to "push to the scheduling server" and accidentally clicked yes.
Now despite the fact we've removed those changes from his file, and not been prompted to push to scheduling server. The changes never made it to source control either. Our remote servers continue to run these changes the user put in.
How can I get our tests on remote servers back to not using that test the user pushed?
Hi,
I recently downloaded the free trial for Telerik test Studio and created several tests for our Silverlight application.
When the tests are run individually they are working fine. However, when I run the tests consecutively in a Test List some of the elements are not found and an 'Element not found' exception is thrown. In particular this is the case with a checkbox and a textbox element.
Is there a way to solve this issue?
Thanks
I wanted to see if there's any feasible way to get the name of the currently executing test list name from an execution client?
Basically I want to obtain the testlist name and store it in a local variable within the method OnBeforeTestStarted
From the Article below
This feature allows only one machine to have a running scheduling server and multiple machines to be connected to it and serve as execution clients. In this case the complete set of execution extension methods will be executed on the scheduling server machine only.
All execution machines will not execute OnBeforeTestListStarted() and OnAfterTestListCompleted() and will only recognize the OnBeforeTestStarted() and OnAfterTestCompleted().
https://docs.telerik.com/teststudio/advanced-topics/coded-samples/general/execution-extensions