403 Access Denied on Macy's website
See original GitHub issueSteps to reproduce
Tell us about your environment:
- Puppeteer version: 1.3.0
- Platform / OS version: MacOS
- URLs (if applicable): https://www.macys.com/account/signin
- Node.js version: 8.2.1
What steps will reproduce the problem?
const browser = await puppeteer.launch({ headless: false })
const page = await browser.newPage()
await page.goto('https://www.macys.com/account/signin')
await page.type('#email', 'tester@tester.tester')
await page.type('#pw-input', 'testtest')
await page.click('#sign-in')
await page.waitFor(5000)
await browser.close()
- Go to Macy’s sign-in page
- Sign in with my test account
- Notice the Access Denied page afterwards
What is the expected result?
That I would be logged into Macy’s account and see my name “Test” in the top right like the below image.
What happens instead?
I’m presented with a 403 Access Denied page.
Issue Analytics
- State:
- Created 5 years ago
- Comments:6
Top Results From Across the Web
Macy's Website Access Denied - How to Fix? - Valibyte
Step 1: Visit the Macy's webpage where you experienced Access Denied error. Step 2: Click the lock icon next to the web address...
Read more >I am unable to access Macy's website. I get the following
I have tried to access Macy's Department Store from many different angles and keep getting the following: HTTP 403 forbidden.
Read more >Fix: Access Denied you don't have permission to ... - YouTube
If you get stuck with Access Denied message when opening a particular website, then its probably because there is some network-related issue ...
Read more >Can't access www.macys.com. Internet service provided by
Can't access www.macys.com. Internet service provided by Spectrum. Everything else works. Just being denied - Answered by a verified Tech ...
Read more >How do I fix "Access Denied" for a website? : r/firefox - Reddit
Do you mean an error number? What is the actual number? Is it 403 by any chance? Is the number an actual link?...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It looks like Macy’s is using fancy bot detection. I ended up following this tutorial and it helped solve my issues.
I noticed that setting
ignoreDefaultArgs: true
allows it to work. Specifically removing theenable-automation
flag as an argument allows it to work.