Nous pouvons utiliser Selenium pour capturer les journaux du navigateur. Nous devons convertir RemoteWebDriver en pilote et l'initialiser. Ensuite, nous devons utiliser la méthode setLogLevel. Vous devez ajouter l'instruction import org.openqa.selenium.remote.RemoteWebDriver au code pour utiliser RemoteWebDriver.
((RemoteWebDriver) driver).setLogLevel(Level.INFO);
import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.remote.RemoteWebDriver import java.util.logging.Level; public class BrwLogs{ public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe"); WebDriver driver = new ChromeDriver(); // Enable logging with setLogLevel method ((RemoteWebDriver) driver).setLogLevel(Level.INFO); driver.get("https://www.tutorialspoint.com/index.htm"); //identify element driver.findElement(By.id("gsc−i−id1")).sendKeys("Selenium"); driver.quit(); } }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!