使用 getAllLinks 检查链接

发布于 2024-10-15 14:53:17 字数 1164 浏览 2 评论 0原文

我正在使用 selenium ide 和 rc 测试应用程序。我需要验证链接。

通常我将文件从 Selenium ide 导出到 junit 4,并在 eclipse 中运行文件。文件为下一个

包 com.example.tests;

导入 com.thoughtworks.selenium.*; 导入 org.junit.After; 导入 org.junit.Before; 导入 org.junit.Test; 导入java.util.regex.Pattern;

公共类login_csupport扩展SeleneseTestCase { @前 公共无效setUp()抛出异常{ selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://daisy-w2003.hi.inet/CustomerSupport"); 硒.start(); }

@Test
public void testLogin_csupport() throws Exception {
    selenium.open("http://daisy-w2003.hi.inet/CustomerSupport/?ReturnUrl=%2fCustomerSupport%2fAccount");
    assertEquals("Calling Cards Customer Support - Inicio", selenium.getTitle());
    selenium.type("UserName", "admin");
    selenium.type("Password", "admin");
    selenium.click("//div[@id='content']/div/form/div[3]/a/span[2]");
    selenium.waitForPageToLoad("30000");
    assertEquals("Calling Cards Customer Support - Gestión", selenium.getTitle());
}

@After
public void tearDown() throws Exception {
    selenium.stop();
}

} 使用 getAllLinks 我想检查页面的链接。请问,任何人都可以帮助我吗?

谢谢

I´m testing application with selenium ide and rc. I need verify the links.

Usually I export file from Selenium ide to junit 4, and run file in eclipse. File is as next

package com.example.tests;

import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.util.regex.Pattern;

public class login_csupport extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://daisy-w2003.hi.inet/CustomerSupport");
selenium.start();
}

@Test
public void testLogin_csupport() throws Exception {
    selenium.open("http://daisy-w2003.hi.inet/CustomerSupport/?ReturnUrl=%2fCustomerSupport%2fAccount");
    assertEquals("Calling Cards Customer Support - Inicio", selenium.getTitle());
    selenium.type("UserName", "admin");
    selenium.type("Password", "admin");
    selenium.click("//div[@id='content']/div/form/div[3]/a/span[2]");
    selenium.waitForPageToLoad("30000");
    assertEquals("Calling Cards Customer Support - Gestión", selenium.getTitle());
}

@After
public void tearDown() throws Exception {
    selenium.stop();
}

}
Using getAllLinks I´d like check the links of the page. Please, anyone can to help me??

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘味果▽酱 2024-10-22 14:53:17

getAllLinks() 生成的 assertAllLinks(pattern)

Returns:
the IDs of all links on the page

Returns the IDs of all links on the page.

If a given link has no ID, it will appear as "" in this array.

assertAllLinks(pattern) generated from getAllLinks()

Returns:
the IDs of all links on the page

Returns the IDs of all links on the page.

If a given link has no ID, it will appear as "" in this array.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文