Questions tagged [inspect-element]

138 questions
0
votes
1 answer

How can I reset an Inspect Element tab position in Google Chrome?

As you can see, the position of a sub-elements tab (including Computed, Styles, Layout, Event Listeners, etc.) is accidentally at the right of the HTML area. Before, that tab was placed under of the HTML area. How can I reset it? I've tried to use…
Jordy
  • 1,802
  • 2
  • 6
  • 25
0
votes
0 answers

run javascript in already open tab through the inspect element console using python?

I'm attempting to execute code within the console of Inspect Element using Python, within an already open tab window. However, my code opens a new browser window instead. To clarify, I wrote an example to demonstrate what I'm trying to achieve, but…
stormcph
  • 1
  • 2
0
votes
0 answers

how to edit discord message before sending using console script?

I am trying to edit the message which will be send using a console script like I typed hi, this is a temp message now when I want to change it to hello, this is not a temp message so that when I press enter it send the updated message and not the…
Krsna
  • 1
  • 1
0
votes
0 answers

Android Chrome Inspect Element Network page

Im using this script to get Chrome inspect Element for Android since I don't have access to a desktop device: javascript:(function () { var script = document.createElement('script'); script.src="//cdn.jsdelivr.net/npm/eruda"; …
0
votes
0 answers

Console log in inspect element

When I console.log the parameters of handleClick i get the message in inspect element (console section) this message. { "dispatchConfig": null, "_targetInst": null, "nativeEvent": null, "type": null, "target": null, "eventPhase": null, "bubbles":…
senix
  • 31
  • 2
0
votes
0 answers

How can I save the code in chrome console tab?

On the console tab on chrome I pasted this code into it and every time I refreshed the page it got rid of what I added in. Is there a way where I could save the code even when I refresh the page? If my grammar doesn't make sense let me know.(Its…
0
votes
2 answers

Why can't I grab an element on a webpage with selenium in python? Tried by id, xpath, full xpath

I'm trying to write a script that will auto-fill an online form with python and selenium, but I'm having trouble grabbing an element from the html code. This is my starting code. Everything works until I try to identify the element. The element's id…
0
votes
1 answer

Restrict user to change class o_invisible_modifier from developer tools Odoo11

I am showing certain notebook/page according to user groups in Odoo11 form. As per my architecture i am unable to use access record rule as per groups for all employee but as an alternative i made all fields invisible employee form(except employee…
0
votes
2 answers

How to click on View Full Screen button for pdfs in Linkedin using Selenium Python?

I want to download the pdf file uploaded to Linkedin using Selenium. So I need to click on this full screen box and then I need to click on download. But I am getting error NoSuchElementException when I am using the following…
0
votes
1 answer

How to copy all text from website + pop up windows?

There's a web page with loads of contact info that I would like to copy to my clipboard and paste into an excel doc. The problem is that in order to display the info (phone, email, title, company, etc...) you have to click on the contact name and…
grxthy
  • 55
  • 5
0
votes
1 answer

Does any browser / add-on have at Inspect Element the option to display (highlight) only modified and new added values?

As web designer maybe you use daily the browser (Firefox / Chrome) Inspect Element tool more than browsing. Sometimes to obtain the desired result is very complicated, the CSS changes & the new values added thru browser Inspect Element tool does not…
Marius
  • 459
  • 1
  • 4
  • 17
0
votes
2 answers

Block code run from the inspect element in JS?

I have a javascript game that people have started hacking by changing the score variable from the console in the inspect element, is there a way to make it so that code from the inspect element console will not be run?
LlamaButt
  • 431
  • 4
  • 15
0
votes
1 answer

How to fix "IndexError" on Selenium when trying to automate filling out google form text box? (I used inspect element to find class name of text-box)

Essentially I am trying to automate/autofill a google form by using selenium and inspect element to find the class name. I am especially having trouble finding the solution to an "IndexError" problem when I try to input text into a "short answer"…
0
votes
1 answer

Problem: I want to learn how to import a number from a website to google sheets using google apps script

Much like this post here:(Google Sheet use Importxml error could not fetch url), I want to import a number from this website: (https://tarkov-market.com/item/Pack_of_sugar). Someone replied with a google apps script which takes the price and works…
0
votes
1 answer

Is there a way to find the 'date added' on a list that doesn't display that information?

This might not be the right place to ask this question, but on a site that lets you add items to a list and then sort by various criteria (name, price, availability, etc.), there's the option to sort by 'date added'. It sorts the list but doesn't…