Home > Software design >  Selenium button click gives 500 internal server error
Selenium button click gives 500 internal server error

Time:12-18

I am working on testing 1 page in which user can add multiple tables in separate divs. For each table there are options to view/edit/delete. I am able to click on edit and delete and proceed with the test. But when trying to click on view, i m getting 500 internal server error. But if I test this on localhost it works.

This is how I find element, using XPATH //[text()='"Sample table"']/parent::/div[2]/div/a[1]

I am trying to run application inside docker workspace. If I run test on localhost, I dont see the error.

This is what i see in page source.

<html lang="en">
 <head>
   <title>Server Error (500)</title>
 </head>
 <body>
 <h1>Server Error (500)</h1><p></p>
 </body>
 </html>

When I print current url, the correct URL is also shown, but after searching a lot, I am not getting help in understanding the issue.

CodePudding user response:

This is definitely NOT a Selenium issue.
500 internal server error is a 100% server side error.
In case this is your company internal site / page / application you should talk with your BackEnd developers.

  • Related