I'm new at using jFairy. I tried to produce 100 English words through the following code:
for(int i=0; i<100; i++)
{
System.out.println(Fairy.create(Locale.ENGLISH).text().word());
…
During automation testing, I am trying to select "Albanian" from language dropdown and trying to enter a company name generated using jFairy. Below is the code snippet i am using(which is in Java).
As shown in the image below.
Fairy plFairy =…
I have built jFairy project from git repository ([1]: https://github.com/Devskiller/jfairy.git) using mvnw install command.
then I have imported compiled jar file to my project.
package userdao;
import java.sql.Connection;
import…