editablegrid.net を使用します。レイアウトと機能が本当に好きです。唯一の問題は機能テストです。カピバラでは何も動作していないようです - ページ スナップは実際のグリッドのページ コンテンツを表示しません。マッチャーは js でレンダリングされたコンテンツを表示しません。
カピバラのサポートは mac os x にはまだないようなので、古いファントム (v1.9.2) を使用する必要があります。
運機能のテストを行った人はいますか?
試したこと
- ページの更新: page.driver.browser.navigate.refresh
- ロード用のターボリンクイベントを使用してオンになっていることを確認しました
- セレンとポルターガイストを試した
セットアップの詳細
バージョン
rails 4.1.0
capybara (2.9.1)
rspec (3.5.0)
phantomjs 192
selenium-webdriver (2.53.4)
poltergeist (1.5.1)
capybara (~> 2.1)
cliver (~> 0.3.1)
multi_json (~> 1.0)
websocket-driver (>= 0.2.0)
$ phantomjs -v
1.9.2
更新 されたバージョンの更新
$ phantomjs -v
2.1.1
$ gem list | grep polter
poltergeist (1.10.0)
$ selenium-webdriver (2.53.4)
ただし、簡単なテストを行うと
visit 'address_books/'+user.address_book.id.to_s
page.save_screenshot("file1.png", :full => true)
sleep 4.seconds # just in case the delayed redraw takes time
page.save_screenshot("file2.png", :full => true)
expect(page).to have_content(/Person A.*2 8888 9999.*home/)
このページには、editablegrid
開発中に正常に動作する が含まれています (サンプル スクリーン ショット ( http://imgbox.com/rqwx1vHe ) を参照) は、保存されたスクリーン ショット ( http://imgbox.com/t1CG6hQa )でレンダリングされません。
その他の注意事項
- セレンも試しましたが、同じ問題です。グリッドが表示されないことは明らかです。
- イベントにターボリンクの読み込みを使用して、ページの読み込みをトリガーしました。
グリッドコード
var editableGrid = null;
$(document).on('turbolinks:load', function() {
editableGrid = new EditableGrid("AddressBookGridJSON");
editableGrid.tableLoaded = function() { this.renderGrid("tablecontent", "testgrid"); };
editableGrid.loadJSON('/address_books.json');
// $.getJSON('/address_books.json', function(json) {
// editableGrid.load({"metadata": json.metadata, "data": json.data});
// console.log(editableGrid);
// });
});
更新 2
index.json.jbuilder
json.set! :metadata do
json.array! @address_book.generate_view_table_meta_data
end
json.set! :data do
json.array! @contacts do |contact|
json.id contact.id
json.set! :values do
json.name contact.name
json.phone_number contact.get_presentation_number
json.phone_type contact.get_humanize_phone_type
json.action contact.get_url_to_view_delete
end
end
end
更新 3
データベースクリーナーコードがロードされました
require 'database_cleaner' RSpec.configure do |config| config.before(:each) do DatabaseCleaner.clean_with(:truncation) end
config.before(:each) do
#DatabaseCleaner.strategy = :transaction
# if we use transaction the data is NOT saved during the actual rspec scenario. we must have commit
# during rspec so external compare processs can access data
# TODO make this conditional based on the compare plans process only
# tests will not have :nontransactional defined except compareplans testing
if self.class.metadata[:nontransactional]
DatabaseCleaner.strategy = :truncation
else
DatabaseCleaner.strategy = :transaction
end
end
config.before(:each, :js => true) do
DatabaseCleaner.strategy = :truncation
end
config.before(:each) do
DatabaseCleaner.start
end
config.append_after(:each) do
DatabaseCleaner.clean
end
end