A programming paradigm in which the program statements describe the data to be matched and the processing required rather than defining a sequence of steps to be taken.
Questions tagged [data-driven]
181 questions
0
votes
1 answer
How can I pass an array as parameter in a Data driven test in Java?
Currently I have to know the no. of parameters I'm passing to the test function.
Is there a way to pass parameters to the test function from the Data Provider as an array of indefinite number of elements?
I'm reading rows of data from an excel…

Arka
- 35
- 2
- 9
0
votes
2 answers
UserID and Data Driven Subscriptions
I am trying to create a data driven subscription for a report that uses @UserID to filter the results (for security purposes). The solution I've seen referenced as the answer to several similar questions is a broken link.
We'd like to have a…

ARay
- 23
- 1
- 5
0
votes
1 answer
Datadriven subscription error - SQL Server 2005
I am using SQL Server 2005.
Connecting to: Reporting Services...
Home folder -> I have my report: "Report1"
For "Report1" I can add Subscriptions -> Data Driven Subscription...
I go through the whole process and set a schedule to run at 12:00, 1st…

AceAlfred
- 1,111
- 3
- 21
- 35
0
votes
1 answer
Keeping a web-app 'live' (i.e. responsive to changes in data)
As title says, I will be developing an asp .net web-application all geared around displaying data. This data will change many many times through the day, so it's a matter of time before what the UI is displaying is expired.
What's the way around…
user1017882
0
votes
3 answers
How to Create new Excel file out from seleniumRC result?
I'm creating a test case using selenium RC.
The General flow of the process is to get data from an Excel File.
Then run the SeleniumRC.
To get the result I place a printout command. All output is visible in the console. (using eclipse)
What I need…

user1449551
- 11
- 1
- 3
0
votes
1 answer
How to drill down in the data driven unit tests results on Hudson with MSTest
Our continuous integration server is powered by Hudson with MSTest.
We use the Hudson MSTest plugin.
Everything works fine, except there is a problem when a data driven unit test fails. The MSTest plugin does not know to drill further down the data…

mark
- 59,016
- 79
- 296
- 580
-1
votes
1 answer
OledbConnection Invalid Arguments
I try to read Excel file in Selenium Webdriver C# but got Invalid Arguments at connection.Open() . What am I wrong?
using System.Configuration;
using System.Data.OleDb;
using System.Linq;
namespace LeTuanAnh_Training.TestDataAccess
{
class…

Tuan Anh Le
- 3
- 2
-1
votes
2 answers
How to fetch data from website and print in excel Page object model, Data driven and page factory this is hybrid framework
**Element Page**
public class BasePage {
@FindBy(className = "_42ft _4jy0 _52e0 _4jy6 _4jy1 selected _51sy")//Signin Button
private WebElement SigninButton;
public void clickOnSigninButton() {
SigninButton.click();
}
…
-1
votes
1 answer
how to make the test case pass while using data driven in selenium c#
I have c# code like the following to loop through rows to get new code in this case the loop not finished but code created
for (int i = 1; i < 100; i++)
{
driver.FindElement(By.Id("Code"))
.SendKeys(data.ExcelFile(i, 1));
…

shaimaa
- 1
- 1
- 4
-1
votes
1 answer
Data Driven Approach with Jmeter
I am using CSV Data Set Config config element to read CSV file. My requirement is to read line if the column value is value is "Y" else want to skip.
JSON Body Data:
{
"UserName": "${Username}",
"Password": "${Password}"
}
CSV File…

DeepakVerma
- 179
- 1
- 3
- 14
-1
votes
1 answer
Selenium WebDriver - not fetching datas from excel
I am testing a website using Selenium WebDriver.
Eclipse has to fetch data from excel and enter it in the respective fields. But it is not doing…

ck1711
- 7
- 1
-1
votes
3 answers
data driven (real-time) Web frontend
We are looking into a better way to deliver data update notifications to a web front end.
These notifications trigger events that execute business logic and up-date elements via JavaScript (JS) to dynamically update the page without…

John
- 9
- 1
-2
votes
1 answer
Is it beneficial to use OOP on large datasets in Python?
I'm implementing Kalman Filter on two types of measurements. I have GPS measurement every second (1Hz) and 100 measurment of accelration in one second (100Hz).
So basically I have two huge tables and they have to be fused at some point. My aim is: I…

hotigeftas
- 151
- 1
- 3
- 9
-2
votes
3 answers
Getting error for POI : org.apache.poi.POIXMLException: org.apache.poi.openxml4j.exceptions
I have 2 excel files, calling from TestSuite.xlsx the other TestCase.xlsx file.
My 1st excel file is running successfully but when I run for other excel file getting the following error.
org.apache.poi.POIXMLException:…

pratik
- 59
- 2
- 3
- 11
-2
votes
4 answers
In a database driven web app, what should the user see when the database is unavailable?
If a web application relies on a database to serve dynamic content and that content is unavailable for whatever reason (database server down, etc.), what is the preferred method for handling this scenario?
Redirect the visitor to a custom 404…

Bryan
- 2,870
- 24
- 39
- 44