Hi, first time poster here.
Sorry for the abstract title, it's just that I'm experiencing various issues with Test Studio and I thought I'd keep them all in one thread.
Is that okay or should I make separate threads for each issue?
Any page which contains code I am receiving the following error when trying to compile:
d:\Test Studio Projects\Client Site\Pages.g.cs: Line 2870: (CS0102) The type 'Client_Site.Pages.IFLFXecutePaymentsSystem20Page.ExpressionDefinitions' already contains a definition for 'TableCell'
d:\Test Studio Projects\Client Site\Pages.g.cs: Line 2848: (CS0102) The type 'Client_Site.Pages.IFLFXecutePaymentsSystem20Page' already contains a definition for 'TableCell'
All these test cases used to work fine, and seemed to suddenly stop working..
Anyone able to assist? Thanks, Josh.
Hi,
I have created a scheduled test list. It runs on locally. There is no problem with that. However, I can not get notification emails for scheduled test list. I read almost all articles about creating a scheduled server but i didn't find sufficient information for my case. My main intention is getting notification emails from scheduled tests that locally runs. Also, program is builded as all-in-one mode,i guess.
For example; There is no such options that are listed in given link below. Also, there is no step 3.
*distribute test among the machines
*Get latest version....
http://docs.telerik.com/teststudio/features/scheduling-test-runs/schedule-execution
Hi,
I've configured Schedule Test List to send email notifications, but upon
completion of the run none is sent (SMTP server settings screen shot is
attached).
Also I noticed that the selections are not being saved. Say I
select "Send test results by email" box in that wizard and all attachments, then
navigate back a couple of steps, then forward again. "I'm good... no mail for
me" is selected instead of what I selected and all attachment boxes are
unchecked. If I re-launch that wizard none of the selections is saved
either.
Am I missing something?
System.NullReferenceException: Object reference not set to an instance of an object.
System.Threading.Thread.Sleep(1000);
KendoGrid grid=ActiveBrowser.Find.ById<KendoGrid>(
"assessmentWorklistViewInner"
);
foreach
(KendoGridDataItem row
in
grid.DataItems)
{
for
(
int
i=1;i<=row.Cells.Count-1;i++)
{
var tempval=row.Cells[i].TextContent;
Log.WriteLine(tempval);
if
(tempval==
"Annual"
)
{
row.Cells[4].MouseClick();
break
;
//cell.MouseClick(true);
}
}
}
Hi,
I have added Toolbar element to elements explorer, and i would like to add step to click on specific subitem on this toolbar.
Am i able to add such step from the step builder using Actions -> Quick steps (or something else)?
If not, what are the workaround solutions?
Currently i see that after chanching element type to RadToolBar, only item count verification ability is added to Step Builder -> Verifications.
No other actions specific to Toolbar element are available in the steps.
Thanks in advance.
Hi,
I am new to the telerik test studio.I have to develop a automated test script for a web application.But, here I am facing a problem regarding browsing a .txt file from local mechine and upload it to the web application.In the application , a browse button is present.We need to click on this button > select the particular file and upload it.Can you please help that what code should I need to use for this purpose?One thing , I need to mention here, that, I am using vb.net.