2

我想在网页上打开一个链接。该链接似乎位于标签中的无序列表中。网页的 url 是 selftechy dot com。标签是 home,about,selenium。

我试图打开链接,driver.findElement(By.linkText("Selenium"));但页面似乎失去了它的样式。我也尝试过使用 xpath 方法,但它也不起作用。请向我解释为什么它不起作用以及我应该如何修改代码以使其正常工作。谢谢你的帮助。

HTML 代码片段:

<body class="custom">
<div id="container">
<div id="page">
<ul class="menu">
<li class="tab tab-home current"><a href="http://selftechy.com">Home</a></li>
<li class="tab tab-1"><a href="http://selftechy.com/about" title="About">About</a></li>
<li class="tab tab-2"><a href="http://selftechy.com/selenium-2" title="Selenium">Selenium</a></li>
</ul>

用于打开链接的 webdriver 代码

import java.util.List;
import java.util.concurrent.TimeUnit;
import org.junit.*;

import org.junit.Before;
import org.junit.After;
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;

public class selftechyTestng 
{
    private WebDriver driver;
    private String baseUrl;

    @Before
    public void setUp() throws Exception
    {
        driver = new FirefoxDriver();
        baseUrl = "http://selftechy.com/";
        driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
    }
    @Test
    public void searchElements() throws Exception{
        driver.get(baseUrl);

            //use By.linkText method the page lost its styling
            driver.findElement(By.linkText("Selenium"));

        //use xpath method to open the link doesn't work either 
        List<WebElement> elements = driver.findElements(By.xpath("//div[@id=page]/*[3]")).click(); 
        driver.findElement(By.xpath("//div[@id=page]/*[3]")).click(); 
    }

}
4

4 回答 4

7

为什么要搜索 div 然后搜索子元素 - 有什么特别的原因吗?我没有看到任何优势,当然你也没有得到a你真正想要点击的元素。在我看来,使用起来要简单得多

driver.findElement(By.xpath("//a[@title = 'Selenium']")).click();

使用您必须使用的方法

driver.findElement(By.xpath("//div[@id = 'page']/ul/li[3]/a")).click(); 
于 2013-05-19T15:34:16.440 回答
0

Below code will open the link in new window and prints the title and url of the newly opened window.

    String defaultwindow = "";
@Test(description="Main Page")
public void UserOnMainPage()
{
        driver.get("http://yoururl.com");
        defaultwindow = driver.getWindowHandle();
        String selectAll = Keys.chord(Keys.SHIFT,Keys.RETURN);
        driver.findElement(By.linkText("linkname")).sendKeys(selectAll);
        printTitleandUrlofNewlyOpenedwindow();
}

private void printTitleandUrlofNewlyOpenedwindow() 
{
        Set<String> windowHandles1 = driver.getWindowHandles();
        int size = windowHandles1.size();
        System.out.println(size); 
        for (String string : windowHandles1) 
        {
           driver.switchTo().window(string);

           if(string.equals(defaultwindow))
           {
               System.out.println("On Main Window");
               Reporter.log("On Main Window");
           }
           else
           {
               String title=driver.getTitle();
               System.out.println(title);
               Reporter.log(title);  
               String recipeUrl = driver.getCurrentUrl();
               System.out.println(recipeUrl);     
               Reporter.log(recipeUrl);

           }
       }
       driver.switchTo().window(defaultwindow);
}
于 2013-10-16T12:40:25.503 回答
0

你也可以使用这个 xpath:

"//a[text()='Selenium']"

这将找到带有 text = Selenium 的链接

于 2013-05-20T19:05:28.807 回答
0

下面的代码将在新选项卡中打开链接。

String selectLinkOpeninNewTab = Keys.chord(Keys.CONTROL,Keys.RETURN); driver.findElement(By.linkText("urlLink")).sendKeys(selectLinkOpeninNewTab);

于 2013-10-16T12:44:28.523 回答