我对Selenium和XPath完全不熟悉。今天是我第一次尝试使用Selenium RC执行一个简单的脚本。请找到以下代码。
package com.rcdemo;
import org.junit.Test;
import org.openqa.selenium.By;
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.Selenium;
public class MathTest {
@SuppressWarnings("deprecation")
public static void main(String[] args) throws InterruptedException {
//Instatiate the RC Server
Selenium selenium = new DefaultSelenium("localhost", 4444 , "*firefox C:/Program Files (x86)/Mozilla Firefox/firefox.exe", "http://www.calculator.net");
selenium.start(); // Start
selenium.open("/"); // Open the URL
selenium.windowMaximize();
// Click on Link Math Calculator
selenium.click("xpath=.//*[@id='menu']/div[3]/a");
Thread.sleep(4500); // Wait for page load
// Click on Link Percent Calculator
selenium.click("xpath=//*[@id='content']/ul/li[3]/a");
Thread.sleep(4000); // Wait for page load
// Focus on text Box
selenium.focus("name=cpar1");
// enter a value in Text box 1
selenium.type("css=input[name=\"cpar1\"]", "10");
// enter a value in Text box 2
selenium.focus("name=cpar2");
selenium.type("css=input[name=\"cpar2\"]", "50");
// Click Calculate button
selenium.click("xpath=.//*[@id='content']/table/tbody/tr/td[2]/input");
// verify if the result is 5
String result = selenium.getText("//*[@id='content']/p[2]/span/font/b");
System.out.println(result);
if (result == "5") {
System.out.println("Pass");
} else {
System.out.println("Fail");
}
}
}
问题是在执行上述代码时,异常发生在getText()
行。我从Google Chrome的开发者工具中复制了XPath。即使我手动检查一次,也会显示相同的XPath。我试图从今天早上找到解决方案。如何让Selenium找到元素?
PS:在结果变量中,我必须在计算后捕获结果。例如10%50 = 5.这个我需要捕获。
答案 0 :(得分:1)
您需要等待“结果”填充。
以下是更新的代码段,它应该适合您:
//add this line
if (!selenium.isElementPresent("//*[@id='content']/p[2]/span/font/b")){
Thread.sleep(2000);
}
// verify if the result is 5
String result = selenium.getText("//*[@id='content']/p[2]/span/font/b");
System.out.println(result);
//update this line
if (result.trim().equals("5"))
{
System.out.println("Pass");
}else
{
System.out.println("Fail");
}
您需要使用.equals
方法来比较两个字符串值。
注意 - 更好的方法是用动态等待方法替换Thread.sleep,例如waitForPageToLoad,waitForElementPresent(自定义方法)等......