I would like to test automatically my website from different locations in order to localize content's presentation. I think I have to write a bash script to access the website with wget program, using an ip from a list. There is somewhere an established solution to this kind of problem ?
Scripting access to a website using different ips
231 views Asked by innermond At
1
There are 1 answers
Related Questions in BASH
- When does Bash read heredocs?
- Why `set -o pipefail` gives different output even though the pipe is not failing
- Run an external command within jq to manipulate each values of a particular key
- API key 401 error in .env.development file
- How to "Enable mobile data" on a Huawei E3372 4G USB dongle using a bash script in Windows
- ImageMagick / Bash : pipe ignored(?) when filename format variable used
- MacOS Bash-Script: while read p and echo
- Parse command line arguments and write useful usage message without additional code
- JQ JSON - Values to Array
- why variable substitution is so different?
- postbank_pdf2csv: how to setup with Cygwin in Windows?
- Custom Bash functions & custom statements - Need some advice
- unexpected operator == in square brackets when trying to use gum lib
- How to disable a bash builtin inside a docker container
- Use sed or rename find series of alphabet then replace with with the same alphabet and a dash -
Related Questions in WGET
- Download a website using wget command to include any subdomain
- download all pdf files from website doesn't support wildcard
- How do I get files from github using Juniper Note
- Can't download from GitHub
- docker build config proxy wget: can't connect to remote host
- requests.get(): certificate verify failed: unable to get local issuer certificate, despite public certificate being used to verify
- Using WGET to Get Links on the Page
- How to correctly read an endless stream from InternetRadio using Indy TIdHTTP?
- `curl` applying lowercase to headers
- How to stop a wget mirror?
- Unable to install wget on mac (mojave 10.14.6) result: Error: An exception occurred within a child process
- Trying to import wget libraries but it's not happening why? It says requirement satisfied but not able to import it. Giving module not found error
- list pages in a website of links to reports
- Error 403: Server Failed to Authenticate the request
- WGET -HTTP request sent, awaiting response... 404 Not Found
Related Questions in WEB-TESTING
- Testing DELETED Expected [204] but was [404]
- Largest Contentful Paint element 3,150 ms, how to reduce?
- Image gets resized and jerky on website load
- AttributeError: 'NoneType' object has no attribute 'find_element'
- how to call a website aspx project in one folder from an MVC project from a cshtml, controller method or javascript within mvc project
- card detail section doesn't reliably show on website checkout
- Video Uploading Issue from Google Cloud Storage to YouTube
- How to find what causes error Blocked script execution in 'about:blank' (in desktop Safari)?
- I am not able to click on the specific date in the Makemytrip website, it is continously throwing exception
- Webrtc Load Testing - Seeking Expert Advice
- Chrome driver of selenium in headless mode not finding any element
- How to download a spreadsheet from Google Sheets as a CSV using selenium? In particular, how to click the final CSV suboption?
- Website doesn’t load properly when using Chrome on a docker container
- How to append text in textarea having existing text in it
- How to fix a display issue with a website on iPad for iOS 17?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
There is many solutions. I think to these ones :
IP spoofing. But it's not easy. In particular if you want orchestrate these tests to automate them...
Another solution is to use a reverse-proxy. An example: your application is hosted by Tomcat and you use Apache as reverse proxy. In this case you can easily configure several end-points in Apache where you lie about XFF
Another solution, you can rent VM in the cloud. This is a good approach if you want to perform real performance tests from a remote client, or check the behavior of Internet cache...
Some compagnies sells services to check availability of your web-stuff from different sites.