Please help me to write script for this i already run this but i am getting this output one only otherwise i am getting keep on same value in the console tab but i want multiple data at time
public class Monster1 {
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.chrome.driver", "C:\\softwares\\selenium\\webdrivers\\chromedriver.exe");
WebDriver driver=new ChromeDriver();
driver.get("https://www.monster.com.my/");
driver.manage().window().maximize();
Thread.sleep(2000);
driver.findElement(By.xpath("//input[@class='input search-bar home_ac']")).click();
WebElement search=driver .findElement(By.xpath("//input[@class='input search-bar home_ac']"));
search.sendKeys("Software Testers");
search.sendKeys(Keys.ARROW_DOWN);
search.sendKeys(Keys.ENTER);
Thread.sleep(2000);
//parent List
//WebElement parentList=driver.findElement(By.xpath("//*[@id=\"srp-right-part\"]/div/div[1]/div[1]/div[2]"));
WebElement parentList=driver.findElement(By.xpath("//div[@id=\"srp-right-part\"]/div/div[1]/div[1]/div[2]"));
List<WebElement> childList= parentList.findElements(By.xpath("//*"));
System.out.println(childList.size());
for(int i=0;i<childList.size();i++) {
System.out.println("________________________________________________________________________");
WebElement row = childList.get(i);
WebElement jobtitle = row.findElement(By.xpath("//div[@class='job-tittle']"));
String jTitle= jobtitle.getText();
System.out.println(jTitle);