Hi. I am working with three regression projects in Test Studio. Recently, I have had extensive problems when running test lists remotely. Older versions of test scripts are continually showing up and test scripts are not "finding" test as step scripts (which should be there and were running successfully previously). So, after manually trying to fix the problem for awhile (by causing new modify dates on test scripts), I resorted to using the RoboMongo tool to "drop the database" on the server.
Now when I look at the Results tabs for each project, I only see test lists scheduled in the future, as expected, except for one project, where it still lists two previous test runs. Thinking that perhaps the database was corrupted, I ran the database repair. This still did not clear those test runs.
Is there something I am not understanding here? Any help would be much appreciated!
Briar
I'm a new user evaluating Telerik Test Studio for use with load testing an Excel Plug-In that communicates with a remote application server.
I create a new test project of type "Load Test".
I create a new user profile, selecting the "Capture all local traffic" option.
I can see general traffic being captured.
When I go to my Excel Plug-In and attempt to login using it, to the the application server, I get an error about the underlying connection being closed. This only happens when I try to record traffic.
Probably something basic I'm doing wrong - maybe related to the application server being connected to using a https connection????
Here is a link to a screencam: https://drive.google.com/open?id=0B5947ZWN_1xULTRlRmc5S1JZOE0
Any help much appreciated
- Matt
In our web application, clicking on a link in Windows1 opens up Windows2 with several dynamic content (e.g. session ID) embedded in the URL.
How would I need to configure Test Studio to ignore these contents when recording my Web Test?
We have an Android app which we wish to run tests on using Test Studio. I used the android application configuration menu within Test Studio on the APK my development team gave me, and when I tried to open the app I simply saw the splash screen for less than a second, then it closes. The interesting thing I discovered on closer inspection is that the APK Test Studio generated was about 15MB smaller than my original, which tells me that something is very wrong with the process. These are the steps I had to take to get to this point:
1. When I first pointed Tesk Studio to the location of my Android SDK, it told me that "aapt.exe" could not be found. To resolve this, I moved everything from the "24.0.2" directory inside the build-tools directory up into the build-tools directory.
The next error message I got was "Android build tools not found". My solution (suggested by someone on your forums) was to edit my MtAPKProvisioningSettings JSON file (located in C:\Users\USERNAME\AppData\Roaming\ArtOfTest) to include this: "AndroidBuildToolsVersion":"24.0.2". The field had previously been blank, like this: "AndroidBuildToolsVersion":"".
Hi,
we're following this page http://docs.telerik.com/teststudio/features/test-runners/artoftest-runner
We're trying to overwrite the baseURL by specifying a new one in a setting file called "settingAutomatedRun.xml" .
We then pass this file to "ArtOfTest.Runner.exe" using the "setting=" command.
The issue we're running into is that the setting file is loaded but the BaseURL provided in the setting file is never used,
The setting file looks something like this:
----------------------------------------------------
<configuration>
<WebAii.Settings.Web recycleBrowser="true" baseUrl="###"> </WebAii.Settings.Web>
</configuration>
-----------------
The commands used to kickof the Execution server looks something like this:
ArtOfTest.Runner.exe list=### result=settingsAutomatedRun.xml
Can anyone explain why this isn't working ?
I have a problem with finding an element. When I run my test, then sometimes I get this error in my test step and sometimes it works. I tried wait steps and other wait methods in code, but it doesn't help me.
ArtOfTest.Common.Design.Exceptions.ExecutionException: Exception thrown executing coded step: 'Check unit prices in the modal form'. ---> System.NullReferenceException: Object reference not set to an instance of an object. at ArtOfTest.WebAii.Controls.HtmlControls.HtmlDiv..ctor(Element e)
Here is the code, where it crashes:
HtmlFind find = new HtmlFind(Manager.ActiveBrowser.Find.ById("modal"));
HtmlDiv div = new HtmlDiv(find.ByAttributes("class=col-info"));