我試圖檢查一個URL輸入到目標字段的命令「checkUrl」是否有效或不使用JavaScript,但我不斷收到錯誤。在我測試的網站中列出了多個網頁,我需要驗證這些網頁是否已使用正確的名稱添加,甚至是否使用相對網址進行添加。硒IDE - 檢查404錯誤
Selenium.prototype.doCheckUrl = function(locator){
var request = new XMLHttpRequest();
request.open('GET', locator, true);
request.send();
if (request.status === "404") {
request.message = false ;
}
}