Skip to content
Snippets Groups Projects
Commit 989f3435 authored by Igor Markin's avatar Igor Markin
Browse files

Add explanation to failing case 09 in macos-mmacos

parent 85c63ec4
No related branches found
No related tags found
1 merge request!15Add READMEs for Outlook desktop cases
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
| 05 | Complex text on multiple lines with some text bold, italic, lists, no attachments | fail | - | - | | 05 | Complex text on multiple lines with some text bold, italic, lists, no attachments | fail | - | - |
| 06 | Multiple MIME attachments and text | ok | ok | ok | | 06 | Multiple MIME attachments and text | ok | ok | ok |
| 07 | Multiple Drive attachments and text | ok | ok | ok | | 07 | Multiple Drive attachments and text | ok | ok | ok |
| 08 | Complex email with formatted text, embedded images, MIME and GDrive attachments | - | - | - | | 08 | Complex email with formatted text, embedded images, MIME and GDrive attachments | fail | - | - |
| 09 | 2 replies with test case 01 | - | - | - | | 09 | 2 replies with test case 01 | fail | - | - |
| 10 | 2 replies with test case 02 | - | - | - | | 10 | 2 replies with test case 02 | - | - | - |
| 11 | 2 replies with test case 03 | - | - | - | | 11 | 2 replies with test case 03 | - | - | - |
| 12 | 2 replies with test case 04 | - | - | - | | 12 | 2 replies with test case 04 | - | - | - |
...@@ -61,3 +61,54 @@ Diff example: ...@@ -61,3 +61,54 @@ Diff example:
### 08 ### 08
HTML matching failure caused by combination of 03, 04 and 05 failures HTML matching failure caused by combination of 03, 04 and 05 failures
### 09
#### HTML
As a part of normalisation routine, we are getting rid of the QR codes.
This happens using HTML `id` attribute.
In normal case, a `div` with QR code looks like this:
```html
<div id="test-for-us">
<p class="MsoNormal">
<a
href="https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Foffice.test.vereign.com%2F%3Fq%3DCiBYx1IuGYgYTzhqNVrddWtwYWAeWhAcwBM2LxTlmudAjxIgU6ynQR39MnKsiLu1DDoaH8W0veYwWpacAs6XT-1SIGE%3D%26timestamp%3D1608738280784&amp;data=04%7C01%7C%7C0b01e377f850417ce94608d8a759c2bc%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637443351242842803%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=bmq5FE58MFOT13FV8yBqdK67jtlpPQx3MMOA0BsY4d4%3D&amp;reserved=0"
target="_blank"
>
<!--... qr code image-->
</a>
</p>
</div>
```
in broken reply case, wrapping `div` with specified id is gone
```html
<p
class="MsoNormal"
style="mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"
>
&nbsp;
</p>
<p
class="MsoNormal"
style="mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"
>
<a
href="https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Foffice.test.vereign.com%2F%3Fq%3DCiBYx1IuGYgYTzhqNVrddWtwYWAeWhAcwBM2LxTlmudAjxIgU6ynQR39MnKsiLu1DDoaH8W0veYwWpacAs6XT-1SIGE%3D%26timestamp%3D1608738280784&amp;data=04%7C01%7C%7Cb76d35214a2f4b89702b08d8a759f32b%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637443352054987160%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=BSX%2BqcTJvzH1ttGrGEbpVUziAbY2M9n0%2Bj8fegO2aaE%3D&amp;reserved=0"
originalsrc="https://office.test.vereign.com/?q=CiBYx1IuGYgYTzhqNVrddWtwYWAeWhAcwBM2LxTlmudAjxIgU6ynQR39MnKsiLu1DDoaH8W0veYwWpacAs6XT-1SIGE=&amp;timestamp=1608738280784"
shash="N0i50hBF8Axb3v+1JS8ML+yvp6JqV6yBvv2V+PNNba7XLnfRCXJq1ih59HpquliNJIaEtNG03pY32DmzAfBB/G/1OSiTPP2sTqlMzSYJmYBYjIUvhayhC4OfSw14RDZMlET6QO2GsCPZ8Rrc+6n/ZOrwAkVw6ffyRtupiVnHLLg="
target="_blank"
>
<!-- QR code image --> </a
><o:p></o:p>
</p>
```
### 10-17
Proceeding with rest cases will not have any effect unless problems stated above are fixed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment