-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failing at Redirect #1681
Comments
Could you try running the current workarounds, specifically about "environment variables" with corporate proxy as outlined in #1469 and let me know if this resolved your issue? |
I have no_proxy set in environment and in my project... could it be something else? |
@jasonellington are you specifically having problems on localhost subdomains? |
@bkucera although i havent tried it on a regular domain, i was not having this problem until recently. No significant changes to my cypress code were made, however there were a few commits to our develop branch that i merged in to my testing branch... I am testing a e-commerce process where someone is adding a product to their cart. In my local environment i cannot get passed the homepage and filling out a form and browsing products... however if i used our uat.website.com (external site) i can get further along the shopping process but the same behavior still occurs... I am unsure if this information helps but I am very stuck on this problem |
@jennifer-shehane @bkucera it('test 1', function() {
cy.visit('http://docker.localhost.website.com:8000/')
cy.get('#button').click()
cy.get('#product').select('product_1')
cy.get('#zipcode').type('10003').
//failing after this call
cy.get('#form').submit().debug()
cy.get('#age').select('60')
}) here is a statement in the log of the debug on the command line that looks suspicious
|
This message just means that you did not pass anything to the |
@jennifer-shehane is there any configuration or project configuration that could be causing the weird functionality? Anything I can look for in the logs? Does Cypress proxy all traffic even if my url is in my no_proxy configuration? |
Since this issue hasn't had activity in a while, we'll close the issue until we can confirm this is still happening. Please comment if there is new information to provide concerning the original issue and we'd be happy to reopen. |
Current behavior:
I am accessing my local project at http://drupal.docker.localhost.website.com:8000/ and then I am doing a form submission. Upon form submission it goes to another url (same domain) http://drupal.docker.localhost.website.com:8000/after/form/submit and instead of staying on the page, it suddenly goes to the page with "Sorry, there are no test to run"
a few notes
The text was updated successfully, but these errors were encountered: