casperjs

    0熱度

    1回答

    我正在使用casperJS自動填寫表單並測試網站的一些功能。 我需要填寫輸入字段,然後點擊Continue按鈕底部thsi頁面 http://www.snapdeal.com/checkout?cartId=9fe651cb-6a8d-4d18-b82f-d470ecfe05fd 填寫()casperJS的命令不會做同樣的。我能怎麼做 ?? PS:是否嘗試過對計算器等類似的問題給出解決方案,但沒有

    1熱度

    1回答

    我是CasperJs的新手。我有這個代碼,並想知道如何從getLog函數獲取日誌消息。 var casper = require('casper').create({ verbose: true, logLevel: "debug" }); function getLog() { console.log('inside getLog'); return

    4熱度

    1回答

    幾天前剛剛開始與CasperJS合作。 我今天創建了一個腳本來測試LocalStorage的行爲方式,以及我是否可以禁用它,因爲這是保持測試互不影響所必需的。 背景 我工作中的骨幹嚮導,要求在第一頁上的值。當您單擊繼續按鈕時,它將值保存到LocalStorage,然後將其顯示在第二頁上。 我使用casperjs test <script.js>有和沒有--local-storage-quota=0

    12熱度

    3回答

    是否有任何方便的方式將本地JSON文件加載到CasperJs變量中? 我看到有人建議使用 $.getJSON(filename, function() ...

    0熱度

    1回答

    我用代碼從以下鏈接登錄..它正常工作與Facebook的.. How to login into a website with CasperJS? ,但它給錯誤的登錄頁面的對象我的網站。 用戶名字段的名稱是LoginForm [用戶名]和 密碼字段的名稱是LoginForm [password]。 我的代碼。 casper.start(url, function() { // searc

    2熱度

    1回答

    運行casperjs當我在iron.io測試casperjs如本例 https://github.com/iron-io/iron_worker_examples/blob/master/binary/casperjs/googlelinks.js 但否認當iron_worker完成這個任務,它提供了一個錯誤信息 ./run.sh:2:./run.sh:casperjs /斌/ casperjs:

    1熱度

    1回答

    我有下面的代碼如預期 var casper = require('casper').create(); var myData; var utils = require('utils'); casper.start(); casper.then(function() { myData = {"source":"casperjs"}; utils.dump(myDat

    8熱度

    2回答

    昨天我用CasperJS寫了我的第一個測試,我發現它很棒。問題是,我無法找到退出腳本執行的方式(即:casperjs不存在,因此我可以訪問我的控制檯)。我已通過添加像這樣 casper.test.begin('Exit', function suite(test) { casper.exit(); }); 最後的測試對於這種技術找到了一個解決辦法我有2個問題 有沒有更好的辦法? 這

    3熱度

    1回答

    在採取截圖(捕獲)時,有沒有辦法在phantomjs中顯示鼠標光標? 我想下面使用移動鼠標到XY位置 sendEvent(mouseEventType[, mouseX, mouseY, button='left']) http://phantomjs.org/api/webpage/ 但我不知道是否行得通,因爲懸停效果並未出現。

    1熱度

    2回答

    這是我第一篇文章:) 我在學習CasperJS,我必須編寫腳本在網站上搜索所有img,並檢查網址。 我發現這個教程從vgaltes.com var imagesArray = []; function getImages() { var scripts = document.querySelectorAll('img[src]'); return Array.prototy