gpt4 book ai didi

python - 使用 Python selenium 选择一个元素(文本)

转载 作者:行者123 更新时间:2023-12-05 07:29:36 25 4
gpt4 key购买 nike

在我的一个内部 Web 应用程序中,我们必须在网页中选择文本并单击选择。然后会打开一个包含更多选项的弹出窗口。这对我来说是一项重复性任务,我想将其自动化,但是像我们手动选择 Web 元素那样对我来说效果不佳。

由于我无法共享 Web 应用程序,所以我制作了一个所有人都可以访问的网页,并尝试重现选择问题。

我正在尝试通过在元素的左上角单击鼠标来模拟手动选择,然后按 Shift,然后再次单击元素的末尾。它不工作。代码有什么问题?

预期选择以图片形式附上:

Expected selection is attached as a picture

接下来是我的代码:

import selenium
import time
from selenium.webdriver import ActionChains
from selenium.webdriver.common.keys import Keys


print("program has started")
# Customary code starts
myDriver=selenium.webdriver.Chrome("D:\\Software\\ChromeDriver\\chromedriver.exe")
myDriver.set_page_load_timeout(60)
myDriver.maximize_window()
myDriver.implicitly_wait(30)
# Customary code ends

# opening website
myDriver.get("https://en.wikipedia.org/wiki/Animal")

time.sleep(4)

actions = ActionChains(myDriver)
element=myDriver.find_element_by_xpath("//*[@id='mw-content-text']/div/p[2]")
actions.move_to_element(element)
myDriver.switch_to_active_element()
time.sleep(5)
actions.move_by_offset(-(element.size["width"])/2, -(element.size["height"])/2)
actions.click()
ActionChains(myDriver).key_down(Keys.SHIFT)
actions.move_by_offset((element.size["width"]),(element.size["height"]))
actions.click()
# actions.context_click()
actions.perform()
# print(element.size["width"])
# print(element.size["height"])
# print(element.location["x"])
# print(element.location["y"])
# print(element.location)

print("end of action")
print("Sucessfully came to the end")
#myDriver.quit()

最佳答案

 # calling a action method as A
a=A(self.driver)
# Click on text box and enter some text
self.driver.find_element_by_xpath("/html/body/div[3]/div[3]/div/div/div/div/div[1]/main/div/form/div[1]/div[2]/div/div/div/div[1]/section/div[1]/div/div/div/div[2]/div/div/div/div/div/div").send_keys("amar")
time.sleep(2)
# performing control action
a.key_down(K.CONTROL).send_keys("a").perform()
time.sleep(2)
# selecting the text
a.key_down(K.CONTROL).send_keys("c").perform()
time.sleep(5)
#click on bold and appl
self.driver.find_element_by_xpath("/html/body/div[3]/div[3]/div/div/div/div/div[1]/main/div/form/div[1]/div[2]/div/div/div/div[1]/section/div[1]/div/div/div/div[1]/div[1]/div[1]").click()
time.sleep(5)

关于python - 使用 Python selenium 选择一个元素(文本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52659643/

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