How to use getTitle method of org.openqa.selenium.Interface WebDriver class

Best Selenium code snippet using org.openqa.selenium.Interface WebDriver.getTitle

Source:NavigationTest.java Github

copy

Full Screen

...14 static WebDriver driver;15 public static void chromeTest() {16 driver = BrowerFactory.getDriver("chrome");17 driver.get("https://google.com");18 String title = driver.getTitle();19 driver.navigate().to("https://etsy.com");20 String title2 = driver.getTitle();21 driver.navigate().back();22 String title3 = driver.getTitle();23 StringUtility.verifyEqual(title, title3);24 driver.navigate().forward();25 String title4 = driver.getTitle();26 StringUtility.verifyEqual(title2, title4);27 driver.quit();28 }29 public static void firefoxTest() {30 driver = BrowerFactory.getDriver("firefox");31 driver.get("http://google.com");32 String title = driver.getTitle();33 driver.navigate().to("http://etsy.com");34 String title2 = driver.getTitle();35 driver.navigate().back();36 String title3 = driver.getTitle();37 driver.navigate().forward();38 String title4 = driver.getTitle();39 StringUtility.verifyEqual(title, title3);40 StringUtility.verifyEqual(title2, title4);41 driver.quit();42 }43 public static void edgeTest() {44 driver = BrowerFactory.getDriver("edge");45 driver.get("http://google.com");46 String title = driver.getTitle();47 driver.navigate().to("http://etsy.com");48 String title2 = driver.getTitle();49 driver.navigate().back();50 String title3 = driver.getTitle();51 driver.navigate().forward();52 String title4 = driver.getTitle();53 StringUtility.verifyEqual(title, title3);54 StringUtility.verifyEqual(title2, title4);55 driver.quit();56 }57 public static void main(String[] args) {58 chromeTest();59 firefoxTest();60 edgeTest();61 }62}63// public static void main(String[] args) throws Exception {64//65// WebDriverManager.chromedriver().version("79").setup();66// WebDriver driver = new ChromeDriver();67// Thread.sleep(3000);68// driver.close();69// WebDriverManager.firefoxdriver().setup();70// WebDriver driver1 = new FirefoxDriver();71// Thread.sleep(3000);72// driver.close();73// WebDriverManager.edgedriver().setup();74// WebDriver driver2 = new EdgeDriver();75// Thread.sleep(3000);76// driver.close();77// }78//}79//80//81// //In selenium, everything starts from WebDriver interface'82// //ChromeDriver extends RemoteWebDriver --> implements WebDriver83// driver.get("http://google.com");//to open a website84// Thread.sleep(3000);//for demo, wait 3 seconds85// //method that return page title86// //you can also see it as tab name, in the browser87// String title = driver.getTitle();//returns <title>Some title</title> text88// System.out.println("Title is..."+title);89// driver.close();//to close browser90// //browser cannot close itself91// }92// }...

Full Screen

Full Screen

Source:AmazonHomePage.java Github

copy

Full Screen

...23 public void signInTest(){24 System.setProperty("webdriver.chrome.driver", "C:\\Users\\Bhushan\\myjava\\chromedriver.exe");25 driver = new ChromeDriver();26 driver.get("https://www.amazon.com/");27 System.out.println("home page Title:"+ driver.getTitle());28 driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);29 30 WebElement element = driver.findElement(By.cssSelector("#nav-link-accountList>span:nth-of-type(2)")); // listen to 2017/06/22 class 23 mints video31 element.click();32 System.out.println("sign in page title :" + driver.getTitle());33 34 }35 36 public void tryPrimeTest(){37 38 driver.get("https://www.amazon.com/");39 System.out.println("home page Title:"+ driver.getTitle());40 WebElement element = driver.findElement(By.cssSelector("#nav-link-prime .nav-line-2"));41 42 Actions action = new Actions(driver); //abject will take driver input43 action.moveToElement(element).perform(); // moveToElement will take the mouse control to a particular element//perform perform action44 45 WebDriverWait wait = new WebDriverWait(driver,30);46 element = wait.until(ExpectedConditions.visibilityOfElementLocated(By.cssSelector(".prime-button-try>a")));47 element.click();48 System.out.println("home page Title:"+ driver.getTitle());49 //driver.findElement(By.cssSelector(".prime-button-try>a")).click();50 }51 52 public void searchBoxTest() throws InterruptedException{53 driver.get("https://www.amazon.com/");54 WebElement element = driver.findElement(By.id("twotabsearchtextbox"));55 element.click();56 element.sendKeys("w");57 element.sendKeys("a");58 59 Thread.sleep(1000);60 element.sendKeys("t");61 62 //List<WebElement>elements = driver.findElements(By.cssSelector("#suggestions div")); ...

