ERR_TOO_MANY_REDIRECTS error while trying to login through a webpage that uses frames and Javascript using Selenium and PythonHow to use Python to login to a webpage and retrieve cookies for later usage?Error trying to login to webpage using selenium with pythonPython selenium error when trying to launch firefoxScrape text from site with passwordScraping webpage with selenium (python)Google Chrome: Saved password does not allow to login the first timePython Automated Login using RequestsSelenium browser usernamd and password popups - unable to handle (Java)Scraping Table using Python and SeleniumSET ERROR IGNORE Python selenium

What organs or modifications would be needed for an animal not to require sleep?

Parallel resistance in electric circuits

Is there a reliable way to hide/convey a message in vocal expressions (speech, song,...)

How to stabilise the bicycle seatpost and saddle when it is all the way up?

What are uses of the byte after BRK instruction on 6502?

Why is my fire extinguisher emptied after one use?

Do ibuprofen or paracetamol cause hearing loss?

2000s space film where an alien species has almost wiped out the human race in a war

How can I discourage sharing internal API keys within a company?

Double it your way

Bash, import output from command as command

Does my opponent need to prove his creature has morph?

Should I leave the first authorship of our paper to the student who did the project whereas I solved it?

How do email clients "send later" without storing a password?

A shy person in a queue

Percentage buffer around multiline in QGIS?

What exactly is a marshrutka (маршрутка)?

What is the derivative of an exponential function with another function as its base?

Why is the T-1000 humanoid?

Why does the speed of sound decrease at high altitudes although the air density decreases?

Can a warforged druid use composite plating?

"Literally" Vs "In the true sense of the word"

Is the Dodge action perceptible to other characters?

How does a simple logistic regression model achieve a 92% classification accuracy on MNIST?



ERR_TOO_MANY_REDIRECTS error while trying to login through a webpage that uses frames and Javascript using Selenium and Python


How to use Python to login to a webpage and retrieve cookies for later usage?Error trying to login to webpage using selenium with pythonPython selenium error when trying to launch firefoxScrape text from site with passwordScraping webpage with selenium (python)Google Chrome: Saved password does not allow to login the first timePython Automated Login using RequestsSelenium browser usernamd and password popups - unable to handle (Java)Scraping Table using Python and SeleniumSET ERROR IGNORE Python selenium






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I am trying to automate my login to a webpage to download a daily xml. I understand that I need to have the actual frame url I think is



http://shop.braintrust.gr/shop/store/customerauthenticateform.asp



I examine the form and the fields and I do the following



browser = webdriver.Chrome('C:\chromedriver.exe')
browser.get('http://shop.braintrust.gr/shop/store/customerauthenticateform.asp')
print('Browser Opened')
username = browser.find_element_by_name('UserID')
username.send_keys(email)
password = browser.find_element_by_name('password')
# time.sleep(2)
password.send_keys(pwd)


but I get a blank page saying that browser did a lot of redirections this means that it is impossible to login?
How can I login?
thank you










share|improve this question


























  • please provide html code.

    – Dhru 'soni
    Mar 28 at 10:23






  • 1





    You can open the url I provided to see the whole html please

    – user10358702
    Mar 28 at 10:23











  • try to post to url shop.braintrust.gr/shop/store/customerauthenticateexec.asp with requests library: UserID: gdfs password: gdfgds password1: lianiki:

    – cem
    Mar 28 at 10:31

















1















I am trying to automate my login to a webpage to download a daily xml. I understand that I need to have the actual frame url I think is



http://shop.braintrust.gr/shop/store/customerauthenticateform.asp



I examine the form and the fields and I do the following



browser = webdriver.Chrome('C:\chromedriver.exe')
browser.get('http://shop.braintrust.gr/shop/store/customerauthenticateform.asp')
print('Browser Opened')
username = browser.find_element_by_name('UserID')
username.send_keys(email)
password = browser.find_element_by_name('password')
# time.sleep(2)
password.send_keys(pwd)


