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
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!
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.
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?
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
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
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
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