selenium learn

How to insert text in text field of model window using selenium webdriver ?

package SeleniumLearn.Com;
import org.testng.annotations.Test;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.BeforeTest;

How to handle conformation prompt dialog box using selenium webdriver ?

package SeleniumLearn.Com;
import org.testng.annotations.Test;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.BeforeTest;

public class ConformationAlertCanel {
    public WebDriver driver;

how to handle alert prompt dialog box using selenium webdriver ?

package SeleniumLearn.Com;

import org.testng.annotations.Test;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.BeforeTest;

Subscribe to RSS - selenium learn