|
45 | 45 | end |
46 | 46 |
|
47 | 47 | describe "#fill_in_rich_text" do |
48 | | - it "fills in a rich text area" do |
| 48 | + it "fills in a rich text area", skip_driver: :cuprite_chrome do |
49 | 49 | fill_in_rich_text "with label", with: "foo" |
50 | 50 | expect(page).to have_selector :rich_text, "with label", exact_text: "foo" |
51 | 51 | end |
52 | 52 |
|
53 | | - it "replaces text in a rich text area" do |
| 53 | + it "replaces text in a rich text area", skip_driver: :cuprite_chrome do |
54 | 54 | fill_in_rich_text "with label", with: "foo" |
55 | 55 | fill_in_rich_text "with label", with: "bar" |
56 | 56 | expect(page).to have_selector :rich_text, "with label", exact_text: "bar" |
|
62 | 62 | expect(page).to have_no_selector :rich_text, "with label", text: "foo" |
63 | 63 | end |
64 | 64 |
|
65 | | - it "fills in a rich text area without clearing" do |
| 65 | + it "fills in a rich text area without clearing", skip_driver: :cuprite_chrome do |
66 | 66 | fill_in_rich_text "with label", with: "foo" |
67 | 67 | fill_in_rich_text "with label", with: "bar", clear: false |
68 | 68 | expect(page).to have_selector :rich_text, "with label", exact_text: "foobar" |
|
108 | 108 | expect(page).to have_selector :rich_text, "with aria-labelledby", exact_text: "foo" |
109 | 109 | end |
110 | 110 |
|
111 | | - it "replaces text in a rich text area" do |
| 111 | + it "replaces text in a rich text area", skip_driver: :cuprite_chrome do |
112 | 112 | fill_in_rich_text "with aria-labelledby", with: "foo" |
113 | 113 | fill_in_rich_text "with aria-labelledby", with: "bar" |
114 | 114 | expect(page).to have_selector :rich_text, "with aria-labelledby", exact_text: "bar" |
|
158 | 158 | end |
159 | 159 | end |
160 | 160 |
|
161 | | - it "replaces text in a rich text area" do |
| 161 | + it "replaces text in a rich text area", skip_driver: :cuprite_chrome do |
162 | 162 | fill_in_rich_text "editable iframe", with: "foo" |
163 | 163 | fill_in_rich_text "editable iframe", with: "bar" |
164 | 164 | within_frame find(:rich_text, "editable iframe") do |
|
187 | 187 | end |
188 | 188 |
|
189 | 189 | describe "within_rich_text" do |
190 | | - context "when inline" do |
| 190 | + context "when inline", skip_driver: :cuprite_chrome do |
191 | 191 | it "works if called on page" do |
192 | 192 | fill_in_rich_text "with label", with: "foo" |
193 | 193 | within_rich_text("with label") do |
|
0 commit comments