Full Screen

Full Screen

Source:WebdriverTest.java Github

copy

Full Screen

...13public interface WebdriverTest{14 public interface WebDriver extends SearchContext {15 void get(String var1);16 String getCurrentUrl();17 String getTitle();18 List<WebElement> findElements(By var1);19 WebElement findElement(By var1);20 String getPageSource();21 void close();22 void quit();23 Set<String> getWindowHandles();24 String getWindowHandle();25 org.openqa.selenium.WebDriver.TargetLocator switchTo();26 org.openqa.selenium.WebDriver.Navigation navigate();27 org.openqa.selenium.WebDriver.Options manage();28 @Beta29 public interface Window {30 void setSize(Dimension var1);31 void setPosition(Point var1);...

Full Screen

Full Screen

Source:Selenium2Example.java Github

copy

Full Screen

...33 element.sendKeys("Cheese!");34 // Now submit the form. WebDriver will find the form for us from the element35 element.submit();36 // Check the title of the page37 System.out.println("Page title is: " + driver.getTitle());38 // Google's search is rendered dynamically with JavaScript.39 // Wait for the page to load, timeout after 10 seconds40 (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {41 public Boolean apply(WebDriver d) {42 return d.getTitle().toLowerCase().startsWith("cheese!");43 }44 });45 // Should see: "cheese! - Google Search"46 System.out.println("Page title is: " + driver.getTitle());47 //Close the browser48 driver.quit();49 }50}

Full Screen

Full Screen

Source:IEDemo.java Github

copy

Full Screen

...26 element.sendKeys("Cheese!");27 // Now submit the form. WebDriver will find the form for us from the element28 element.submit();29 // Check the title of the page30 // getTitle()获取title元素31 System.out.println("Page title is: " + driver.getTitle());32 // Google's search is rendered dynamically with JavaScript.33 // Wait for the page to load, timeout after 10 seconds34 // 显式等待,等待页面title变成cheese开始,如果超过10s,没有找到则报错35 (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {36 public Boolean apply(WebDriver d) {37 return d.getTitle().toLowerCase().startsWith("cheese!");38 }39 });40 // Should see: "cheese! - Google Search"41 System.out.println("Page title is: " + driver.getTitle());42 // Close the browser43 driver.quit();44 }45}

Full Screen

Full Screen

Source:chromeDemo.java Github

copy

Full Screen

...26 element.sendKeys("Cheese!");27 // Now submit the form. WebDriver will find the form for us from the element28 element.submit();29 // Check the title of the page30 // getTitle()获取title元素31 System.out.println("Page title is: " + driver.getTitle());32 // Google's search is rendered dynamically with JavaScript.33 // Wait for the page to load, timeout after 10 seconds34 // 显式等待,等待页面title变成cheese开始,如果超过10s,没有找到则报错35 (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {36 public Boolean apply(WebDriver d) {37 return d.getTitle().toLowerCase().startsWith("cheese!");38 }39 });40 // Should see: "cheese! - Google Search"41 System.out.println("Page title is: " + driver.getTitle());42 // Close the browser43 driver.quit();44 }45}

Full Screen

Full Screen

Source:SeleniumDriver.java Github

copy

Full Screen

...36 // Now submit the form. WebDriver will find the form for us from the element37 element.submit();3839 // Check the title of the page40 System.out.println("Page title is: " + driver.getTitle());41 42 // Google's search is rendered dynamically with JavaScript.43 // Wait for the page to load, timeout after 10 seconds44 (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {45 public Boolean apply(WebDriver d) {46 return d.getTitle().toLowerCase().startsWith("cheese!");47 }48 });4950 // Should see: "cheese! - Google Search"51 System.out.println("Page title is: " + driver.getTitle());52 53 //Close the browser54 driver.quit(); 55 }56} ...

Full Screen

Full Screen

Source:SeleniumTest.java Github

copy

Full Screen

...34 // Now submit the form. WebDriver will find the form for us from the element35 element.submit();3637 // Check the title of the page38 System.out.println("Page title is: " + driver.getTitle());3940 // Google's search is rendered dynamically with JavaScript.41 // Wait for the page to load, timeout after 10 seconds42 (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {43 public Boolean apply(WebDriver d) {44 return d.getTitle().toLowerCase().startsWith("cheese!");45 }46 });4748 // Should see: "cheese! - Google Search"49 System.out.println("Page title is: " + driver.getTitle());5051 //Close the browser52 driver.quit();53 }54} ...

Full Screen

Full Screen

getTitle

Using AI Code Generation

copy

Full Screen

1String title = driver.getTitle();2System.out.println("Title of the page is : " + title);3String currentUrl = driver.getCurrentUrl();4System.out.println("Current Url of the page is : " + currentUrl);5String pageSource = driver.getPageSource();6System.out.println("Page Source of the page is : " + pageSource);7System.out.println("Current Url of the page is : " + driver.getCurrentUrl());8driver.close();9System.out.println("Browser is closed");10driver.quit();11System.out.println("Browser is closed");12driver.findElement(By.id("kw")).sendKeys("Selenium");13driver.findElement(By.id("su")).click();14List<WebElement> elements = driver.findElements(By.tagName("input"));15System.out.println("Number of input tags on the page is : " + elements.size());16String windowHandle = driver.getWindowHandle();17System.out.println("Window Handle of the page is : " + windowHandle);18Set<String> windowHandles = driver.getWindowHandles();19System.out.println("Window Handles of the page are : " + windowHandles);20System.out.println("Current Url of the page is : " + driver.getCurrentUrl());21driver.navigate().back();22System.out.println("Current Url of the page is : " + driver.getCurrentUrl());23driver.navigate().forward();24System.out.println("Current Url of the page is : " + driver.getCurrentUrl());25driver.navigate().refresh();26System.out.println("Current Url of the page is : " + driver.getCurrent

Full Screen

Full Screen

getTitle

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.WebDriver;2import org.openqa.selenium.chrome.ChromeDriver;3public class WebDriverExample {4 public static void main(String[] args) {5 System.setProperty("webdriver.chrome.driver", "D:\\selenium\\chromedriver.exe");6 WebDriver driver = new ChromeDriver();7 String expectedTitle = "Welcome: Mercury Tours";8 String actualTitle = "";9 driver.get(baseUrl);10 actualTitle = driver.getTitle();11 if (actualTitle.contentEquals(expectedTitle)) {12 System.out.println("Test Passed!");13 } else {14 System.out.println("Test Failed");15 }16 driver.close();17 }18}19import org.openqa.selenium.WebDriver;20import org.openqa.selenium.chrome.ChromeDriver;21public class WebDriverExample {22 public static void main(String[] args) {23 System.setProperty("webdriver.chrome.driver", "D:\\selenium\\chromedriver.exe");24 WebDriver driver = new ChromeDriver();25 String expectedTitle = "Welcome: Mercury Tours";26 String actualTitle = "";27 driver.get(baseUrl);28 actualTitle = driver.getTitle();29 if (actualTitle.contentEquals(expectedTitle)) {30 System.out.println("Test Passed!");31 } else {32 System.out.println("Test Failed");33 }34 driver.close();35 }36}37import org.openqa.selenium.WebDriver;38import org.openqa.selenium.chrome.ChromeDriver;39public class WebDriverExample {40 public static void main(String[] args) {

Full Screen

Full Screen

getTitle

Using AI Code Generation

copy

Full Screen

1String title = driver.getTitle();2System.out.println("Title of the page is: " + title);3String currentUrl = driver.getCurrentUrl();4System.out.println("Current URL of the page is: " + currentUrl);5String pageSource = driver.getPageSource();6String windowHandle = driver.getWindowHandle();7System.out.println("Window handle of the page is: " + windowHandle);8Set<String> windowHandles = driver.getWindowHandles();9System.out.println("Window handles of the page are: " + windowHandles);10driver.close();11driver.quit();12driver.navigate().back();13driver.navigate().forward();14driver.navigate().refresh();15Dimension windowSize = driver.manage().window().getSize();16System.out.println("Window size is: " + windowSize);17driver.manage().window().maximize();18Point windowPosition = driver.manage().window().getPosition();19System.out.println("Window position is: " + windowPosition);

Full Screen

Full Screen

getTitle

Using AI Code Generation

copy

Full Screen

1package com.selenium4beginners.java.webdriver;2import org.openqa.selenium.WebDriver;3import org.openqa.selenium.chrome.ChromeDriver;4public class GetTitleMethod {5 public static void main(String[] args) {6 WebDriver driver = new ChromeDriver();7 String title = driver.getTitle();8 System.out.println("Title of the Page is: " + title);9 driver.close();10 }11}12Method Description activeElement() This method returns the currently active element in the DOM of the current web page. alert() This method returns the Alert interface of the WebDriver interface. defaultContent() This method switches the focus of the WebDriver instance to the default content of the current web page. frame(int index) This method switches the focus of the WebDriver instance to the frame with the specified index. frame(String nameOrId) This method switches the focus of the WebDriver instance to the frame with the specified name or ID. frame(WebElement frameElement) This method switches the focus of the WebDriver instance to the specified frame element. parentFrame() This method switches the focus of the WebDriver instance to the parent frame of the current frame. window(String windowHandle) This method switches the

Full Screen

Full Screen

Selenium 4 Tutorial:

LambdaTest’s Selenium 4 tutorial is covering every aspects of Selenium 4 testing with examples and best practices. Here you will learn basics, such as how to upgrade from Selenium 3 to Selenium 4, to some advanced concepts, such as Relative locators and Selenium Grid 4 for Distributed testing. Also will learn new features of Selenium 4, such as capturing screenshots of specific elements, opening a new tab or window on the browser, and new protocol adoptions.

Chapters:

  1. Upgrading From Selenium 3 To Selenium 4?: In this chapter, learn in detail how to update Selenium 3 to Selenium 4 for Java binding. Also, learn how to upgrade while using different build tools such as Maven or Gradle and get comprehensive guidance for upgrading Selenium.

  2. What’s New In Selenium 4 & What’s Being Deprecated? : Get all information about new implementations in Selenium 4, such as W3S protocol adaption, Optimized Selenium Grid, and Enhanced Selenium IDE. Also, learn what is deprecated for Selenium 4, such as DesiredCapabilites and FindsBy methods, etc.

  3. Selenium 4 With Python: Selenium supports all major languages, such as Python, C#, Ruby, and JavaScript. In this chapter, learn how to install Selenium 4 for Python and the features of Python in Selenium 4, such as Relative locators, Browser manipulation, and Chrom DevTool protocol.

  4. Selenium 4 Is Now W3C Compliant: JSON Wireframe protocol is retiring from Selenium 4, and they are adopting W3C protocol to learn in detail about the advantages and impact of these changes.

  5. How To Use Selenium 4 Relative Locator? : Selenium 4 came with new features such as Relative Locators that allow constructing locators with reference and easily located constructors nearby. Get to know its different use cases with examples.

  6. Selenium Grid 4 Tutorial For Distributed Testing: Selenium Grid 4 allows you to perform tests over different browsers, OS, and device combinations. It also enables parallel execution browser testing, reads up on various features of Selenium Grid 4 and how to download it, and runs a test on Selenium Grid 4 with best practices.

  7. Selenium Video Tutorials: Binge on video tutorials on Selenium by industry experts to get step-by-step direction from automating basic to complex test scenarios with Selenium.

Selenium 101 certifications:

LambdaTest also provides certification for Selenium testing to accelerate your career in Selenium automation testing.

Run Selenium automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful