I having problems with no log files being produced from my test runs. I set up a test list today, went into Edit Settings, set my LogLocation and made sure CreateLogFile was checked. Ran my test. No log file. Tried changing the LogLocation to my C drive. Ran my test. No log file. Tried changing the location back to TestStudio's default. Ran my test. No log file. Are there other settings elsewhere that I need to change?
Thanks.
Hi,
We use TFS as repository for our project and store TFS test related files as well.
I am wondering whether we need to check in Pages.g.cs everytime we add a new object.
We are facing object not found issues intermittently. But team mate would have checked in latest objects to TFS.
I was of impression that pages.g.s gets created every time project is loaded.
Any inputs will be appreciated.
Thanks,
VVP
Hi Telerik,
We are facing one critical issue related to scripts execution on Chrome browser. When we are executing the created scripts on Google chrome it automatically creates multiple instances of chrome because of which our CPU utilization peaks up to 100%. Same scripts are working fine on Internet Explorer.
Please provide us a appropriate solution ASAP.
Thanks in Advance,
Regards,
I recently upgraded to Test Studio version 2015.1.319.0 on a laptop running Windows 7. After the upgrade, I am now getting the following error after I start Test Studio:
There was no endpoint listening at https://www.telerik.com/services/ProductVersion/Service.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
This error appears immediately after startup, before I have selected a project. (At the Welcome to Test Studio screen) Is this an issue that will affect my testing, or can I ignore this error?
Hi,
I am facing the below issue while running scripts remotely.
a. I have a test suite out of which few scripts which has mouse/keyboard events such as – (Mouse real click, keyboard type, keypress events)
b. When I schedule this test in a remote machine at some time, the scripts with mouse/keyboard events are failing whereas all the other scripts are passing. I assume, it is because of the browser not being focused at that point of time. Same happens when I launch a remote machine through my laptop, run the keyboard events script and return back to my machine (minimizing the remote machine and returning to my machine’s session) – Script fails at the step which has keyboard/mouse events.
Could you please provide some solution to this?
Hi there,
I'm evaluating Test Studio for our company's testing needs, and have a question about a specific test scenario.
I'm trying to record a test involving adding an item to a Kendo List View that has a Kendo Editor defined in its edit template. I am unable to get the "click" or "typing" into the editor to be recorded as part of the test. All other aspects of the test scenario (typing into other kendo controls on the edit form, clicking submit, etc) are recorded and execute as expected.
I am using the Kendo ASP.NET MVC Wrappers (2014.3.1411) and recording tests in Internet Explorer 11.
My list view editor template is defined as
<
div
class
=
"k-edit-form-container"
>
@( Html.Kendo().EditorFor(i => i.Body)
.Tools(tools =>
{
tools.Clear();
tools.Formatting();
tools.Separator();
tools.Bold();
tools.Italic();
tools.Underline();
tools.SuperScript();
tools.SubScript();
tools.Separator();
tools.JustifyLeft();
tools.JustifyCenter();
tools.JustifyRight();
tools.JustifyFull();
tools.Separator();
tools.InsertUnorderedList();
tools.InsertOrderedList();
tools.Indent();
tools.Separator();
tools.CreateLink();
tools.InsertImage();
}).StyleSheets(style =>
{
style.Add("/Content/BasicStyles.css");
}))
<
br
/><
br
/>
<
div
class
=
"edit-buttons"
>
<
a
class
=
"k-button k-button-icontext k-update-button"
href
=
"\\#"
><
span
class
=
"k-icon k-update"
></
span
>Save</
a
>
<
a
class
=
"k-button k-button-icontext k-cancel-button"
href
=
"\\#"
><
span
class
=
"k-icon k-cancel"
></
span
>Cancel</
a
>
</
div
>
</
div
>
Hi,
I am wondering if telerik has a option to generate any report of test execution.
Automation test people only need logs, i agree. But when we need to submit to others we are finding it difficult as i couldn't find any reports.
I thought after execution a report will be generated with steps executed , like Pass and Fail.
If any method exists ,kindly let me know.
Thanks,
VVP
Hi All,
When i try to update object in page, i am facing this problem.
Brief : Some objects in UI is changed and UI itself got a new look. So i have to update objects and scripts.
Suppose i have a page like ManageAccount and i access a element named btnSubmit like Pages.ManageAccount.btnSubmit in scripts.
After updating the UI, when i try to add new element btnSubmit (as old was not getting recognised) it gets added in Pages.ManageAccount0.btnSubmit.
I dont know why it is not getting added in existing Page. Any ideas to get it added in existing Page?
Thanks ,
VVP