Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

วิธีรับโค้ด HTML ของ WebElement ใน Selenium


เราสามารถรับโค้ด html ของ webelement ด้วยความช่วยเหลือของ Selenium webdriver เราสามารถรับ innerHTML เพื่อรับเนื้อหา HTML ขององค์ประกอบเว็บ

innerHTML เป็นแอตทริบิวต์ของ webelement ซึ่งเท่ากับเนื้อหาที่มีอยู่ระหว่างแท็กเริ่มต้นและแท็กสิ้นสุด getAttribute ใช้สำหรับสิ่งนี้และ innerHTML ถูกส่งผ่านเป็นอาร์กิวเมนต์ของเมธอด

ไวยากรณ์

String s = element.getAttribute('innerHTML');

ให้เราดูโค้ด html ด้านล่างขององค์ประกอบ innerHTML ขององค์ประกอบจะเป็น <คุณกำลังเรียกดูแหล่งข้อมูลที่ดีที่สุดสำหรับ การศึกษาออนไลน์ .

วิธีรับโค้ด HTML ของ WebElement ใน Selenium

ตัวอย่าง

การติดตั้งโค้ด

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.By;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.WebElement;
public class HtmlCodeElement{
   public static void main(String[] args) {
      System.setProperty("webdriver.chrome.driver", "C:\\Users\\ghs6kor\\Desktop\\Java\\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
      driver.get("https://www.tutorialspoint.com/index.htm");
      // identify element
      WebElement l=driver.findElement(By.cssSelector("h4"));
      // obtain the innerHTML with getAttribute method
      String s = l.getAttribute("innerHTML");
      System.out.println("HTML code of element: " +s);
      driver.close();
   }
}

ผลลัพธ์

วิธีรับโค้ด HTML ของ WebElement ใน Selenium