TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

Selenium Webdriver Locating Strategies By Partial Link Text

Selenium Webdriver Locating Strategies By Partial Link Text with Introduction, features, selenium basic terminology, what is selenium, selenium limitations, selenium vs qtp, tool suite, selenium ide, ide-installation, ide-features, ide-first test case, ide-commands, ide-creating test cases manually, ide-login test etc.

<< Back to SELENIUM

Locating Strategies- (By Partial Link Text)

In this section, you will learn how to locate a particular web element using its partial Link Text.

Let us consider a test case in which we will automate the following scenarios:

  • Invoke Chrome browser
  • Open URL: https://www.testandquiz.com/selenium/testing.html
  • Click on the link text "This is a Link" on the sample web page
  • We will create our test case step by step in order to give you a complete understanding of how to use Locators to identify and locate a particular web element.

    Step1. Launch Eclipse IDE and open the existing test suite "Demo_Test" which we have created in earlier sessions of this tutorial.

    Step2. Right click on the "src" folder and create a new Class File from New > Class.

    Selenium Webdriver Locating Strategies By Partial Link Text

    Give your Class name as "Partial_Link" and click on "Finish" button.

    Selenium Webdriver Locating Strategies By Partial Link Text

    Step3. Let's get to the coding ground.

    • To invoke Google Chrome browser, we need to download the ChromeDriver.exe file and set the system property "webdriver.chrome.driver" to the path of your ChromeDriver.exe file. We have already discussed this in earlier sessions of this tutorial. You can also refer to "Running Test on Firefox Browser" to learn how to download and set System property for Chrome driver.

    Here is the sample code to set system property for Chrome driver:

    // System Property for Chrome Driver 
    System.setProperty("webdriver.chrome.driver","D:\\ChromeDriver\\chromedriver.exe");
    
    • After that we have to initialize Chrome driver using ChromeDriver Class.

    Here is the sample code to initialize Chrome driver using ChromeDriver class.

    // Instantiate a ChromeDriver class. 	
    	WebDriver driver=new ChromeDriver();
    

    Combining both of the above code blocks, we will get the code snippet to launch Google Chrome browser.

    	// System Property for Chrome Driver 
    System.setProperty("webdriver.chrome.driver","D:\\ChromeDriver\\chromedriver.exe");
        	// Instantiate a ChromeDriver class. 	
    	WebDriver driver=new ChromeDriver();
    
    • After that we need to write the code which will automate our second test scenario (navigate to the desired URL).

    Here is the sample code to navigate to the desired URL:

    // Launch Website
    driver.navigate().to("https://www.testandquiz.com/selenium/testing.html"); 
    

    The complete code till now will look something like this:

    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.chrome.ChromeDriver;
    
    
    
    public class Partial_Link {
    
    	public static void main(String[] args) {
    		
            // System Property for Chrome Driver 
    System.setProperty("webdriver.chrome.driver","D:\\ChromeDriver\\chromedriver.exe");
    
          	// Instantiate a ChromeDriver class. 	
    	WebDriver driver=new ChromeDriver();
    
          	// Launch Website
    driver.navigate().to("https://www.testandquiz.com/selenium/testing.html"); 
    
    
    	
    	}
    
    }
    

    Step4. Now we will try to locate the desired web element by using the partial value of its Link Text. In Selenium, locating a particular web element involves inspection of its HTML codes.

    Follow the steps given below to locate the Checkbox on the sample web page.

    Selenium Webdriver Locating Strategies By Partial Link Text
    • It will launch a window containing all the specific codes involved in the development of the Link Text.
    Selenium Webdriver Locating Strategies By Partial Link Text
    • Pick the value of the Link Text i.e. "This is a link".
    Selenium Webdriver Locating Strategies By Partial Link Text

    The Java Syntax for locating a web element through its Partial Link Text is written as:

    driver.findElement(By.partialLinkText (<linktext>))
    

    Therefore, for locating the Link Text on the sample web page we will use the value of its Partial Link Text:

    driver.findElement(By.partialLinkText (<"This is">))
    

    Step5. To automate our third test scenario, we need to write the code which will click on the Link Text.

    Here is the sample code to click on the Link Text.

    // Click on the Link Text using click() command
     driver.findElement(By.partialLinkText("This is")).click();
    
    
    Thus, our final test script will look something like this:
    import org.openqa.selenium.By;
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.chrome.ChromeDriver;
    
    public class Partial_Link {
    
    	public static void main(String[] args) {
    		
            // System Property for Chrome Driver 
    		System.setProperty("webdriver.chrome.driver","D:\\ChromeDriver\\chromedriver.exe");
    
          	// Instantiate a ChromeDriver class. 	
    		WebDriver driver=new ChromeDriver();
    
          	// Launch Website
    	driver.navigate().to("https://www.testandquiz.com/selenium/testing.html"); 
    
    
    	// Click on the Link Text using click() command
    	driver.findElement(By.partialLinkText("This is")).click();
    
    
        }
    }
    

    The following screenshot shows the Eclipse window for our test script.

    Selenium Webdriver Locating Strategies By Partial Link Text

    Step6. Right click on the Eclipse code and select Run As > Java Application.

    Selenium Webdriver Locating Strategies By Partial Link Text

    Upon execution, the above test script will launch the Firefox browser and automate all the test scenarios.






Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf