Hello,I have quite a basic issue right now. I need to inspect the HTML of a page to find the HTML of a specific element (textbox in this case) on it. However, this text box changes when I click on it (ie. the HTML changes). The problem is that I need to get the HTML of the element when it has been clicked on, but when focus is lost from it, the HTML changes back to what it originally was. Because of this, when I click on the element and then click the arrow to expand the HTML element in the console, focus is lost, and the HTML changes back to what it originally was.
Is there a way to either keep focus on the textbox while clicking in the console/inspection window, or copy the entire HTML of the current page onto the clipboard, or a file? Even "Inspect Source" disappears when focus is in the textbox. I would prefer not to use Selenium to dump the HTML of a page into a file or into output.
Thanks