Selenium Tutorials - 6. Link , Partial Link Text and Xpath Locators

preview_player
Показать описание
#seleniumtutorials #seleniumlocators #nxtgenaiacademy

Selenium Tutorials - 6. Link , Partial Link Text and Xpath Locators
_________________________________________________________________
Follow Me :

Note: Use HD view for clear text visible

Playlist :

_________________________________________________________________
Kindly let me know your feedback for improvement purpose. Feel free to correct any mistakes in case !!

Happy Learning,
Vinoth Rathinam
Рекомендации по теме
Комментарии
Автор

The video is amazing. Please create a video on API.

kamol
Автор

what if we have two or more possibilities with partial link text name, which element it will take

mharish
Автор

package seleniumDemo;

import org.openqa.selenium.By;
import
import

public class XpathExample {

public static void main(String[] args) {
// TODO Auto-generated method stub

System.setProperty("webdriver.chrome.driver",
WebDriver driver = new ChromeDriver();





}

}

vinothqaacademy
Автор

package seleniumDemo;

import org.openqa.selenium.By;
import
import

public class LocatorsExample {

public static void main(String[] args) {
// TODO Auto-generated method stub

System.setProperty("webdriver.chrome.driver",
WebDriver driver = new ChromeDriver();



//Example of Name Locator




// Example of ID Locator


//Example of Link Text Locator


//Example of Partial linkText


}

}

vinothqaacademy