Hi Folks,
Sorry, but this is another call for a link to an offline installer. We're using 2015.2 of the Testing Framework and it seems we never kept a copy of the offline installer. Now when we go to install the framework it is forcing us to download 2015.3.
I've searched right through the forums and none of the previously posted links work any more.
I've also searched right through the Telerik website and the only page I can find again downloads 2015.3.
Can you help me please?
Cheers,
Dan
Hi,
I'm facing the following problem atm:
I have a project with Unit Tests. I added into the project app.config file with test settings:
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
configuration
>
<
configSections
>
<
section
name
=
"WebAii.Settings"
type="ArtOfTest.WebAii.Core.SettingsConfigSectionHandler,
ArtOfTest.WebAii,
Version
=
2015
.1.528.0,
Culture
=
neutral
,
PublicKeyToken
=
4fd5f65be123776c
"/>
<
section
name
=
"WebAii.Settings.Wpf"
type="ArtOfTest.WebAii.Core.Settings.WpfSettings, ArtOfTest.WebAii,
Version
=
2015
.1.528.0,
Culture
=
neutral
,
PublicKeyToken
=
4fd5f65be123776c
"/>
</
configSections
>
<
WebAii.Settings
elementWaitTimeout
=
"10001"
xMultiMgr
=
"false"
unexpectedDialogAction
=
"HandleAndFailTest"
createLogFile
=
"true"
waitCheckInterval
=
"500"
logAnnotations
=
"false"
annotationMode
=
"All"
annotateExecution
=
"true"
executionDelay
=
"0"
queryEventLogErrorsOnExit
=
"false"
clientReadyTimeout
=
"20000"
executionTimeout
=
"30000"
>
</
WebAii.Settings
>
<
WebAii.Settings.Wpf
DefaultApplicationPath
=
"D:\SVN\...\Client.exe"
>
</
WebAii.Settings.Wpf
>
</
configuration
>
When I build my project, the .dll.config file is created in the project bin folder.
Then I want to get the settings in the code:
MyManager =
new
Manager(
true
);
MyManager.Start();
WpfClientApp = MyManager.LaunchNewApplication(MyManager.Settings.Wpf.DefaultApplicationPath);
The problem is that the settings are not taken from the file but they have default values.
Do you have any idea what it happens? Did I miss sth?
BR, Marta
Currently running Testing Framework 2015.3.1015.0 (not Test Studio).
I am trying to get launch the Microsoft Edge browser on Windows 10. I don't see Microsoft Edge browser in BrowserTypes. When using Internet Explorer as the BrowserType it launches IE 11. Does anyone know how to launch Microsoft Edge browser on Windows 10?
I'm trying to test a silverlight application. When i try to Launch the Browser it throws me an error. If i try to open my link separately in IE its opening. But while running the test it doesnt.
At Line "ActiveBrowser.NavigateTo(BaseUrl);" it opens IE, shows the url in the URL box, and it closes displaying the message below.
Can anyone help me on this issue?
Hello All,
Can any one please help me with the below selenium automation example for the Kendo Grid filter menu. Appreciate your help. Thanks.
http://demos.telerik.com/kendo-ui/grid/filter-menu-customization
Steps-
1) Click on filter icon
2) Select Not equal to from drop down
3) Enter Text in textbox
4) Click on Filter button
blob:https%3A//mail.google.com/c884de4d-8b48-4f03-87f4-8ea315efbcca
Appreciate any responses
Dear community!
We are using VS13 and the Telerik Framework to test our web client. For finding controls or to wait for specific conditions to be met, we wanted to use ArtOfTest.Common.WaitSync with the Manager.Wait.For<>(...).
We want to use this because we can not be sure if our page is fully loaded at certain points, and this Wait.For would be better than a stupid Thread.Sleep, because we can do things like refreshing the DOM tree each time the predicate is checked.
We experienced that there is a new Thread used for these WaitSynch methods.
Is there a way how to use the functionality of Wait.For<>(); without using different threads, to make the following code really wait until this method either times out or the predicate is true?
Best Regards
Hubertus