Telerik Forums
Test Studio Forum
10 answers
151 views
     Is it possible to continue recording tests after tested application was restarted in coded step? We need this to ensure that test data created in app are persisted and we restart application to make sure that newly added data is still there, but recorder fails with "process with id cannot be found"- I suppose it still refers to old process which in our case is already gone.
Nikolay Petrov
Telerik team
 answered on 16 Aug 2017
3 answers
99 views

Hi

I am new to the Telerik.

I am working on the Mobile Web Test with Physical Test Phone. I try set "Scroll to Element", "Tab", or "Set Value" action through DOM Explorer. But when I execute, it returns "Command execution failed: the recipient exists, but is not available". How could I fix it?

 

Regards,

Shauna

Elena
Telerik team
 answered on 14 Aug 2017
11 answers
345 views

Hi,

Is it possible to define CSS selector for defining elements in Test Studio/Elements?

I would like to select a html element based on more complex class values.

 

Thank you!

 

 

Ivaylo
Telerik team
 answered on 09 Aug 2017
12 answers
167 views

Hello,

  I am working on the installation of the Test Studio trial version on a standalone domain. I've completed the manual key process and upon trying to create a Project I getting the following error message:

 

Error initializing recorder: The HttpsGetEnabled property of ServiceMetadataBehavior is set to true and the HttpsGetUrl property is a relative address, but there is no https base address. Either supply an https base address or set HttpsGetUrl to an absolute address. Recording will not function.

The error message is followed by:

An unexpected error occurred in Test Studio. Do you want to save your work with the following options; No, Save, or Save/Restart.

The Test Studio application then closes after one of the options is selected.

 

Your assistance is greatly appreciated.

Elena
Telerik team
 answered on 08 Aug 2017
5 answers
469 views

Hello,

How does one use the BaseURL when passed in through settings=*.xml? Or more generally - how do you use the settings=*.xml in general? I can't seem to get it to work... instead the BaseURL configured to the test list is ALWAYS used. I understand that the BaseURL in the TestList overrides the one in the settings - but if I set the BaseURL in the Test List to be empty than the tests don't navigate anywhere at all. Here's the details:

Firstly, here is the ArtOfTest.Runner command we are executing, which passes our *.xml file:

"C:\Program Files (x86)\Telerik\Test Studio\Bin\ArtOfTest.Runner.exe" list="C:\repos3\acs_web\ACS\TestLists\ACS_Chrome_Acceptance.aiilist" out=C:\output\ html xml settings="C:\repos3\acs_web\ACS\settingsAutomatedRun.xml"

 

The *.xml file contains this:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configSections>
<section type="ArtOfTest.WebAii.Core.SettingsConfigSectionHandler,ArtOfTest.WebAii" name="WebAii.Settings"/>
<section type="ArtOfTest.WebAii.Core.WebSettingsConfigSectionHandler,ArtOfTest.WebAii" name="WebAii.Settings.Web"/>
<section type="ArtOfTest.WebAii.Core.WpfSettingsConfigSectionHandler,ArtOfTest.WebAii" name="WebAii.Settings.Wpf"/>
</configSections>
<WebAii.Settings.Web killBrowserProcessOnClose="false" recycleBrowser="false" baseUrl="https://auto.us.dev.trustedauthdev.com" defaultBrowser="InternetExplorer" elementWaitTimeout="10000" enableScriptLogging="true"> </WebAii.Settings.Web>
</configuration>

 

Also in the test code we reference the baseURL using the below line:

string baseUrl = ActiveBrowser.Manager.Settings.Web.BaseUrl.ToString();

 

And then navigate to that baseURL using:

ActiveBrowser.NavigateTo(baseUrl, true);

 

The ArtOfTest.Runner.exe command will execute without error, and I've verified that the xml file is syntactically correct. But no matter what the defaultBrowser and BaseURL are set to, they are ignored, and instead the values are always being read from the Test List. There doesn't seem to be any way to remove the Test List override. Is this a bug or am I missing something here?

 

 

 

Elena
Telerik team
 answered on 08 Aug 2017
1 answer
80 views

Hi,

Am new to WPF test scripting. Have WPF client with no 'Logout'. One exits the app by closing the window. I am trying to test the app with multiple users logging in via data driven script with excel as data source. However, a new login window is never displayed for subsequent users once the first user has completed the script. How do I get the application to start again so the next user in the list can log in?

Thanks,

Lisa

Nikolay Petrov
Telerik team
 answered on 08 Aug 2017
2 answers
92 views
Hello everyone,

I have a problem recording with the trial version on Test Studio.

I'm able to record only with Chrome.

When I'm trying to record with IE 11 the browser is openninig and reloading the url but after that I've receiving an error "Unable to launch recorder". I'm attaching the log.

For FF the extensions are not available and can't activate them. I'm attaching screenshot.

I did a quick research and did alot of the solutions described in the forum and described in the documentation as:

http://docs.telerik.com/teststudio/troubleshooting-guide/recording-problems-tg/unable-to-launch-recorder

http://docs.telerik.com/teststudio/getting-started/configure-your-browser/internet-explorer#



Also I have installed VS, Telerik testing framework, Team explorer :)



Will appreciate your help.

Thanks
Nikolay Petrov
Telerik team
 answered on 08 Aug 2017
1 answer
83 views

our team use kendo ui 2016.2.714

kendo.editor does not work correctly...

I can't focus on textarea and that not clickable.. no cursor on textarea

 

What the problem on kendo.editor ??? hur

 

Elena
Telerik team
 answered on 01 Aug 2017
3 answers
71 views

Hello

we try to use a database for a test. We write into a table the date of two days ago and of three days ago. These dates are our variables in the test.

 

The problem: The dates are not updated (example: variables two days ago 14/7 and 15/7, variables of today 14/7 and 15/7, but it should be 16/7 and 17/7)

 

Our stored procedure:

USE [DATABASE]
GO
/****** Object:  StoredProcedure [dbo].[Listsearch_Report_Dates_Procedure]    Script Date: 19.07.2017 12:25:15 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER PROCEDURE [dbo].[Listsearch_Report_Dates_Procedure]
AS
BEGIN

Update dbo.Listsearch_Report_Dates

Set Vorgestern = CONVERT(VARCHAR(6), getdate()-2, 4), 
Vorvorgestern = CONVERT(VARCHAR(6), getdate()-3, 4) 

select * from Listsearch_Report_Dates
END

 

 

Elena
Telerik team
 answered on 27 Jul 2017
4 answers
157 views

I have a drop down on a web page and i select an item in the list. I click the submit button and it automatically downloads the file into my /Downloads folder (Chrome). How can I verify that the PDF was downloaded successfully? I dont want to check the contents of the PDF (no DOM), all I want is to verify that a file got downloaded successfully and it didn't time out/redirect to an error page/etc... Thanks for the help!

 

- Chris

Elena
Telerik team
 answered on 26 Jul 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?