but I get a blank page saying that browser did a lot of redirections this means that it is impossible to login?
How can I login?
thank you










share|improve this question


























  • please provide html code.

    – Dhru 'soni
    Mar 28 at 10:23






  • 1





    You can open the url I provided to see the whole html please

    – user10358702
    Mar 28 at 10:23











  • try to post to url shop.braintrust.gr/shop/store/customerauthenticateexec.asp with requests library: UserID: gdfs password: gdfgds password1: lianiki:

    – cem
    Mar 28 at 10:31













1












1








1








I am trying to automate my login to a webpage to download a daily xml. I understand that I need to have the actual frame url I think is



http://shop.braintrust.gr/shop/store/customerauthenticateform.asp



I examine the form and the fields and I do the following



browser = webdriver.Chrome('C:\chromedriver.exe')
browser.get('http://shop.braintrust.gr/shop/store/customerauthenticateform.asp')
print('Browser Opened')
username = browser.find_element_by_name('UserID')
username.send_keys(email)
password = browser.find_element_by_name('password')
# time.sleep(2)
password.send_keys(pwd)


but I get a blank page saying that browser did a lot of redirections this means that it is impossible to login?
How can I login?
thank you










share|improve this question
















I am trying to automate my login to a webpage to download a daily xml. I understand that I need to have the actual frame url I think is



http://shop.braintrust.gr/shop/store/customerauthenticateform.asp



I examine the form and the fields and I do the following



browser = webdriver.Chrome('C:\chromedriver.exe')
browser.get('http://shop.braintrust.gr/shop/store/customerauthenticateform.asp')
print('Browser Opened')
username = browser.find_element_by_name('UserID')
username.send_keys(email)
password = browser.find_element_by_name('password')
# time.sleep(2)
password.send_keys(pwd)


but I get a blank page saying that browser did a lot of redirections this means that it is impossible to login?
How can I login?
thank you







javascript python selenium iframe web-scraping






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 28 at 12:13









DebanjanB

60.2k16 gold badges63 silver badges117 bronze badges




60.2k16 gold badges63 silver badges117 bronze badges










asked Mar 28 at 10:21







user10358702






















  • please provide html code.

    – Dhru 'soni
    Mar 28 at 10:23






  • 1





    You can open the url I provided to see the whole html please

    – user10358702
    Mar 28 at 10:23











  • try to post to url shop.braintrust.gr/shop/store/customerauthenticateexec.asp with requests library: UserID: gdfs password: gdfgds password1: lianiki:

    – cem
    Mar 28 at 10:31

















  • please provide html code.

    – Dhru 'soni
    Mar 28 at 10:23






  • 1





    You can open the url I provided to see the whole html please

    – user10358702
    Mar 28 at 10:23











  • try to post to url shop.braintrust.gr/shop/store/customerauthenticateexec.asp with requests library: UserID: gdfs password: gdfgds password1: lianiki:

    – cem
    Mar 28 at 10:31
















please provide html code.

– Dhru 'soni
Mar 28 at 10:23





please provide html code.

– Dhru 'soni
Mar 28 at 10:23




1




1





You can open the url I provided to see the whole html please

– user10358702
Mar 28 at 10:23





You can open the url I provided to see the whole html please

– user10358702
Mar 28 at 10:23













try to post to url shop.braintrust.gr/shop/store/customerauthenticateexec.asp with requests library: UserID: gdfs password: gdfgds password1: lianiki:

– cem
Mar 28 at 10:31





try to post to url shop.braintrust.gr/shop/store/customerauthenticateexec.asp with requests library: UserID: gdfs password: gdfgds password1: lianiki:

– cem
Mar 28 at 10:31












1 Answer
1






active

oldest

votes


















1
















ERR_TOO_MANY_REDIRECTS



