Zuschneiden der Screenshots angepasst.
This commit is contained in:
parent
768da6c14f
commit
34c3023cf9
16
Main.py
16
Main.py
|
@ -101,13 +101,17 @@ def search_adresses(adress_list, filename_adresslist, driver):
|
|||
qr.make_image(fill='black', back_color='white').save("qrcodes/" + image_filename)
|
||||
|
||||
# Create Screenshot
|
||||
featureElement = driver.find_element(By.XPATH, "//section[@id='one']//div[@class='container']//div[@class='row 150%']")
|
||||
location = featureElement.location
|
||||
size = featureElement.size
|
||||
featureElement1 = driver.find_element(By.XPATH,
|
||||
"//section[@id='one']//div[@class='container']//div[@class='row 150%']")
|
||||
featureElement2 = driver.find_element(By.XPATH,
|
||||
"//section[@id='one']")
|
||||
location = featureElement1.location
|
||||
size1 = featureElement1.size
|
||||
size2 = featureElement2.size
|
||||
x = location["x"]
|
||||
y = 0 # location["y"]
|
||||
w = x + size["width"]
|
||||
h = y + size["height"] - 100
|
||||
y = 5 # location["y"]
|
||||
w = x + size2["width"]
|
||||
h = y + size1["height"]
|
||||
area = (x, y, w, h)
|
||||
time.sleep(1)
|
||||
driver.save_screenshot("screenshots/" + image_filename)
|
||||
|
|
Loading…
Reference in New Issue