什麼原因導致此線索的任何線索?selenium.open(「/」);生成一個XHR 500:內部服務器錯誤
0
A
回答
0
謝謝。得到了solution..For誰在這個問題偶然任何其他人,這裏是解決方案:
更換setUp(...)
與
Integer port = 4444;
String browserString= "*firefox";
String url = "http://yoururl.com";
selenium = new DefaultSelenium("localhost",port,browserString,url) {
public void open(String url) { commandProcessor.doCommand("open", new String[] {url,"true"});};
selenium.start();
1
這是Selenium RC 1.0.3中的一個已知問題。細節可以在這裏找到:http://code.google.com/p/selenium/issues/detail?id=408
爲1.0.3的解決方法是用一個經過一個布爾如設定爲true
第二個參數超負荷open
命令。
或者,您可以等待發布新版本,但是大多數開發工作都集中在Selenium 2上。目前使用的是alpha版本,而最新版本(2.0a4)沒有此問題。
1
這一次,我在Java中工作。 如果URL(如testurl)顯示XHR響應代碼500內部服務器錯誤,則不要使用selenium.open命令打開該URL。相反,請嘗試selenium.openWindow
。這樣的事情:
selenium.open("http://google.com"); //or any site that will open without an error
selenium.openWindow(testurl,"18");
selenium.selectWindow("18");
selenium.selectWindow("Google"); //or the window title of the site from step 1 above
selenium.close();
selenium.selectWindow("18");
相關問題
- 1. CakePHP的500內部服務器錯誤
- 2. 的.htaccess 500內部服務器錯誤
- 3. mysqli的查詢生成500內部服務器錯誤
- 4. 上傳:500內部服務器錯誤
- 5. 500內部服務器錯誤 - htaccess的
- 6. 500內部服務器錯誤
- 7. 500內部服務器錯誤
- 8. ActiveResource 500內部服務器錯誤
- 9. 500內部服務器錯誤導致
- 10. Apache2 RewriteRule 500內部服務器錯誤
- 11. 內部服務器錯誤500 Shopware 5.2
- 12. 隨機內部500服務器錯誤
- 13. 500內部服務器錯誤scrapy
- 14. phpmyadmin,500內部服務器錯誤
- 15. PHP Imagick- 500內部服務器錯誤
- 16. 內部服務器錯誤500安裝
- 17. AJAX內部服務器錯誤500
- 18. 500內部服務錯誤
- 19. 500內部服務器錯誤Laravel
- 20. 瓶頸內部服務器錯誤500
- 21. AJAX 500內部服務器錯誤
- 22. 500內部服務器錯誤的Heroku
- 23. HTTP 500內部服務器錯誤
- 24. .htaccess RewriteRule 500內部服務器錯誤
- 25. 調試500內部服務器錯誤
- 26. 500內部服務器錯誤.htaccess codeigniter
- 27. VHost&htaccess - 500內部服務器錯誤
- 28. 遠程服務器返回一個錯誤:(500)內部服務器錯誤
- 29. .ashx - 遠程服務器返回一個錯誤:(500)內部服務器錯誤
- 30. PHPmailer - 500內部服務器錯誤
你可以給你更多的信息 - 堆棧跟蹤,從你的測試案例摘錄?你有沒有調用selenium.setUp(url,browser)?你是否啓動Selenium服務器? Selenium會拋出這個錯誤,還是Selenium在嘗試訪問URL時得到的Web服務器錯誤? – Domchi 2010-06-18 18:35:08