📜  Selenium Webdriver CSS定位-标签和ID

📅  最后修改于: 2020-11-06 03:37:02             🧑  作者: Mango

定位策略-(通过CSS-标签和ID)

在本部分中,您将学习如何使用CSS-标记和ID选择器来定位特定的Web元素。

我们知道,定位特定的Web元素涉及对其HTML代码的检查。

请按照下面给出的步骤在示例网页上找到“文本框”。

  • 它将启动一个窗口,其中包含开发文本框所涉及的所有特定代码。

  • 记下其Tag和其id属性的值。

通过CSS-标签和ID选择器定位Web元素的Java语法写为:

driver.findElement(By.cssSelector("Tag#Value of id attribute"))

因此,为了在示例网页上定位文本框,我们将使用input标记及其id属性的值:

driver.findElement(By.cssSelector("input#fname"))

同样,为了在示例网页上找到“提交”按钮,我们将使用button标记及其id属性的值:

driver.findElement(By.cssSelector("button#idOfButton")) 

我们为您创建了一个示例脚本,以使您更好地了解如何使用CSS-标签和ID选择器。我们在代码的每个部分都嵌入了注释,这些注释将指导您完成整个自动化过程。

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.remote.DesiredCapabilities;

public class SampleOne {

    public static void main(String[] args) {
        
     // System Property for Gecko Driver 
    System.setProperty("webdriver.gecko.driver","D:\\GeckoDriver\\geckodriver.exe" );
        
       // Initialize Gecko Driver using Desired Capabilities Class
        DesiredCapabilities capabilities = DesiredCapabilities.firefox();
        capabilities.setCapability("marionette",true);
        WebDriver driver= new FirefoxDriver(capabilities);
        
    
      // Launch Website
driver.navigate().to("https://www.testandquiz.com/selenium/testing.html");
    
      // Click on the textbox and send value
driver.findElement(By.cssSelector("input#fname")).sendKeys("JavaTpoint");
     
    // Click on the Submit button using click() command
driver.findElement(By.cssSelector("button#idOfButton")).click();
 
        
     //  Close the Browser
             driver.close();
    
    }

}