ERR_TOO_MANY_REDIRECTS (also known as a redirect loop) is one of the regular website errors. Typically this error occurs after a recent change to your website, a mis-configuration of redirects on your server or wrong settings with third-party services.



This error have no relation with Selenium as such and can be reproduced through Manual Steps.



The reason for ERR_TOO_MANY_REDIRECTS is that, something is causing your website to go into an infinite redirection loop. Essentially the site is stuck (such as URL 1 points to URL 2 and URL 2 points back to URL 1, or the domain has redirected you too many times) and unlike some other errors, these rarely resolve themselves and will probably need you to take action to fix it. There are a couple different variations of this error depending upon the browser you’re running.




Solution



Some common approach to check and fix the error as as follows:




  • Delete Cookies on That Specific Site: Google and Mozilla both in fact recommends right below the error to try clearing your cookies. Cookies can sometimes contain faulty data in which could cause the ERR_TOO_MANY_REDIRECTS error. This is one recommendation you can try even if you’re encountering the error on a site you don’t own. Due to the fact that cookies retain your logged in status on sites and other settings, in these cases simply deleting the cookie(s) on the site that is having the problem. This way you won’t impact any of your other sessions or websites that you frequently visit.


  • Clear Browser Cache: If you want to check and see if it might be your browser cache, without clearing your cache, you can always open up your browser in incognito mode. Or test another browser and see if you still see the ERR_TOO_MANY_REDIRECTS error.


  • Determine Nature of Redirect Loop: If clearing the cache didn’t work, then you’ll want to see if you can determine the nature of the redirect loop. For example, if a site has a 301 redirect loop back to itself, which is causing a large chain of faulty redirects. You can follow all the redirects and determine whether or not its looping back to itself, or perhaps is an HTTP to HTTPS loop.


  • Check Your HTTPS Settings: Another thing to check is your HTTPS settings. A lot of times it is observed ERR_TOO_MANY_REDIRECTS occur when someone has just migrated their WordPress site to HTTPS and either didn’t finish or setup something incorrectly.


  • Check Third-Party Services: ERR_TOO_MANY_REDIRECTS is also often commonly caused by reverse-proxy services such as Cloudflare. This usually happens when their Flexible SSL option is enabled and you already have an SSL certificate installed with your WordPress host. Why? Because, when flexible is selected, all requests to your hosting server are sent over HTTP. Your host server most likely already has a redirect in place from HTTP to HTTPS, and therefore a redirect loop occurs.


  • Check Redirects on Your Server: Besides HTTP to HTTPS redirects on your server, it can be good to check and make sure there aren’t any additional redirects setup wrong. For example, one bad 301 redirect back to itself could take down your site. Usually, these are found in your server’s config files.





share|improve this answer



























  • this is not working we have the same issue

    – user10358702
    Mar 28 at 10:43











  • @Nikos Checkout my answer update and let me know your thoughts

    – DebanjanB
    Mar 28 at 12:25











  • If I understood correctly some of these are things that an administrator should do? I am the user, the case of wordpress I think is not the case. So is my code wrong? should I include something else?

    – user10358702
    Mar 28 at 13:31











  • @Nikos Not some but all the actions are from from system administrator side. It would be too early to comment on your code unless we can observe the HTML of the website. But as you mentioned about iframe and JavaScript, WebDriverWait seems inevitable.

    – DebanjanB
    Mar 28 at 13:36











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55395181%2ferr-too-many-redirects-error-while-trying-to-login-through-a-webpage-that-uses-f%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown
























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1
















ERR_TOO_MANY_REDIRECTS



ERR_TOO_MANY_REDIRECTS (also known as a redirect loop) is one of the regular website errors. Typically this error occurs after a recent change to your website, a mis-configuration of redirects on your server or wrong settings with third-party services.



This error have no relation with Selenium as such and can be reproduced through Manual Steps.



