51Testing软件测试论坛

标题: qq音乐左右按钮定位,怎么也点不到的元素 [打印本页]

作者: 测试积点老人    时间: 2022-10-10 09:11
标题: qq音乐左右按钮定位,怎么也点不到的元素
想定位qq音乐左右按钮,这个按钮只有移动到一定位置才会出现,我的代码只有左滑按钮
[attach]143640[/attach]
  1. import time

  2. from selenium import webdriver
  3. from selenium.webdriver import ActionChains

  4. driver = webdriver.Chrome()
  5. driver.maximize_window()
  6. driver.get('https://y.qq.com/')
  7. time.sleep(3)
  8. ele = driver.find_element_by_xpath('//*[@id="content"]/div[2]/div[1]/a/i[1]')
  9. element = driver.find_element_by_xpath('//*[@id="content"]/div[1]/div[3]/ul/li[1]/div/div[1]/a/i[1]')
  10. ActionChains(driver).move_to_element(element).move_to_element(ele).click().perform()
  11. #想尝试坐标定位
  12. #ActionChains(driver).move_by_offset(12,390).click().perform()
复制代码
运行结果及报错内容

没报错,但点不到

[attach]143641[/attach]



作者: bellas    时间: 2022-10-11 13:35
换一下,改为定位区域呢




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2