我使用 SeleniumHQ 记录了我的操作,然后将它们导出到 Java Unity WebDrive 。然后,我编辑了导出的代码,并添加了许多其他小东西,例如遍历数组,时间戳等。

我的代码执行以下操作:

  • 登录到我的网站。
  • 转到我的个人资料。
  • 删除我以前的公告。
  • 发布新公告。
  • 注销。

  • 我尝试使用FirefoxDriverHtmlUnitDriver,但是它们每个都给我这个奇怪的问题。我的代码开始执行工作,并在随机位置随机停止并永久卡在那里。

    例如,它可以登录->转到个人资料->删除上一个,然后停止,或者可以挂起在登录名中。我一遍又一遍地遍历这些步骤,而且我遍历的可能性也更大。

    第一个循环的成功率是90%,第二个循环的成功率是40%左右,等等。另外,我使用的Driver也会对此产生影响。它最有可能卡在HtmlUnitDriver上,我真的想使用HtmlUnitDrive,因为我想在Ubuntu Server上 headless 运行代码。

    还有其他人有类似的问题吗?

    编辑:现在,经过许多小时的测试,我注意到它仅挂起了HtmlUnitDriver而不挂起了Firefox。当使用Firefox时,我可以看到它在做什么,并且它在做应有的一切。 HtmlUnitDriver出现问题。

    这是代码本身:
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.concurrent.TimeUnit;
    import org.junit.*;
    import static org.junit.Assert.*;
    import org.openqa.selenium.*;
    import org.openqa.selenium.htmlunit.HtmlUnitDriver;
    
    public class WebUpdater {
    
        private WebDriver driver;
        private String baseUrl;
        private boolean acceptNextAlert = true;
        private StringBuffer verificationErrors = new StringBuffer();
    
        @Before
        public void setUp() throws Exception {
            driver = new HtmlUnitDriver(true); // JavaScript enabled.
    
            baseUrl = "http://exampleurl.com";
            driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
        }
    
        @Test
        public void testUnity() throws Exception {
            openAndLogin();
            gotoProfile();
            deletePreviousPost();
            uploadPost();
            logOut();
            System.out.println("Done!");
        }
    
        private void openAndLogin() {
            driver.get(baseUrl);
    
            driver.findElement(By.linkText("Login")).click();
            driver.findElement(By.id("jsid-login-id")).clear();
            driver.findElement(By.id("jsid-login-id")).sendKeys("[email protected]");
            driver.findElement(By.id("jsid-login-password")).clear();
            driver.findElement(By.id("jsid-login-password")).sendKeys("volume1991");
            driver.findElement(By.cssSelector("input.right")).click();
    
        }
    
        private void gotoProfile() {
            driver.findElement(By.cssSelector("img[alt=\"Profile\"]")).click();
        }
    
        private void deletePreviousPost() {
            try {
                driver.findElement(By.cssSelector("img[alt=\"ExampleName\"]")).click();
                driver.findElement(By.linkText("Delete")).click();
                assertTrue(closeAlertAndGetItsText().matches("^Confirm to delete this post[\\s\\S]$"));
            } catch (Exception e) {
                System.out.println(e);
            }
        }
    
        private void uploadPost() {
            driver.findElement(By.linkText("ExampleAction")).click();
            driver.findElement(By.id("example_url")).clear();
            driver.findElement(By.id("example_url")).sendKeys("Example text that gets typed in textfield.");
            driver.findElement(By.cssSelector("input[name=\"example\"]")).clear();
            driver.findElement(By.cssSelector("input[name=\"example\"]")).sendKeys("ExampleName");
            driver.findElement(By.linkText("ExampleAction2")).click();
            System.out.println("Done");
        }
    
        private void logOut() {
            driver.get("http://exampleurl.com/logout");
            System.out.println("Logged out.");
        }
    
        @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 String closeAlertAndGetItsText() {
            try {
                Alert alert = driver.switchTo().alert();
                if (acceptNextAlert) {
                    alert.accept();
                } else {
                    alert.dismiss();
                }
                return alert.getText();
            } finally {
                acceptNextAlert = true;
            }
        }
    }
    

    在我的主类中,我这样调用WebUpdater类:
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    
    
    public class Main {
    
        public static void main(String[] args) {
    
            Logger logger = Logger.getLogger("");
            logger.setLevel(Level.OFF);
    
            scan();
    
        }
    
        private static void scan() {
            while (true) {
                try {
                // Test if connection is available and target url is up.
                    URL url = new URL("http://exampleurl.com");
                    HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
                    urlConn.connect();
    
                // Start tests.
                    WebUpdater updater = new WebUpdater();
                    updater.setUp();
                    updater.testUnity();
                    updater.tearDown();
                } catch (Exception ex) {
                    System.out.println(ex);
                }
                try {
                    Thread.sleep(12000);
                } catch (InterruptedException e) {
                }
            }
        }
    }
    

    最佳答案

    我对HtmlUnitDriver的体验很糟糕。前一段时间,我编写了应该在Hudson解雇的测试框架,最后我决定使用更可预测且更易于调试的Firefox驱动程序。关键是,在我的情况下,这是一个页面,里面充满了JavaScript-动态加载的字段等,使用HtmlUnitDriver确实是一种蠕虫病毒。

    如果您确实需要使用HtmlUnitDriver,请尝试调试“pagesource”, Selenium 可以在“当前”(挂起)时访问。

    关于java - Selenium HtmlUnitDriver在随机位置随机挂起,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15180326/

    10-10 13:09