The reason for ERR_TOO_MANY_REDIRECTS is that, something is causing your website to go into an infinite redirection loop. Essentially the site is stuck (such as URL 1 points to URL 2 and URL 2 points back to URL 1, or the domain has redirected you too many times) and unlike some other errors, these rarely resolve themselves and will probably need you to take action to fix it. There are a couple different variations of this error depending upon the browser you’re running.




Solution



Some common approach to check and fix the error as as follows:




  • Delete Cookies on That Specific Site: Google and Mozilla both in fact recommends right below the error to try clearing your cookies. Cookies can sometimes contain faulty data in which could cause the ERR_TOO_MANY_REDIRECTS error. This is one recommendation you can try even if you’re encountering the error on a site you don’t own. Due to the fact that cookies retain your logged in status on sites and other settings, in these cases simply deleting the cookie(s) on the site that is having the problem. This way you won’t impact any of your other sessions or websites that you frequently visit.


  • Clear Browser Cache: If you want to check and see if it might be your browser cache, without clearing your cache, you can always open up your browser in incognito mode. Or test another browser and see if you still see the ERR_TOO_MANY_REDIRECTS error.


  • Determine Nature of Redirect Loop: If clearing the cache didn’t work, then you’ll want to see if you can determine the nature of the redirect loop. For example, if a site has a 301 redirect loop back to itself, which is causing a large chain of faulty redirects. You can follow all the redirects and determine whether or not its looping back to itself, or perhaps is an HTTP to HTTPS loop.


  • Check Your HTTPS Settings: Another thing to check is your HTTPS settings. A lot of times it is observed ERR_TOO_MANY_REDIRECTS occur when someone has just migrated their WordPress site to HTTPS and either didn’t finish or setup something incorrectly.


  • Check Third-Party Services: ERR_TOO_MANY_REDIRECTS is also often commonly caused by reverse-proxy services such as Cloudflare. This usually happens when their Flexible SSL option is enabled and you already have an SSL certificate installed with your WordPress host. Why? Because, when flexible is selected, all requests to your hosting server are sent over HTTP. Your host server most likely already has a redirect in place from HTTP to HTTPS, and therefore a redirect loop occurs.


  • Check Redirects on Your Server: Besides HTTP to HTTPS redirects on your server, it can be good to check and make sure there aren’t any additional redirects setup wrong. For example, one bad 301 redirect back to itself could take down your site. Usually, these are found in your server’s config files.





share|improve this answer



























  • this is not working we have the same issue

    – user10358702
    Mar 28 at 10:43











  • @Nikos Checkout my answer update and let me know your thoughts

    – DebanjanB
    Mar 28 at 12:25











  • If I understood correctly some of these are things that an administrator should do? I am the user, the case of wordpress I think is not the case. So is my code wrong? should I include something else?

    – user10358702
    Mar 28 at 13:31











  • @Nikos Not some but all the actions are from from system administrator side. It would be too early to comment on your code unless we can observe the HTML of the website. But as you mentioned about iframe and JavaScript, WebDriverWait seems inevitable.

    – DebanjanB
    Mar 28 at 13:36
















1
















ERR_TOO_MANY_REDIRECTS



ERR_TOO_MANY_REDIRECTS (also known as a redirect loop) is one of the regular website errors. Typically this error occurs after a recent change to your website, a mis-configuration of redirects on your server or wrong settings with third-party services.



This error have no relation with Selenium as such and can be reproduced through Manual Steps.



The reason for ERR_TOO_MANY_REDIRECTS is that, something is causing your website to go into an infinite redirection loop. Essentially the site is stuck (such as URL 1 points to URL 2 and URL 2 points back to URL 1, or the domain has redirected you too many times) and unlike some other errors, these rarely resolve themselves and will probably need you to take action to fix it. There are a couple different variations of this error depending upon the browser you’re running.




Solution



