Questions tagged [web-console]

Web Console is the Mozilla Firefox panel which allows stylesheets and document structure as well as network requests to be inspected. Use this tag for questions about using the panel for debugging web applications.

Web Console is the Mozilla Firefox panel which allows stylesheets and document structure as well as network requests to be inspected, among other things. It can typically be accessed with the key combination CtrlShiftK.

Chrome/Chromium calls it Developer Tools and offers CtrlShiftI or F12 to access it.

Internet Explorer also offers a similar function which the F12 key can access.

Use this tag for questions about using the panel for debugging web applications.

60 questions
0
votes
0 answers

SQL Query String Showing Up in Web Console Local Storage

While debugging a web application on Firefox web browser, I was surprised to see an SQL Database Query string showing up in the web-console log under Local-Storage sub-category autoSavedSql_xxxx. How is this even possible? Wrong echo at the PHP…
Ajowi
  • 449
  • 3
  • 12
0
votes
1 answer

Ruby on Rails: configure web_console in initializer

I am using the web_console gem and I would like to add some IPs to the whitelist. For reasons that would probably go to far to explain, can't simply add something to the config/application.rb or config/environments/development.rb. However I can…
Monkeyphant
  • 105
  • 1
  • 5
0
votes
2 answers

Run web developer console in windows terminal

Is there any way to run the scripts which we run in the Developer console of Chrome or Firefox on Windows Terminal or CMD? I want to run a Javascript code on every link I provide as input.
0
votes
2 answers

How can I "click" a button that performs a JS function through the Firefox web console?

My website somehow produced a rather interesting issue. We have individual pages for each auction that goes live, and this one in particular got messed up somehow. Typically we have an edit button that allows us to perform various functions, and one…
ennbenn72
  • 1
  • 1
0
votes
1 answer

ActiveMQ 5.16.2 Securing Webconsole using HTTPS

I have followed this guide to secure the ActiveMQ 5.16.2 web console. I made the following configuration in my jetty.xml: Per default the authentication setting is true, so I just left it like that: I…
YumYum
  • 41
  • 5
0
votes
2 answers

What is the 'secret' parameter in URL while trying to delete durable Subscriber from the ActiveMQ WebConsole?

I need to delete durable subscribers after each JMeter's test run using JMeter. I would like to create HTTP request to the ActiveMQ Web Console as it is shown on browser WebConsole. But I need to know: What is the "secret" parameter in URL? How it…
0
votes
1 answer

How to write for loop for console log of web browser

I am currently learning some Automation. I just wanted to know how to we write a for loop for a button in the webpage with the help of browser console. document.querySelector('.glyphsSpriteCircle_add__outline__24__grey_9').click() I need to this…
0
votes
0 answers

Scrape Highchart, missing data

I've been trying to scrape a specific highchart, using console commands, something in the line off: data = $('div#graphCont2').highcharts().series[0].data; { console.log(data)} This code works on the following site, I retrieve all…
0
votes
2 answers

Can I mute the warning about vertex attrib array 0 being disabled?

When drawing with gl.disableVertexAttribArray(0), Firefox (just like other browsers, they say) issues this warning: WebGL warning: drawElementsInstanced: Drawing without vertex attrib 0 array enabled forces the browser to do expensive emulation…
The Vee
  • 11,420
  • 5
  • 27
  • 60
0
votes
0 answers

Arrange side by side or detach Inspector or/and (Web) Console in/from Firefox's (v71) Developer Tools

Inspector and (Web) Console are the tabs I (and perhaps others, too) use most. So, it'd be convenient to arrange them: side by side in the Dev Tools detached from the FF Window on a second monitor I didn't find any option in the according menus to…
Gerold Broser
  • 14,080
  • 5
  • 48
  • 107
0
votes
2 answers

How to activate input box (fiddle provided) through browser scripting

How do I programmatically click on an input box to make it become activated. I'm doing scripting through Developer Tools. Any help would be appreciated! I have tried .focus() and .click() properties like: …
user5938020
  • 63
  • 1
  • 3
  • 12
0
votes
1 answer

Grid Gain web console failed to find JDBC driver.?

I am connecting my NodeJs project to ignite. I have configure cluster and connect Web Console Agent but when I click on Import Database button I get following error. Agent Failed to find JDBC driver Copy required JDBC driver into 'jdbc-drivers'…
Maahi
  • 19
  • 4
0
votes
0 answers

AWS s3 Bucket cannot be deleted

Deletion of AWS S3 buckets is failing. I was using the Java SDK when it started failing. Now I have tried the same thing manually i.e. via the web console, but the same issue persists. Here is the screenshot of one of the buckets. The error from…
SyCode
  • 1,077
  • 4
  • 22
  • 33
0
votes
2 answers

Debug developer console inserted javascript

Is there some way to debug code that you have inserted from the firefox developer console terminal? I.e I inserted document.onkeydown = function(event) { // check keys pressed and perform some logic } If I knew where the javascript entered…
user2117229
  • 135
  • 3
  • 8
0
votes
1 answer

How to differentiate between console.error output and thrown exception in Javascript Console

I am creating a Chrome Extension with the help of an API. It happened that the API was not responding for a particular query, so, I checked out the console (extension's popup console) and found some error messages. All I could not figure out was…
Melvin Abraham
  • 2,870
  • 5
  • 19
  • 33