Site icon

Count number of links on page using selenium webdriver (Java)

       Steps to follow :

  1. Navigate to the specific webpage(https://www.makeinjava.com).
  2. Find all the links from the webpage using findElements() function. All the links are associated with the Tag ‘a‘ (anchor tag).
  3. driver.findElements(By.tagName(“a”)).size() will give the count of number of links on particular web page.

Code: count number of links in a web page (selenium webdriver)

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

public class CountNoOfLinks {

	public static void main(String[] args) {
		// Enter path of webdriver
		System.setProperty("webdriver.chrome.driver", "C:\\\\work\\\\chromedriver.exe");
		WebDriver driver = new ChromeDriver();
		driver.get("https://www.makeinjava.com");
        int numberOfLinks = driver.findElements(By.tagName("a")).size();
		// count no of links on page
		System.out.println("Number of links on Web Page :" +numberOfLinks );
	}

}

Output – display number of web link using selenium (webdriver/automation)

Number of links on Web Page :90
Exit mobile version