Some common approach to check and fix the error as as follows:




  • Delete Cookies on That Specific Site: Google and Mozilla both in fact recommends right below the error to try clearing your cookies. Cookies can sometimes contain faulty data in which could cause the ERR_TOO_MANY_REDIRECTS error. This is one recommendation you can try even if you’re encountering the error on a site you don’t own. Due to the fact that cookies retain your logged in status on sites and other settings, in these cases simply deleting the cookie(s) on the site that is having the problem. This way you won’t impact any of your other sessions or websites that you frequently visit.


  • Clear Browser Cache: If you want to check and see if it might be your browser cache, without clearing your cache, you can always open up your browser in incognito mode. Or test another browser and see if you still see the ERR_TOO_MANY_REDIRECTS error.


  • Determine Nature of Redirect Loop: If clearing the cache didn’t work, then you’ll want to see if you can determine the nature of the redirect loop. For example, if a site has a 301 redirect loop back to itself, which is causing a large chain of faulty redirects. You can follow all the redirects and determine whether or not its looping back to itself, or perhaps is an HTTP to HTTPS loop.


  • Check Your HTTPS Settings: Another thing to check is your HTTPS settings. A lot of times it is observed ERR_TOO_MANY_REDIRECTS occur when someone has just migrated their WordPress site to HTTPS and either didn’t finish or setup something incorrectly.


  • Check Third-Party Services: ERR_TOO_MANY_REDIRECTS is also often commonly caused by reverse-proxy services such as Cloudflare. This usually happens when their Flexible SSL option is enabled and you already have an SSL certificate installed with your WordPress host. Why? Because, when flexible is selected, all requests to your hosting server are sent over HTTP. Your host server most likely already has a redirect in place from HTTP to HTTPS, and therefore a redirect loop occurs.


  • Check Redirects on Your Server: Besides HTTP to HTTPS redirects on your server, it can be good to check and make sure there aren’t any additional redirects setup wrong. For example, one bad 301 redirect back to itself could take down your site. Usually, these are found in your server’s config files.





share|improve this answer



























  • this is not working we have the same issue

    – user10358702
    Mar 28 at 10:43











  • @Nikos Checkout my answer update and let me know your thoughts

    – DebanjanB
    Mar 28 at 12:25











  • If I understood correctly some of these are things that an administrator should do? I am the user, the case of wordpress I think is not the case. So is my code wrong? should I include something else?

    – user10358702
    Mar 28 at 13:31











  • @Nikos Not some but all the actions are from from system administrator side. It would be too early to comment on your code unless we can observe the HTML of the website. But as you mentioned about iframe and JavaScript, WebDriverWait seems inevitable.

    – DebanjanB
    Mar 28 at 13:36














1














1










1









ERR_TOO_MANY_REDIRECTS



ERR_TOO_MANY_REDIRECTS (also known as a redirect loop) is one of the regular website errors. Typically this error occurs after a recent change to your website, a mis-configuration of redirects on your server or wrong settings with third-party services.



This error have no relation with Selenium as such and can be reproduced through Manual Steps.



The reason for ERR_TOO_MANY_REDIRECTS is that, something is causing your website to go into an infinite redirection loop. Essentially the site is stuck (such as URL 1 points to URL 2 and URL 2 points back to URL 1, or the domain has redirected you too many times) and unlike some other errors, these rarely resolve themselves and will probably need you to take action to fix it. There are a couple different variations of this error depending upon the browser you’re running.




Solution



