Recherche…


Introduction

Selenium webdriver est un framework d'automatisation Web qui vous permet de tester votre application Web sur différents navigateurs Web. Contrairement à Selenium IDE, webdriver vous permet de développer vos propres scénarios de test dans le langage de programmation de votre choix. Il supporte Java, .Net, PHP, Python, Perl, Ruby.

Ouverture de la fenêtre du navigateur avec une URL spécifique à l'aide de Selenium Webdriver en Java

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

class test_webdriver{
    public static void main(String[] args) {
       WebDriver driver = new FirefoxDriver();
       driver.get("http://stackoverflow.com/");
       driver.close();
    }
}

Ouvrir une fenêtre de navigateur avec la méthode to ()

Ouvrir un navigateur avec la méthode to ()

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
class navigateWithTo{
    public static void main(String[] args) {
       WebDriver driver = new FirefoxDriver();
       driver.navigate().to("http://www.example.com");
       driver.close();
    }
}


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow