• Selenium Video Tutorials

Selenium WebDriver - 浏览器命令



Selenium Webdriver 提供了多个命令,这些命令有助于打开浏览器,在打开的浏览器上执行某些操作,以及退出浏览器。

Selenium Webdriver 中的基本浏览器命令

下面讨论了一些浏览器命令:

get(String URL) 命令

此命令打开浏览器,然后启动作为参数传递的 URL。

语法

driver.get("https://tutorialspoint.com/selenium/practice/nestedframes.php");

getTitle() 命令

此命令获取作为字符串的焦点浏览器页面标题。它不接受任何参数。

语法

String str = driver.getTitle();

getCurrentUrl() 命令

此命令获取作为字符串的焦点浏览器 URL。它不接受任何参数。

语法

String str = driver.getCurrentUrl();

getPageSource() 命令

此命令获取作为字符串的焦点浏览器页面源代码。它不接受任何参数。

语法

String str = driver.getPageSource();

close() 命令

此命令仅关闭焦点浏览器窗口。它不接受任何参数,也不返回任何内容。

语法

driver.close();

quit() 命令

此命令关闭与驱动程序会话相关的所有内容(浏览器和所有后台驱动程序进程)。它不接受任何参数,也不返回任何内容。

语法

driver.quit();

如何在网页上检查元素?

首先右键单击网页,然后在 Chrome 浏览器中单击“检查”按钮。接下来将打开完整页面的 HTML 代码。要调查页面上的特定元素,请单击可见 HTML 代码顶部左侧的向上箭头,如下所示。

Selenium Browser Commands 1

示例 1

让我们以以下页面为例,我们首先启动一个具有 URL 的应用程序:Selenium 自动化练习表单,然后获取浏览器标题Selenium Practice - 学生注册表单

请注意,我们可以在 HTML 代码中的title标签内获取网页的浏览器标题,该标签位于head标签内。在下图中,我们看到页面的标题是Selenium Practice - 学生注册表单

Selenium Browser Commands 2

然后,我们将单击登录按钮,之后我们将导航到另一个页面,该页面的浏览器标题为Selenium Practice - 登录,URL 为:Selenium 自动化练习表单。最后,我们将退出 Web 驱动程序会话。

Selenium Browser Commands 3

代码实现

package org.example;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;

public class BrowserCommand {
   public static void main(String[] args) throws InterruptedException {

      // Initiate the Webdriver
      WebDriver driver = new ChromeDriver();

      // adding implicit wait of 15 secs
      driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);

      // launching a browser and open a  URL
      driver.get("https://tutorialspoint.com/selenium/practice/selenium_automation_practice.php");

      // Getting browser title after launch
      System.out.println("Getting browser title after launch: " + driver.getTitle());

      // Getting browser URL after launch
      System.out.println("Getting URL after launch: " + driver.getCurrentUrl());

      // identify link then click
      WebElement l = driver.findElement(By.xpath("//*[@id='collapseTwo']/div/ul/li[2]/a"));
      l.click();

      // Getting browser title after clicking link
      System.out.println("Getting browser title after clicking link: " + driver.getTitle());

      // Getting browser URL after launch
      System.out.println("Getting URL after clicking link: " + driver.getCurrentUrl());

      // Quitting browser
      driver.quit();
   }
}

输出

Getting browser title after launch: Selenium Practice - Student Registration Form
Getting URL after launch: 
https://tutorialspoint.com/selenium/practice/selenium_automation_practice.php
Getting browser title after clicking link: Selenium Practice - Login
Getting URL after clicking link: 
https://tutorialspoint.com/selenium/practice/login.php

Process finished with exit code 0

在上面的示例中,我们在打开的浏览器中启动了一个 URL,并分别获取了浏览器标题和当前 URL,并在控制台中显示消息 - 启动后获取浏览器标题:Selenium Practice - 学生注册表单和启动后获取 URL:Selenium 自动化练习表单

然后我们单击“登录”,并在导航后接收浏览器标题和当前 URL,并在控制台中显示消息 - 单击链接后获取浏览器标题:Selenium Practice - 登录和单击链接后获取 URL:Selenium 自动化练习表单。接下来,我们必须退出驱动程序会话。

最后,收到消息进程已完成,退出代码为 0,表示代码已成功执行。

示例 2

让我们再举一个例子,如下图所示,我们将单击新标签页

Selenium Browser Commands 4

之后,我们将获得另一个包含文本新标签页的窗口。

Selenium Browser Commands 5

然后我们将关闭包含文本新标签页的新窗口,并返回到原始窗口并在那里访问文本 - 浏览器窗口。最后,我们将退出会话。

Selenium Browser Commands 6

代码实现

package org.example;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.Set;
import java.util.concurrent.TimeUnit;

public class WindowClose {
   public static void main(String[] args) throws InterruptedException {

      // Initiate the Webdriver
      WebDriver driver = new ChromeDriver();

      // adding implicit wait of 12 secs
      driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS);

      // Opening the webpage where we will open a new window
      driver.get("https://tutorialspoint.com/selenium/practice/browser-windows.php");

      // click button and navigate to next window
      WebElement b =  driver.findElement
         (By.xpath("/html/body/main/div/div/div[2]/button[1]"));
      b.click();

      // Get the window handle of the original window
      String oW = driver.getWindowHandle();

      // get all opened windows handle ids
      Set<String> windows = driver.getWindowHandles();

      // Iterating through all window handles
      for (String w : windows) {
         if(!oW.equalsIgnoreCase(w)) {

            // switching to child window
            driver.switchTo().window(w);

            // accessing element in new window
            WebElement e = driver.findElement
               (By.xpath("/html/body/main/div/div/h1"));
            System.out.println("Text in new window is: " + e.getText());

            // closing new window
            driver.close();
            break;
         }
      }
      // switching to parent window
      driver.switchTo().window(oW);

      // accessing element in parent window
      WebElement e1 = driver.findElement
         (By.xpath("/html/body/main/div/div/div[2]/h1"));
      System.out.println("Text in parent window is: " + e1.getText());

      // quitting the browser session
      driver.quit();
   }
}

输出

Text in new window is: New Tab
Text in parent window is: Browser Windows

在上面的示例中,我们捕获了新窗口上的文本,并在控制台中收到消息 - 新窗口中的文本为:新标签页。然后我们关闭了子窗口并切换回父窗口。最后,在控制台中获取父窗口上的文本 - 父窗口中的文本为:浏览器窗口

示例 3

让我们再举一个以上页面的例子,我们将使用getPageSource()方法获取页面源代码。

package org.example;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;

public class WindowPagSource {
   public static void main(String[] args) throws InterruptedException {

      // Initiate the Webdriver
      WebDriver driver = new ChromeDriver();

      // adding implicit wait of 12 secs
      driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS);

      // Opening the webpage where we will open a new window
      driver.get("https://tutorialspoint.com/selenium/practice/browser-windows.php");

      // Getting browser page source
      System.out.println("Getting page source: " + driver.getPageSource());

      // quitting the browser session
      driver.quit();
   }
}

在上面的示例中,我们捕获了在网页上启动的网页的页面源代码,并在控制台中显示消息。

结论

这结束了我们对 Selenium WebDriver 浏览器命令教程的全面介绍。我们首先描述了 Selenium Webdriver 中的基本浏览器命令,如何在网页上检查元素,并逐步介绍了如何使用 Selenium Webdriver 使用浏览器命令的示例。这使您对 Selenium WebDriver 浏览器命令有了深入的了解。明智的做法是不断练习您学到的知识,并探索与 Selenium 相关的其他知识,以加深您的理解并拓宽您的视野。

广告