Skip to content

Commit

Permalink
LPD-17801 Fix balloon editor tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markocikos authored and brianchandotcom committed Mar 8, 2024
1 parent 9a51a16 commit ad0ef54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@

<tr>
<td>TOOLBAR_ANY_ITEM_BUTTON</td>
<td>//a[contains(@href,"${key_titleName}")]</td>
<td>//div[contains(@class, 'cke_balloontoolbar')]//a[contains(@href,"${key_titleName}")]</td>
<td></td>
</tr>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,37 +15,37 @@

<tr>
<td>BODY_TEXT</td>
<td>//*[contains(@class,'cke_editable')]//p[${paragraph_number}]</td>
<td>//div[contains(@id,'sampleBalloonEditor')]//p[${paragraph_number}]</td>
<td></td>
</tr>
<tr>
<td>BODY_TEXT_HYPERLINK</td>
<td>//*[contains(@class,'cke_editable')]//p[2]/a | //div[@class='portlet-body']//p/a</td>
<td>//div[contains(@id,'sampleBalloonEditor')]//p[2]/a</td>
<td></td>
</tr>
<tr>
<td>BODY_TEXT_CONTENT_BOLD</td>
<td>//*[contains(@class,'cke_editable')]//p//strong[contains(text(),'${key_textName}')]</td>
<td>//div[contains(@id,'sampleBalloonEditor')]//p//strong[contains(text(),'${key_textName}')]</td>
<td></td>
</tr>
<tr>
<td>BODY_TEXT_CONTENT_BULLET_LIST</td>
<td>//*[contains(@class,'cke_editable')]//ul/li[contains(text(),'${key_textName}')]</td>
<td>//div[contains(@id,'sampleBalloonEditor')]//ul/li[contains(text(),'${key_textName}')]</td>
<td></td>
</tr>
<tr>
<td>BODY_TEXT_CONTENT_ITALIC</td>
<td>//*[contains(@class,'cke_editable')]//p//em[contains(text(),'${key_textName}')]</td>
<td>//div[contains(@id,'sampleBalloonEditor')]//p//em[contains(text(),'${key_textName}')]</td>
<td></td>
</tr>
<tr>
<td>BODY_TEXT_CONTENT_UNDERLINE</td>
<td>//*[contains(@class,'cke_editable')]//p//u[contains(text(),'${key_textName}')]</td>
<td>//div[contains(@id,'sampleBalloonEditor')]//p//u[contains(text(),'${key_textName}')]</td>
<td></td>
</tr>
<tr>
<td>PARAGRAPH_CONTENT_NUMBERED_LIST</td>
<td>//*[contains(@class,'cke_editable')]//ol/li</td>
<td>//div[contains(@id,'sampleBalloonEditor')]//ol/li</td>
<td></td>
</tr>
<tr>
Expand Down

0 comments on commit ad0ef54

Please sign in to comment.