Data Driven Method

How to do Data Driven Method in Appium Studio Community Edition same like in selenium we can use Data Driven Method that pass the input through excel same operation how to do in Appium Studio???

How did you pass input in selenium?

Appium studio will support the same way… (if you did it from code)

i am using eclipse for selenium how can i upload the script in appiumstudio ??

Eventually for data driven, you’ll need to export the code generated in Appium Studio and run it (e.g from IDE)
You don’t need to install any additional tools, Appium Studio runs an embedded server

For an example - here I iterating over a list of usernames and sending them to a user name field

List<String> usernames = Arrays.asList("user1","user2");
WebElement usernameField = driver.findElement(By.xpath("//*[@id='Username'"]);
usernames.forEach(user -> usernameField.sendKeys(user));

Once you get the hang of it, you can start storing and managing your data with a variety of data sources (e.g Excel sheet \ DB)

driving over the data set is similar to the way I’ve shared above, the only change will be the usernames initialization

Hi Tom for data driven method we need appium sever???
can you give example for data driven because i try lot of time but its not working