gpt4 book ai didi

python - 使用 Selenium Python 从网页中提取 SVG

转载 作者:行者123 更新时间:2023-12-05 07:42:04 30 4
gpt4 key购买 nike

我正在尝试从该网站提取高分辨率 图像:http://target.lroc.asu.edu/q3/给定它的纬度和经度。我已经编写了一个自动输入纬度和经度的 python 脚本,但是我如何使用 Python 和 selenium 在特定的纬度和经度提取这个月球 map 。此外,提取后,我希望将其保存为 .png 文件。

下面是导航到页面并自动输入纬度和经度值的代码。

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import Select
from PIL import Image
import time

#Taking the inputs from USER
latitude = input('Enter the Latitude : ')
longitude = input('Enter the longitude : ')

#Below is to remove the toolbar and open chrome and visit the webpage
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--disable-infobars")
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get('http://target.lroc.asu.edu/q3/#')

full = driver.find_element_by_xpath('//div[@class="links"]')
full2 = full.find_element_by_xpath('//span[@class="smallHelpBox"]')
full3 = full2.find_element_by_xpath('//a[@class="fullscreen mapbutton"]').click()

arrow2 = driver.find_element_by_xpath('//div[@class="zoomSelectWrapper mapbutton"]').click()
arrow3 = driver.find_element_by_xpath('//ul[@class="zoomSelect ui-menu ui-widget ui-widget-content ui-corner-all"]')
arrow4 = driver.find_element_by_xpath('//li[@class="ui-menu-item"]')
arrow5 = driver.find_element_by_xpath('//a[@id="ui-id-58"]')
arrow5.click()

arrow = driver.find_element_by_xpath('//div[@id="OpenLayers.Control.MousePosition_19" and @class="olControlMousePosition olControlNoSelect"]')
arrow.click()
trial = driver.find_element_by_xpath('//div[@class="recenterWrapper"]')

trial.find_element_by_xpath('//input[@class = "latbox"]').send_keys(str(latitude))
trial.find_element_by_xpath('//input[@class = "lonbox"]').send_keys(str(longitude))
trial.find_element_by_xpath('//a[@class = "recenterBtn qm-icon icon-recenter"]').click()
arrow.click()

最佳答案

加载页面后,尤其是像本文中的整页图像,可以通过单个 selenium 命令捕获图像并将其保存到文件中。

driver.save_screenshot('/home/rebel/images/myscreen.png')

关于python - 使用 Selenium Python 从网页中提取 SVG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44853989/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com