1

我写了以下内容,运行此代码后它返回空字符串值。有人可以建议我解决这个问题吗?这里我使用了 gettext() 方法。它不检索链接名称。

我的代码是:

package Practice_pack_1;

import java.util.List;    

import org.openqa.selenium.By;    
import org.openqa.selenium.WebDriver;    
import org.openqa.selenium.WebElement;    
import org.openqa.selenium.firefox.FirefoxDriver;    
import org.testng.annotations.AfterTest;    
import org.testng.annotations.BeforeTest;    
import org.testng.annotations.Test;   

public class CheckingUncheckingCheckbox {
    WebDriver driver;
    @BeforeTest
    public void open()
    {
    driver=new FirefoxDriver();
    driver.navigate().to("http://openwritings.net/sites/default/files/radio_checkbox.html");
}
@AfterTest
public void teardown() throws InterruptedException
{
    Thread.sleep(3000);
    driver.quit();
}
@Test
public void CheckingChkbox() throws InterruptedException{  
    WebElement parent = driver.findElement(By.xpath(".//*[@id='fruits']"));
    List<WebElement> children = parent.findElements(By.tagName("input")); 
    int sz= children.size();
    System.out.println("Size is: "+sz);
    for (int i = 0; i <sz; i++) 
    {
        boolean check= children.get(i).isSelected();
        if(check==true)
        {
            System.out.println(children.get(i).getText()+ "is selected");
        }
        else
        {
            System.out.println(children.get(i).getText()+ "is not selected");
        }
    }  
}

}

输出是:

Size is: 3    
is selected    
is not selected 
is selected
PASSED: CheckingChkbox
4

4 回答 4

6

关于您的应用程序,您可能需要使用getTextgetAttribute("value")而不是getText()返回内部文本。

于 2013-04-10T10:15:33.900 回答
1

如果你去检查你的页面 HTML,标签中没有内部文本。所以你不能使用getText().

我假设您正在寻找输入标签的价值。如果您检查您的 HTMl agian,则输入标签中有一个 value 属性。您可以使用读取该值, getAttribute("value")

于 2013-04-10T10:39:12.507 回答
0

尝试删除“。” 在您的 xpath 之前,并确保您的 xpath 元素是正确的

尝试这个driver.findElement(By.id("fruits")).getText());

于 2013-04-10T11:56:01.047 回答
0

我已经使用 java 及其工具的能力将您的编程方式更改为“更好”的方式。

实际上 getText() 用于捕获标签之间的文本,例如

<input id="input1" value="123"> getText() catches here </input> 

getAttribute() 捕获指定属性的值。

<input id="input1" value=" getAttribute("value") catches here ">123</input>

这是我下面的代码版本。

@Test
public void CheckingChkbox() throws InterruptedException{  
  WebElement parent = driver.findElement(By.xpath(".//*[@id='fruits']"));
  List<WebElement> children = parent.findElements(By.tagName("input")); 
  System.out.println("Size is: "+children.size());
  for (WebElement el : children) 
  {
    if(el.isSelected())
    {
      System.out.println(el.getAttribute("value")+ "is selected");
    }
    else
    {
      System.out.println(el.getAttribute("value")+ "is not selected");
    }
  } // end for 
}// end CheckingChkbox()
于 2013-04-11T06:54:31.393 回答