0

我从selenium IDE 1.9.0将脚本导出为 Java/TestNG/RemoteControl。

我想在Eclipse中使用TestNG运行这个脚本,并且我想在Firefox浏览器中看到脚本回放。

我在网上做了一些搜索,但我无法让它工作。我需要一些关于如何使代码工作的说明和指导。非常感谢您的帮助。

这是我的代码:

import java.util.List;
import org.testng.annotations.*;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;
import static org.testng.Assert.*;
import org.testng.annotations.Test;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.AfterTest;

public class search_donor_suzy_ng //extends SeleneseTestNgHelper {
    @BeforeTest
    public void setUp() throws Exception {
        //initizlize Firefoxbrowser: 
        WebDriver ffoxdriver = new FirefoxDriver();
        String baseUrl = "www.google.com"; //sample URL
    }
    @Test 
    public void testSearch_donor_suzy_ng() throws Exception {
        // set overall speed of the test case
        selenium.setSpeed("4000");
        selenium.open("/?html=openid");
        selenium.click("css=input[type=\"submit\"]");
        selenium.waitForPageToLoad("30000");
        Thread.sleep(4000);
        selenium.type("id=edit-name", "jeffshu");
        selenium.type("id=edit-pass", "tEgvz9xsaNjnwe4Y");
        selenium.click("id=edit-submit");
        selenium.waitForPageToLoad("30000");
        Thread.sleep(4000);
        selenium.click("id=cmp_admin");
        selenium.waitForPageToLoad("30000");
        selenium.click("id=quicksearch_anchor");
        selenium.click("css=img[alt=\"Member\"]");
        selenium.waitForPageToLoad("30000");
        selenium.type("id=search_name", "suzy");
        selenium.click("css=input[type=\"image\"]");
        selenium.click("link=Balagia, Suzy");
        selenium.waitForPageToLoad("30000");
    }
    @AfterTest
    public void tearDown() throws Exception {
        ffoxdriver.quit();  
    }
} 
4

1 回答 1

0

对于初学者,您确实需要参考文档@ http://docs.seleniumhq.org/docs/03_webdriver.jsp

在您的代码中,您正在初始化未使用的 beforetest 方法中的驱动程序对象。Driver 是 Webdriver 启动浏览器的方式,而在您的测试方法中,您使用的是 selenium 和 selenium 1 命令。作为一个快速步骤,您可以用驱动程序替换您的硒(将您的驱动程序声明放在类范围和方法范围内)。SeleneseTestngHelper 也是 selenium1。确保你的项目中有必要的 webdriver jars。

webdriver 中的某些命令与 selenium 1 不同,您在进行替换时可能会看到编译错误。查看驱动程序可用的方法。并使用相应的命令,例如。使用 webdriver 的 get() 而不是 open()。您可以参考javadocs或使用您的 ide 来了解这些。

于 2013-04-15T06:07:54.593 回答