Xpath : Naveen Automation

PHOTO EMBED

Wed Sep 29 2021 04:22:23 GMT+0000 (Coordinated Universal Time)

Saved by @jpannu #linux #server

//

Inspect a website and press CTRL + F ( curser should be selected on inspect side )to open xpath Search bar on chrome.

//Find Specific text with element H4
> //h4[text()='Cucumber - 1 Kg']
  
//Selecting parent of H4 element with text 'Cucumber....'  
> //h4[text()='Cucumber - 1 Kg']//parent

//Selecting parent of H4 element with text 'Cucumber....' with specific class   
> //h4[text()='Cucumber - 1 Kg']//parent::*[@class='production-action']
  
  
content_copyCOPY