This is a migrated thread and some comments may be shown as answers.

Skipping Iterations

3 Answers 123 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Aswin
Top achievements
Rank 2
Aswin asked on 23 May 2013, 07:27 AM
Hi... I've a scenario of simple form filling of two text fields and submitting. I'm data driving the test via an Excel Sheet.

Here is a sample of my Excel data.

1 Fruit Apple
2 Fruit Orange
Object Chair
4 Object Desk

It is obvious that the sheet have some repeated entries in a column. Since my form remembers the last iteration values used, I don't want Test Studio to erase the text field and type the same again. It is consuming more time.

Is there any way to create a check/verify step (Either GUI or coded), such as Test Studio should skip the cell value if it is same as previous. (No skipping the whole iteration, just leaving out the cell value). Help me out in this, I'm ready to explain more, Thanks !

Note: I'm working on Silverlight platform.

3 Answers, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 24 May 2013, 02:44 PM
Hi Aswin,

Unfortunately this is not possible via the Test Studio UI. In order to create a logical statement against the contents of a cell in your data before/during the iteration of a data driven test, you need to use code to read the excel file and compare the values of the current and previous iteration and then skip the next iteration based on the outcome.

Here are a few code samples that would help you in achieving this:
Non-iterative data driving 
Skip a certain iteration 
Write into a data source
 
You will have to combine the approaches shown in these articles and adapt it for your usecase. I'm sure you can find a lot of additional information/code samples on the Internet.

Regards,
Plamen
Telerik
Quickly become an expert in Test Studio, check out our new training sessions!
Test Studio Trainings
0
Aswin
Top achievements
Rank 2
answered on 27 May 2013, 09:22 AM
Hi Plamen,

I don't want to skip the iteration. Just the values, so that I thought I can avoid deleting some value and then typing the same values again in a field.

Is that possible in code? Can you get me any samples, Thanks in advance.

0
Accepted
Plamen
Telerik team
answered on 27 May 2013, 12:31 PM
Hi Aswin,

Yes, it is possible to do that using code. The articles I pointed you to are for different scenarios, but you should be able to adapt them to suit your needs.

For example, let's take the first article "Non-iterative data driving". This article is about how to take different sequential row from the data source on each test execution and execute only that row without going through all iteration. However if you take a closer look, you'll notice that it also demonstrates how to get and set a value in an XML file and you can easily accomplish your scenario by taking only this information from the context of the article.

Here are the steps:
1. Create an XML file as seen in the article:
<?xml version="1.0" encoding="utf-8"?>
<IterationValue>
  <iteration>null</iteration>
</IterationValue>
I have attached the xml file to this ticket(IterationValue.zip).

2. Add project references and using statements to System.Xml and System.Xml.Linq

3. Implement the LoadValue and SaveValue methods in the code behind:
// Add your test methods here...
public void SaveValue(string iterationText)
{
    string path = @"C:\IterationValue.xml";
    XElement e = new XElement("IterationValue");
    e.Add(new XElement("iteration", iterationText));
    e.Save(path);
}
 
 
public string LoadValue()
{
    string path = @"C:\IterationValue.xml";
    XElement e = XElement.Load(path);
    string iterationText = e.Element("iteration").Value;
    return iterationText;
}

4. Compare the text used in the previous iteration to the text from the current iteration. You can take the value for the previous iteration from the XML file and the value for the current iteration from the data source.
Here's a sample code:
[CodedStep(@"Enter text 'Telerik' in 'GbqfqText'")]
public void WebTest_CodedStep()
{
    string currentIteration = Data["Col1"].ToString();           
    string previousIteration = LoadValue();
     
    //Check whether text for the current iteration is the same as the text for the previous iteration
    if (currentIteration != previousIteration)
    {
        //Enter the text from the current iteration
        Actions.SetText(Pages.Google.GbqfqText, currentIteration);
    }
    else
    {
        //Enter empty string
        Actions.SetText(Pages.Google.GbqfqText, String.Empty);
    }
}
Using the code above, if the value for the current iteration is the same as the previous iteration, it will enter an empty string in the Google search field.

At the end of the test(as a very last step), create a coded step that will set the value of the current iteration in the xml file, replacing the previous value. This value will be used on the next test iteration.     
[CodedStep(@"New Coded Step")]
public void WebTest_CodedStep1()
{
    string previousIteration = Data["Col1"].ToString();
    SaveValue(previousIteration);
}
 
See this video demonstrating the execution. The sample project is also attached. I am sure that there are many different ways to accomplish your scenario, but it's up to you to research and decide which one is the best for you. 

Let me know if you need further assistance on this.

Regards,
Plamen
Telerik
Quickly become an expert in Test Studio, check out our new training sessions!
Test Studio Trainings
Tags
General Discussions
Asked by
Aswin
Top achievements
Rank 2
Answers by
Plamen
Telerik team
Aswin
Top achievements
Rank 2
Share this question
or