Replication steps:
1. Logged into application using recorder
2. Have done some advance verification like some expected text is present or not
3. After that performed some operations on the application
When the verification fails the script going to stop and it won't execute further steps
Can I have any solution to run the entire script even though some verification failed
Regards,
Raj.
Hi,
In our application we have some web elements having tag name 'iFrame', we are unable to check the verification on such elements using Highlighter of the recording option.
I am getting this issue only for iFrame elements.
Regards,
Raj.
I currently have various tests, some of them use the login step where you can check encrypt and it will protect the password of the user used. I also have tests that are coded steps and I code the user and password to deal with the login. I would prefer to have a configuration file where I do the username and password as a configuration property that would be used to in the coded steps so that in the event of needing to change the user used for testing I wouldn't have to change it for all the steps.
First off I found the C:\Program Files (x86)\Telerik\Test Studio\Bin config file and I put the following in the configuration tags:
<configSections>
<section name="users" type="[namespaceNameHere].UserConfigSection" />
</configSections>
<users>
<add id="1" name="Automated Testing User" username="jessica.gonzales" password="AxkrhLLZjmWbai/5hpEJ6w==" />
<!--<add id="2" name="[Username Description]" username="[username]" password="[safe password]"/>-->
</users>
Hello,
I can connect to TFS to see my projects (1st image).
When i choose one and click "OK", it can't connect to source control (2nd image).
But i can connect by Web, Visual Studio.
Thanks for answers
regards
There is a code that clicks left mouse button 500 times on the specific control on the web page, approximately after 300 clicks, out of memory exception is been thrown.
Code is:
for (int i = 0; i<500; i++ ){
Pages.Journey2.ITag.MouseClick(ArtOfTest.WebAii.Core.MouseClickType.LeftClick, 0, 0, ArtOfTest.Common.OffsetReference.AbsoluteCenter);
CommonUtilities.sleep(100);
Assert.IsTrue(ArtOfTest.Common.CompareUtils.StringCompare(Pages.Journey2.WeightValue.Value, ""+(396+(i+1)), ArtOfTest.Common.StringCompareType.Exact));
}
Getting Telerik.TEstingFramework.Hosts.Manager has stopped working
Unexpected Exception: System.OutOfMemoryException
Unhandled Exception: OutOfMemoryException.
Any Ideas? suggestions?
PFB the steps I followed.
1. Log into the application using correct credentials
2. Clicking one web button after logging in
3. Performing some validations after clicking the button
After login to application, application thrown an error, but the execution of steps still showing and also the showed marked as pass in the tool which is not expected.
After some 508 Compliance work we recently performed on our
site, I found that a majority of my previously working scripts had started to
fail when attempting to click certain elements.
Most tests include clicking Checkboxes by clicking either
the control OR the label (clicking
both would essentially leave the control state unchanged)
Most test include clicking Radio Buttons by clicking the
control AND the label (clicking both
does not change state, which at the end is: selected)
What we see now is that clicking the label of a radio button
changes the state of the first checkbox preceding the radio button.
I've attached a graphic showing what's happening.
If this occurred within the same control type (i.e.,
checkboxes or radio buttons), my first thought would be that the elements in my
script were out of order.
The fact that clicking the label of a radio button changes
the state of a checkbox indicates that something else is at play here.
When I brought this to my DEV’s attention, she said that this
is occurring only in areas where the 508 Compliance work was completed, but
when I brought this to our DEV’s attention, should didn’t see anything in the
DOM that would account for this behavior.
I’m currently using version 2016.3.928.0, and have not
updated my client in many months.
I looked through the Form and couldn't find anything reported similar to this.
Thanks for any help you might be able to provide,
Dan