找高手解决 selenium rc 的问题
我在测的时候 打开一个新页面,填写文本时总出错。 不知道哪里的原因,java代码如下,可以运行下帮我找下原因,我初学。import com.thoughtworks.selenium.SeleneseTestCase;
public class Addcustomer extends SeleneseTestCase{
public void testUntitled() throws Exception {
selenium.open("http://purple-dev/bugfree/Login.php");
selenium.type("TestUserName", "wangxiangyong");
selenium.type("TestUserPWD", "123456");
selenium.click("SubmitLoginBTN");
selenium.waitForPageToLoad("3000");
selenium.selectFrame("NavFrame");
selenium.click("OpenBug");
selenium.selectFrame("relative=up");
selenium.type("BugTitle", "test1");
selenium.selectFrame("NavFrame");
selenium.click("link=[退出]");
selenium.waitForPageToLoad("30000");
}
} 有可能是这地方出问题:
1. selenium.waitForPageToLoad("3000");
把Timeout设置成30000试试看,waitForPageToLoad("3000")和Thread.Sleep(3000)的效果貌似不一样的哦
:)
2. 有可能selectFrame的问题,偶晚上回去试试看~
[ 本帖最后由 欺负人 于 2009-12-15 15:32 编辑 ]
不是那里哦
报错的地方时在倒数第4行那里, selenium.type("BugTitle", "test1");com.thoughtworks.selenium.SeleniumException: ERROR: Element BugTitle not found
at com.thoughtworks.selenium.HttpCommandProcessor.throwAssertionFailureExceptionOrError(HttpCommandProcessor.java:97)
at com.thoughtworks.selenium.HttpCommandProcessor.doCommand(HttpCommandProcessor.java:91)
at com.thoughtworks.selenium.DefaultSelenium.type(DefaultSelenium.java:291)
at Addcustomer.testUntitled(Addcustomer.java:15)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at junit.framework.TestCase.runTest(TestCase.java:154)
at junit.framework.TestCase.runBare(TestCase.java:127)
at com.thoughtworks.selenium.SeleneseTestCase.runBare(SeleneseTestCase.java:212)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:118)
at junit.framework.TestSuite.runTest(TestSuite.java:208)
at junit.framework.TestSuite.run(TestSuite.java:203)
at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) 恩~~呵呵, 我也猜是第那一行出的问题~~呵呵:)
补充一句 你能把Exception的信息抓出来吗?
1. 你用这个命令"java -jar selenium-server.jar -interactive -multiWindow" 重新启动一下Server,试试看,Selenium.type本身没什么问题,我觉得 我估计前面可能是因为Selenium抓不到Frame引起的Exception
2.你可以用Selenium.open("$New Frame URl")代替这一行selenium.selectFrame("NavFrame"),试试看
[ 本帖最后由 欺负人 于 2009-12-15 16:14 编辑 ] 等下试试看, 我也觉得是 frame 没有抓到 还是不行啊 file:///C:/Documents%20and%20Settings/Administrator/桌面/a.png
命令行里的 信息图片不显示在附件有
盼高手指点。
[ 本帖最后由 linyucc 于 2009-12-16 11:01 编辑 ]
最好把你测试的页面源码贴出来
最好把你测试的页面源码贴出来,不然这样看不出个所以然,都不知道为什么BugTitle这个元素找不到,是frame没设对还是别的什么原因源代码1
11111[ 本帖最后由 linyucc 于 2009-12-16 16:25 编辑 ]
源代码2
22222[ 本帖最后由 linyucc 于 2009-12-16 16:25 编辑 ]
源代码3
333333[ 本帖最后由 linyucc 于 2009-12-16 16:25 编辑 ] 这些够了吧 文本ID 应该是对的
回复 1# 的帖子
试试 selenium.selectFrame("relative=up"); 后select openbug所在的Frame。 楼上的意思不明白,能详细点吗 贴了不少,但是还是看不清页面结构,你自己可以用firebug查看页面看看,到底如何结构,如果这个就是你的页面,你可以试试selenium.selectFrame("relative=top"); 然后在做type,如果id是唯一的,selenium应该能找到,如果是在这个页面内的话。否则就用firebug查看明确这个input所在的frame的id或者name,在select过去,试试看。
如果页面显示的所谓frame实际都是div来实现的话,应该不用做selectframe的操作,用id或xpath就可以操作元素了。嵌套iframe的话就有点麻烦。解决你这问题,最好是能在你的测试环境下进行调试,这个只有你自己多试试了。
从你的代码猜测:你有selectFrame(“NavFrame”),应该是导航条Frame的话,那你在selenium.selectFrame("relative=up")或selenium.selectFrame("relative=top")后,在加一句selectFrame(“BugMain”);,然后在type操作试试看。 补充一下:selectFrame(“BugMain”)有没这个Frame我不知道,因为看不全你的页面,但是就像shanxi所说的,如果没有所谓的main Frame你就select回openbug所在的那个Frame试试看,这个Frame应该有的,但这里看不出它的名称。 现在确定是 frame 没有抓到。
是点了按钮后 打开第2个页面时 抓不到frame,我看了第2个页面的源代码 没有frame。见附件2
附件1 是第1个页面的代码 :lol ~~~It seems that 我的猜测是对的!~::) 我晕,你这是点击后弹出了新页面,你把firefox设置成每次打开用新窗口,你就会看到你打开了一个新ff浏览器了,你要selectWindow到那个打开的新ff浏览器窗口,然后在进行操作,而不是selectFrame,它不是个frame。 selectwindow怎么用?
selenium.selectWindow(""); ??
页:
[1]
2