Saturday 15 March 2014

How to get the title of the web page with selenium webdriver in C#.Net

We can get the title of the webpage currently open in the web browser launched by Selenium, using below line of code

String title =  driver.Title;

The complete example in C#.Net is given below.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Chrome;
using OpenQA.Selenium.IE;
using OpenQA.Selenium.Support.UI;
using System.Collections.ObjectModel;
namespace Abc
{
    class Program
    {
static void Main(string[] args)
 {

//IWebDriver x = new InternetExplorerDriver(@"F:\selenium\csharp");
//IWebDriver x = new FirefoxDriver();
 IWebDriver driver=null;
            try
            {
                driver = new ChromeDriver(@"F:\selenium\csharp");
                driver.Url = "http://www.google.co.in";
                driver.Manage().Window.Maximize();
                String title = driver.Title;
               Console.WriteLine("Title of the web page is -> "+ title);    
                
                driver.Navigate();
              }
            catch(Exception e){
                Console.WriteLine("Exception ....*********"+e.ToString());            
            }
           
            finally{
            Thread.Sleep(2000);
            driver.Quit();
            Console.ReadLine();
            }          
        }
    }
}



What do you think on above selenium topic. Please provide your inputs and comments. You can write to me at reply2sagar@gmail.com

No comments:

Post a Comment

Buy Best Selenium Books

Contributors