This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const X2JS = require('x2js') | |
describe('Compare Random src and dst products', () => { | |
const destDomain = 'M1 SITE URL' | |
beforeEach(() => { | |
cy.request(destDomain + '/sitemap/sitemap.xml') | |
.its('body') | |
.then((body) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This script formats a magento product export file, and sets each | |
additional_attribute as a new column in a target file | |
""" | |
import csv | |
import pandas as pd | |
# testing files | |
# source_file = './importexport_605048471de17.csv' | |
# target_file = './importexport_605048471de177_formatted.csv' |