Some common approach to check and fix the error as as follows:




  • Delete Cookies on That Specific Site: Google and Mozilla both in fact recommends right below the error to try clearing your cookies. Cookies can sometimes contain faulty data in which could cause the ERR_TOO_MANY_REDIRECTS error. This is one recommendation you can try even if you’re encountering the error on a site you don’t own. Due to the fact that cookies retain your logged in status on sites and other settings, in these cases simply deleting the cookie(s) on the site that is having the problem. This way you won’t impact any of your other sessions or websites that you frequently visit.


  • Clear Browser Cache: If you want to check and see if it might be your browser cache, without clearing your cache, you can always open up your browser in incognito mode. Or test another browser and see if you still see the ERR_TOO_MANY_REDIRECTS error.


  • Determine Nature of Redirect Loop: If clearing the cache didn’t work, then you’ll want to see if you can determine the nature of the redirect loop. For example, if a site has a 301 redirect loop back to itself, which is causing a large chain of faulty redirects. You can follow all the redirects and determine whether or not its looping back to itself, or perhaps is an HTTP to HTTPS loop.


  • Check Your HTTPS Settings: Another thing to check is your HTTPS settings. A lot of times it is observed ERR_TOO_MANY_REDIRECTS occur when someone has just migrated their WordPress site to HTTPS and either didn’t finish or setup something incorrectly.


  • Check Third-Party Services: ERR_TOO_MANY_REDIRECTS is also often commonly caused by reverse-proxy services such as Cloudflare. This usually happens when their Flexible SSL option is enabled and you already have an SSL certificate installed with your WordPress host. Why? Because, when flexible is selected, all requests to your hosting server are sent over HTTP. Your host server most likely already has a redirect in place from HTTP to HTTPS, and therefore a redirect loop occurs.


  • Check Redirects on Your Server: Besides HTTP to HTTPS redirects on your server, it can be good to check and make sure there aren’t any additional redirects setup wrong. For example, one bad 301 redirect back to itself could take down your site. Usually, these are found in your server’s config files.





share|improve this answer















ERR_TOO_MANY_REDIRECTS



ERR_TOO_MANY_REDIRECTS (also known as a redirect loop) is one of the regular website errors. Typically this error occurs after a recent change to your website, a mis-configuration of redirects on your server or wrong settings with third-party services.



This error have no relation with Selenium as such and can be reproduced through Manual Steps.



The reason for ERR_TOO_MANY_REDIRECTS is that, something is causing your website to go into an infinite redirection loop. Essentially the site is stuck (such as URL 1 points to URL 2 and URL 2 points back to URL 1, or the domain has redirected you too many times) and unlike some other errors, these rarely resolve themselves and will probably need you to take action to fix it. There are a couple different variations of this error depending upon the browser you’re running.




Solution



Some common approach to check and fix the error as as follows:




  • Delete Cookies on That Specific Site: Google and Mozilla both in fact recommends right below the error to try clearing your cookies. Cookies can sometimes contain faulty data in which could cause the ERR_TOO_MANY_REDIRECTS error. This is one recommendation you can try even if you’re encountering the error on a site you don’t own. Due to the fact that cookies retain your logged in status on sites and other settings, in these cases simply deleting the cookie(s) on the site that is having the problem. This way you won’t impact any of your other sessions or websites that you frequently visit.


  • Clear Browser Cache: If you want to check and see if it might be your browser cache, without clearing your cache, you can always open up your browser in incognito mode. Or test another browser and see if you still see the ERR_TOO_MANY_REDIRECTS error.


  • Determine Nature of Redirect Loop: If clearing the cache didn’t work, then you’ll want to see if you can determine the nature of the redirect loop. For example, if a site has a 301 redirect loop back to itself, which is causing a large chain of faulty redirects. You can follow all the redirects and determine whether or not its looping back to itself, or perhaps is an HTTP to HTTPS loop.


  • Check Your HTTPS Settings: Another thing to check is your HTTPS settings. A lot of times it is observed ERR_TOO_MANY_REDIRECTS occur when someone has just migrated their WordPress site to HTTPS and either didn’t finish or setup something incorrectly.


  • Check Third-Party Services: ERR_TOO_MANY_REDIRECTS is also often commonly caused by reverse-proxy services such as Cloudflare. This usually happens when their Flexible SSL option is enabled and you already have an SSL certificate installed with your WordPress host. Why? Because, when flexible is selected, all requests to your hosting server are sent over HTTP. Your host server most likely already has a redirect in place from HTTP to HTTPS, and therefore a redirect loop occurs.


  • Check Redirects on Your Server: Besides HTTP to HTTPS redirects on your server, it can be good to check and make sure there aren’t any additional redirects setup wrong. For example, one bad 301 redirect back to itself could take down your site. Usually, these are found in your server’s config files.






