8

所以我使用Selenium IDE为我想要完成的一些自动化创建了一个测试用例。我希望能够为这种情况创建一些循环/流控制,所以我想我需要将它从 Selenium IDE 导出到 Java 之类的东西(我最熟悉 Java)。我导出到Java/JUnit4/Web Driver。我认为尝试通过Eclipse执行 java 文件效果最好,但如果有人知道更简单的事情,请告诉我。无论如何,我没有找到关于如何通过 Eclipse 执行这个 Java 的很好的解释。

我阅读的大多数内容都告诉我要确保我的构建路径库包含Selenium Standalone Server。几乎所有我读到的东西都告诉我要使用 Selenium 遥控器。但是,我认为 RC 已经贬值了,我想知道是否有任何方法可以使它与我从 Selenium 下载的更新的 Web 驱动程序一起工作。另外,我读到的大多数东西都告诉我我需要使用public static void main(),这有点尴尬,因为我不知道如何更改导出的 selenium 给我的代码(显然我不能全部粘贴在主要方法中)。

如果有人能引导我完成从 Selenium 到 Java 的导出到执行代码,我将永远欠你的债。

Selenium 给我的代码:package com.example.tests;

package com.rackspace;

import java.util.concurrent.TimeUnit;

import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.NoAlertPresentException;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;

public class RackspaceContactAutomation {
   private WebDriver driver;
   private String baseUrl;
   private boolean acceptNextAlert = true;
   private StringBuffer verificationErrors = new StringBuffer();

   @Before
   public void setUp() throws Exception {
      driver = new FirefoxDriver();
      baseUrl = "https://cp.rackspace.com/Exchange/Mail/Contacts/List.aspx?selectedDomain=blahblahblah.com";
      driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
   }

   @Test
   public void testContactAutomationJava() throws Exception {
      driver.get(baseUrl + "/Exchange/Mail/Contacts/List.aspx?selectedDomain=blahblahblah.com");
      driver.findElement(By.linkText("Mr. Man")).click();
      driver.findElement(By.linkText("Contact Information")).click();
      new Select(driver.findElement(By.id("PhoneNumberType"))).selectByVisibleText("Mobile");
      driver.findElement(By.id("MobilePhone")).sendKeys("999-999-9999");
      new Select(driver.findElement(By.id("PhoneNumberType"))).selectByVisibleText("Fax");
      driver.findElement(By.id("Fax")).sendKeys("999-999-9999");
      driver.findElement(By.cssSelector("button.primary")).click();
   }

   @After
   public void tearDown() throws Exception {
      driver.quit();
      String verificationErrorString = verificationErrors.toString();
      if (!"".equals(verificationErrorString)) {
         fail(verificationErrorString);
      }
   }

   private boolean isElementPresent(By by) {
      try {
         driver.findElement(by);
         return true;
      } catch (NoSuchElementException e) {
         return false;
      }
   }

   private boolean isAlertPresent() {
      try {
         driver.switchTo().alert();
         return true;
      } catch (NoAlertPresentException e) {
         return false;
      }
   }

   private String closeAlertAndGetItsText() {
      try {
         Alert alert = driver.switchTo().alert();
         String alertText = alert.getText();
         if (acceptNextAlert) {
            alert.accept();
         } else {
            alert.dismiss();
         }
         return alertText;
      } finally {
         acceptNextAlert = true;
      }
   }
}

这给了我 4 个错误(3 个用于注释,我可以删除它,一个用于方法failtearDown()的错误。这不是我非常关心的错误,我如何让这段代码实际执行?

谢谢!

4

3 回答 3

14

在 Eclipse 中运行 Selenium Java 代码的一个好方法是将它们作为JUnit 测试运行。

1. 在您的 Eclipse 中创建一个 Maven 项目。
如果您以前没有这样做过,请参阅:

2. 将以下依赖项添加到您的 pom.xml 文件中:

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.7</version>
    <scope>test</scope>
</dependency>    
<dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.25.0</version>           
</dependency>    
<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-firefox-driver</artifactId>
    <version>2.33.0</version>
</dependency> 
<dependency><groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-server</artifactId>
    <version>2.25.0</version>    
</dependency>

3. 将导出的 Java 文件复制到 Maven 项目中。

4. 将以下导入添加到文件中:

import static org.junit.Assert.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

5. 将 Java 文件作为 JUnit 测试运行,如下所示:

我的 Eclipse 中的示例(版本是 Kepler)

于 2013-08-28T16:22:53.173 回答
1

前面的答案都是合法的。但是要直接从 Eclipse 运行,您需要对代码进行一些修改。您不需要 public void main 来运行 junit 代码。因此,以下是使您能够复制代码并将其粘贴到 eclipse 中并作为 JUnit 测试运行的步骤:

  1. 在eclipse中安装JUnit->Help->eclipse market place->搜索JUnit并安装,重启eclipse。

  2. 在eclipse中创建一个项目和一个新包,然后创建一个与你的selenium IDE导出代码同名的新类,删除除包行之外的所有内容。

  3. 将代码从 selenium IDE 复制并粘贴到该类,删除 package 行。

  4. 右键单击您的代码区域并作为 JUnit 测试运行。

于 2016-01-25T17:14:16.910 回答
-1

我将 selenium 转换为 aj 单元测试的答案非常简单。

首先,您需要在透视工作台中设置代码,通过单击工具栏中的>转到显示的>然后按其中一个编辑器>您会看到Java编辑器或窗口编辑器等等,这将转换你的代码。然后按返回类并突出显示它,右键单击鼠标并将其作为 Java 应用程序运行。您应该能够看到您的设计/和源代码。再有问题

于 2015-03-23T09:29:00.140 回答