Telerik Forums
Testing Framework Forum
3 answers
170 views
HI,

We have recently  purchased WebUI Test Studio Developer Edition and installed it on a machine which does not have internet connection. We are trying to activate it manually, but everytime we added a new WebAii test to our test project, it just asks for the activation code and not prompt  for the activation request wizard as specified on this link

http://www.telerik.com/support/kb/web-ui-test-studio/installer/installing-webui-test-studio-or-test-execution-software-on-a-machine-without-an-internet-connection.aspx

How do we manually activate our WebUI Test Studio?


Thanks,
Andrea

Konstantin Petkov
Telerik team
 answered on 02 Jul 2010
1 answer
56 views
Hello Nelson,
iam sending the attached file plez check it.
when iam inserting any values it is not identiying the values
plez check it

regareds
Ankamma
Missing User
 answered on 01 Jul 2010
1 answer
81 views
Hi Guys,

Usually I'm attempt to run hundreds of tests in one go using Nunit. 
Recently I had FF crashing  (Refer to the attached screenshots).  Clicking 'restart browser' made all good and test run 
continued without further interpretations though that's not exactly what one may call an unattended test run...
I was wondering if any of you experienced the same...

In addition, are there any news regarding the use of recycleBrowser while running Nunit tests?
If  recycleBrowser="false" the browser opens and shuts FF hundreds of times which may have caused the above crash.... 

ta, 
SD.

Missing User
 answered on 01 Jul 2010
2 answers
166 views
Dear all,

I am sreenath working for ICS bangalore, so far our company deals with QTP and Test complete only, recently we got a chance to automate the silverlight application with AJAX pop up.
We have put some effort with research and found the WebAii framework to automate the silverlight application.

Could any one please suggest us how to install the WebAii framework and what are all the constrains we cross over to access the tool without any issues.

Please let us know the details ASAP.

Thanks & Regards,
Sreenath
9916994123
(mba.sree@gmail.com)
Daniel Levy
Telerik team
 answered on 01 Jul 2010
10 answers
269 views
Hi,

What are the changes in the WebAii Testing Framework 2010.1 412 compared to the last ArtOfTest version? The What's New in this version page is empty.

Thanks,
Claudio
Cody
Telerik team
 answered on 01 Jul 2010
11 answers
193 views
I am having a rather frustrating issue in that I am able to identify objects within my web page, and do actions on them (eg. .Click() or setting text value for an HtmInputText element), but am completely unable to do any mouse actions on them (eg, .ScrollToVisible(), .MouseHover(), .MouseClick()). The mouse pointer does not move at all.

I am running my tests on a W7 box with VS2008 using IE8.

Any suggestions would be appreciated.

Greg
Cody
Telerik team
 answered on 30 Jun 2010
3 answers
99 views
Hi Nelson (Thought I'd address you as you're familiar with the issue...;-))

As you recall, I'm calling helper methods from another Class the resides in another file from my [Test] and that's working well. 
The thing is, I don't want to create a large number of objects each for each test as I'm doing now (See below)...
Placing the new object statements under the class (Meaning outside the  [Test])  does not work either...Any ideas ? 

  [Test] 
            public void test_01() 
            { 
                Users Users = new Users(Manager); 
                Navigate Navigate = new Navigate(Manager); 
                Generic Generic = new Generic(Manager); 
                Register_App Register_App = new Register_App(Manager); 
                //-------------- 
                Navigate.Navigate_Basic_LogIn("tester38"); 
            } 

Ta, 
SD. 
Missing User
 answered on 29 Jun 2010
0 answers
134 views
After every test I run with WebAii as soon as I close the browser or clean up the test I get the following exception :

---- UNHANDLED EXCEPTION ----
Thread Name: RemotedAsyncCommandListener
System.Threading.ThreadAbortException: Thread was being aborted.
   at ArtOfTest.WebAii.Messaging.Process.BrowserRemoted.AsyncListener()
   at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
   at System.Threading.ExecutionContext.runTryCode(Object userData)
   at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ThreadHelper.ThreadStart()


I get this even though the test itself has passed.

I would like to hide this exception or at least not display in the console.writeline as it suggests the test has failed when it has not.

I have tried playing with various settings including lots of configurations like Initialize(settings, new TestContextWriteLine(WriteLine));

I have also tried catching the ThreadAbortException but it seems this is already being caught inside the WebAii internals and then the above log gets written each time.
Alex
Top achievements
Rank 1
 asked on 29 Jun 2010
1 answer
84 views
Hello Nelson,
iam ankamma iam using telerik with vsts .I am using record and play back the script .When iam first time running the script
it is working properly but second time it is giving error the excetion is override the link plez tell me what the reson for this.


Regards
Ankamma 
Missing User
 answered on 28 Jun 2010
5 answers
124 views

I trying to automate the Silverlight UI, It contains the tab structure the change tile textbox is in bydefault selected Tab ,  I am  trying to access it (see the last line in test code which is Bold throws Exception.) but it throwing some exception the eeor messgae is as below

Exception thrown during the wait for a condition. Error: Unexpected error while waiting on condition.
Error: System.NullReferenceException: Object reference not set to an instance of an object.
   at ArtOfTest.WebAii.Silverlight.VisualWait.WaitForExistsByFindInfo(VisualFindInfo findInfo)
   at ArtOfTest.Common.WaitAsync._worker_DoWork[T,V](Object waitParam)


My Xaml file code snippet is like below

 

<TextBlock Grid.Row="0" Grid.Column="0" Style="{StaticResource TitleTextBlockStyle}"><Run Text="Change Title"/></TextBlock>

<TextBox x:Name="txt_Essentials_ChangeTitle" Grid.Row="0" Grid.Column="2" Margin="2">

 

</TextBox>

 

 

Below is my Test Code:

 

Settings mySettings = new Settings(BrowserType.InternetExplorer, @"D:\log\");

 

 

 

Manager myManager = new Manager(mySettings);

 

 

myManager.Start();

myManager.LaunchNewBrowser();

myManager.ActiveBrowser.NavigateTo("

http://ApplicationURL");

 

 

myManager.ActiveBrowser.WaitUntilReady();

 

SilverlightAppsList slvrApp = myManager.ActiveBrowser.SilverlightApps();

 

 

 

SilverlightApp app = slvrApp.GetApp(0);

 

 

app.FindName<

TextBox>("txt_Essentials_ChangeTitle").Text = "ArtOfTest did the trick";


Please Suggest me the solution I am stucked up here ...........!

 

 

 

 

 

Cody
Telerik team
 answered on 28 Jun 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?