Tool to Find Out What The Browser is Downloading - browser

My PHP Apache website starts to load a part of the content, then it seems to stop loading and then it appends the rest of the page.
I would like to know if there is any tool to find out what exactly is being load at the moment by my browser.
I prefer Firefox, but any browser works.

Following the advice of #Ehtesham, I am using Firebug for this purpose.
I didn't know that it had this functionality.
To download firebug for Firefox: Download Page

Related

How to get instant CSS changes with Chrome Extension?

I'm making a Chrome Extension which changes the layout of a website. When my extension is activated and the website loads, you can briefly see the real website then it switches to my modified version loading in all the CSS and JS from the Chrome Extension. Though I've used other extensions that do something similar but have it displayed before anything actually shows the real website. One example is Shine for Reddit. When Reddit shows, it shows the extensions version of the website right at the start. How can I do this?

How to download source of website by cmd?

Is there any way to download source of website by using cmd?
I already tried curl and wget but thats allow me only to download main page.
What i want is get source of google site after searching something.
I mean url like that "https://www.google.com/search?source=hp&ei=YBg&q=hello&btnK=Szukaj+w+Google&oq=hello&gs_l=p"
Thank you in advance.
You're looking for the rendered DOM (not the source). Tools like curl and wget can get the source of a page (similar to what you'll see when you "View page source" in Chrome).
To get the rendered DOM, you'll need a headless browser that will execute JavaScript.
Here's a list of popular options: https://www.keycdn.com/blog/headless-browsers

Automating Google chrome extenions with sahi

We are automating chrome extension with sahi.
we have loaded our chrome profile with sahi with extension added on profile.
we weren't able to get dom elements of extensions.
so we are navigating to the url: chrome-extension:/extension_id/popup.html
but sahi doesn't navigate to this url.
but i have read with selenium we are able to get it.
Please help me out, with this automation
I'm not sure, I understand the problem here. But if you want to change some options on chrome. I use this Chromium Command Line Switches to find correct option to set when set browser on 'browser_types.xml`.
For example:
<options>--no-default-browser-check --user-data-dir=$userDir\browser\chrome\profiles\sahi$threadNo --proxy-server=127.0.0.1:$port --disable-popup-blocking --always-authorize-plugins --allow-outdated-plugins --enable-npapi --incognito</options>

why is the javascript and css unaltered on the web browser?

I just ran into a problem, While I was updating the js and css files for my website on a server, I do not see the immediate change. However, if I were to edit these files on a local computer or go on incognito mode on chrome, I see the change right away.
let's say I have:
div{width:100px}
after I change it to div{width:200px}, when I pop open the developer tool, it still reads div{width:100px}.
I feel like I need to clear something for the broswer, any explanation for this?
Check the caching headers you are using for static resources. The browser is likely using a cached version.

open webpage in firefox

i am not sure..is there any chance to open my webpage in firefox. for example i am browsing mywebsite using IE. when ever i click link of the page then automatically it will open in firefox. this option is not for all pages only for specified page.
thanks.
If this were the case, ie6 would have gone out long ago. The best you can do here, would be to check which browser they are using (get_browser if you are using php) and refuse to show content to people using browsers other than firefox.
Instead you could redirect them to a page explaining why they need to be using firefox to access your websites services (I guess a link to the firefox download page would be nice too)
Sorry, it's not possible from plain HTML to open a webpage in a different browser. You can, at most, open the page in a new window of the same browser.
However, what you ask is not completely impossible. You could write a browser plugin that handles links and runs the Firefox executable
I would seriously hope this isn't possible.
What you ask for is not possible , but you could display a warning to your users that the page works best in the desired browser.

Resources