PDA

View Full Version : What Are The Problems Faced While Uploading The Cgi Scripts?



tony_S
02-12-2019, 02:35 AM
What Are The Problems Faced While Uploading The Cgi Scripts?

Wiztechplc
02-12-2019, 02:37 AM
CGI scripts allow the communication to be done between the client and the server side and it acts as a gateway between them.

CGI scripts don’t work due to uploading of it in a BINARY mode as this is not the format in which the scripts are uploaded.

ASCII mode is used to upload the CGI scripts rather than BINARY mode as this is the default format that is being used for this purpose only.

The file should have the permission on the scripts that hasn’t been set and the permissions should be changed to make the CGI programs readable on the server and client.

FTP also should have the proper permissions by using the CHMOD that allows the file to be uploaded on the server.

beautyepic
02-18-2019, 02:20 AM
There are many problem while automation using Selenium either static or runtime.

1. If you are using movetoelement method of Actions class and the windows cursor focus is on the selenium browser, then it will not work. Due to cursor on browser you selenium does not able to hover over the element. So before running the script move the cursor to taskbar in order to run the script successfully.

2. StaleElementException: If you are very impatient, then make sure this exception does not come frequently. Else you might break you computer some day. :D.
It happens when your DOM gets while your loop is running. So make sure of that.

Paro
11-18-2019, 07:14 AM
CGI (Common Gateway Interface) script is a program that runs on a web server. It is the normal practice applied for communication between a web server and ...