46 lines
1007 B
Markdown
46 lines
1007 B
Markdown
|
DIN-329 - Netherlands NCA Data Defects
|
||
|
|
||
|
# Summary
|
||
|
|
||
|
*Defect 1:*
|
||
|
|
||
|
The menu was using the wrong counter, which gets used later on for processing credit institutes. A new counter was added specifically for building the index.
|
||
|
|
||
|
```
|
||
|
[
|
||
|
[
|
||
|
"Statutory name",
|
||
|
"ABN AMRO Groenbank B.V."
|
||
|
],
|
||
|
[
|
||
|
"Trade name",
|
||
|
"ABN AMRO Groenbank B.V."
|
||
|
],
|
||
|
```
|
||
|
|
||
|
*Defect 2:*
|
||
|
|
||
|
Test created and returns the correct value. It could be possible that the page was updated between scraping and testing.
|
||
|
|
||
|
*Defect 3:*
|
||
|
|
||
|
The ID query string value is taken from the href link, and the first 8 characters are extracted as a short hash.
|
||
|
|
||
|
This short hash is added to the filename when it is created.
|
||
|
|
||
|
Statutory name checking is now implemented. If the name has ben used before, it will use the statuory name and the trade name, otherwise just the statutory name.
|
||
|
|
||
|
|
||
|
# Test Plan
|
||
|
|
||
|
```
|
||
|
|
||
|
# NL:: Scrape a Payment Instititute
|
||
|
...
|
||
|
# NL:: DIN-329 defects
|
||
|
# NL::Defect 2
|
||
|
ok 25 Extracted Details from Page correctly
|
||
|
|
||
|
|
||
|
```
|