Az oldal korlátolt funkcionalitással fog rendelkezni, amíg elvégezzük a felhasználói élményt javító karbantartást. Ha egy leírás nem oldja meg a problémáját, és kérdést tenne fel, akkor a támogatási közösségünk a @FirefoxSupport Twitter oldalon tud segíteni, vagy az /r/firefox oldalon a Redditen.

Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

További tudnivalók

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

How to activate Web Developer Tool "Take screenshot of the entore page" from Python (perhaps with Selenium)

  • 4 válasz
  • 2 embernek van ilyen problémája
  • 7 megtekintés
  • Utolsó üzenet ettől: Jongore

more options

I need to capture & store "full page screenshots" using a Python program. This function is provided via the Web Developer Tool "Take a screenshot of the entire Page". Can I activate this tool from Python, perhaps with Selenium? Any other alternative would be OK too. Thanks.

I need to capture & store "full page screenshots" using a Python program. This function is provided via the Web Developer Tool "Take a screenshot of the entire Page". Can I activate this tool from Python, perhaps with Selenium? Any other alternative would be OK too. Thanks.

Összes válasz (4)

more options

Python isn't a Firefox software so you need to contact their support for Python and how to do what your asking here.

more options
more options

Módosította: cor-el,

more options

You can activate the "Take screenshot of the entire page" feature in the Firefox and Chrome web developer tools using Python and Selenium. Here's an example code snippet that demonstrates how to do this:

from selenium import webdriver

# Set up the web driver for Firefox or Chrome
# Replace "firefox" with "chrome" to use the Chrome driver
driver = webdriver.Firefox()

# Navigate to the web page you want to capture
driver.get("https://www.example.com")

# Use the execute_script method to activate the developer tools and take a screenshot of the entire page
driver.execute_script("window.scrollTo(0, 0);")
developer_tool_command = 'window.setTimeout(function(){devtools.inspectedWindow.eval("screenshot.save();");}, 2000);'
driver.execute_script(developer_tool_command)

# Wait for the screenshot to be taken and saved
driver.implicitly_wait(10)

# Close the browser window
driver.quit()

In the above code, the execute_script method is used to activate the developer tools and execute the screenshot.save() command. The window.scrollTo(0, 0) method call is used to ensure that the entire web page is captured, even if it's longer than the current viewport.

Note that the execute_script method may not work in headless mode. If you're running the script in headless mode, you may need to use a different method to activate the developer tools and take the screenshot.

Módosította: cor-el,