Selenium – How to fetch attributes values for any web element/how to find the source of any image?

Опубликовано: 21 Апрель 2024
на канале: Programmer World
38
1

In this video will see how to get any attributes e.g src(source),text,sizes,class values for any web element.
How to take web element xpath:
   • How to take locators(xpath) and check...  

I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: [email protected]

Details:
https://programmerworld.co/selenium/s...

Code:
public class GetAttributes{

public static void main(String[] args) {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver", "directory path of chrome driver exe\\chromedriver.exe");
ChromeOptions op = new ChromeOptions();
op.setBinary("directory path of chrome exe\\chrome.exe");
op.addArguments("--remote-allow-origins=*");
WebDriver driver = new ChromeDriver(op);
driver.get("https://programmerworld.co/");

WebElement element = driver.findElement(By.xpath("//img[@class='custom-logo']"));

String attributeSource = element.getAttribute("src");
System.out.println("Source = "+attributeSource);

String attributeSize = element.getAttribute("sizes");
System.out.println("Size = "+attributeSize);

String attributeClass = element.getAttribute("class");
System.out.println("Class = "+attributeClass);

String attributeAlt = element.getAttribute("src");
System.out.println("Alt = "+attributeAlt);
}


--


Смотрите видео Selenium – How to fetch attributes values for any web element/how to find the source of any image? онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Programmer World 21 Апрель 2024, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 38 раз и оно понравилось 1 людям.