share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 28 at 12:21

























answered Mar 28 at 10:30









DebanjanBDebanjanB

60.2k16 gold badges63 silver badges117 bronze badges




60.2k16 gold badges63 silver badges117 bronze badges















  • this is not working we have the same issue

    – user10358702
    Mar 28 at 10:43











  • @Nikos Checkout my answer update and let me know your thoughts

    – DebanjanB
    Mar 28 at 12:25











  • If I understood correctly some of these are things that an administrator should do? I am the user, the case of wordpress I think is not the case. So is my code wrong? should I include something else?

    – user10358702
    Mar 28 at 13:31











  • @Nikos Not some but all the actions are from from system administrator side. It would be too early to comment on your code unless we can observe the HTML of the website. But as you mentioned about iframe and JavaScript, WebDriverWait seems inevitable.

    – DebanjanB
    Mar 28 at 13:36


















  • this is not working we have the same issue

    – user10358702
    Mar 28 at 10:43











  • @Nikos Checkout my answer update and let me know your thoughts

    – DebanjanB
    Mar 28 at 12:25











  • If I understood correctly some of these are things that an administrator should do? I am the user, the case of wordpress I think is not the case. So is my code wrong? should I include something else?

    – user10358702
    Mar 28 at 13:31











  • @Nikos Not some but all the actions are from from system administrator side. It would be too early to comment on your code unless we can observe the HTML of the website. But as you mentioned about iframe and JavaScript, WebDriverWait seems inevitable.

    – DebanjanB
    Mar 28 at 13:36

















this is not working we have the same issue

– user10358702
Mar 28 at 10:43





this is not working we have the same issue

– user10358702
Mar 28 at 10:43













@Nikos Checkout my answer update and let me know your thoughts

– DebanjanB
Mar 28 at 12:25





@Nikos Checkout my answer update and let me know your thoughts

– DebanjanB
Mar 28 at 12:25













If I understood correctly some of these are things that an administrator should do? I am the user, the case of wordpress I think is not the case. So is my code wrong? should I include something else?

– user10358702
Mar 28 at 13:31





If I understood correctly some of these are things that an administrator should do? I am the user, the case of wordpress I think is not the case. So is my code wrong? should I include something else?

– user10358702
Mar 28 at 13:31













@Nikos Not some but all the actions are from from system administrator side. It would be too early to comment on your code unless we can observe the HTML of the website. But as you mentioned about iframe and JavaScript, WebDriverWait seems inevitable.

– DebanjanB
Mar 28 at 13:36






@Nikos Not some but all the actions are from from system administrator side. It would be too early to comment on your code unless we can observe the HTML of the website. But as you mentioned about iframe and JavaScript, WebDriverWait seems inevitable.

– DebanjanB
Mar 28 at 13:36









Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.




















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55395181%2ferr-too-many-redirects-error-while-trying-to-login-through-a-webpage-that-uses-f%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

위키백과:대문 둘러보기 메뉴기부 안내모바일판 대문크리에이티브 커먼즈 저작자표시-동일조건변경허락 3.0CebuanoDeutschEnglishEspañolFrançaisItaliano日本語NederlandsPolskiPortuguêsРусскийSvenskaTiếng ViệtWinaray中文العربيةCatalàفارسیSrpskiУкраїнськаБългарскиНохчийнČeštinaDanskEsperantoEuskaraSuomiעבריתMagyarՀայերենBahasa IndonesiaҚазақшаBaso MinangkabauBahasa MelayuBân-lâm-gúNorskRomânăSrpskohrvatskiSlovenčinaTürkçe

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh