svg标签从渠道中抓取 [英] svg tag scraping from funnels

查看:199
本文介绍了svg标签从渠道中抓取的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试从此处抓取数据,但出现错误. 我从这里获取了代码使用Selenium和python进行抓取

I am trying to scrape data from here but getting error. I have taken code from here Scraping using Selenium and python

此代码运行正常,但现在出现错误

This code was working perfectly fine but now I am getting error

 wait.until(EC.visibility_of_element_located((By.LINK_TEXT, "All Boards")))  
 raise TimeoutException(message, screen, stacktrace)

推荐答案

点击 pe-funnel 链接后,您可以尝试使用以下代码:

After clicking on pe-funnel link , you can try with this code :

wait.until(EC.visibility_of_element_located((By.XPATH, "//*[name()='text' and @text-anchor='end']"))) 

all_data = driver.find_elements_by_xpath("//*[name()='text' and @text-anchor='end']")

print(len(all_data))

for data in all_data:
 print(data.text)  

UPDATE1:

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.common.action_chains import ActionChains
from selenium.webdriver.support.select import Select
import time

driver = webdriver.Chrome(executable_path = r'D:/Automation/chromedriver.exe')
driver.maximize_window()
driver.get("https://eu1.dashboard.clevertap.com/login.html")

wait = WebDriverWait(driver, 20)
action = ActionChains(driver)

driver.switch_to.default_content()

wait.until(EC.element_to_be_clickable((By.NAME, "email"))).send_keys("abhishe***")

wait.until(EC.element_to_be_clickable((By.NAME,"password"))).send_keys("***")  

wait.until(EC.element_to_be_clickable((By.ID,"submitBtn"))).click()

wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, 'div.ct-breadcrumb')))

driver.switch_to.default_content()  
action.move_to_element(driver.find_element_by_css_selector("div.sidebar__brand+ul>li:first-child>a")).perform()

wait.until(EC.visibility_of_element_located((By.LINK_TEXT, "All Boards")))  

wait.until(EC.element_to_be_clickable((By.LINK_TEXT,"All Boards"))).click()

wait.until(EC.element_to_be_clickable((By.LINK_TEXT,"pe-funnel"))).click()

time.sleep(1)

driver.execute_script("window.scrollTo(0,100)")

wait.until(EC.presence_of_all_elements_located((By.XPATH,"//*[name()='svg' and @class='highcharts-root']")))

all_charts = driver.find_elements_by_xpath("//*[name()='svg' and @class='highcharts-root']")
length_of_list = len(all_charts)
print(length_of_list)
i=0
while(i<len(all_charts)):
 wait.until(EC.presence_of_all_elements_located((By.XPATH,"//*[name()='svg' and @class='highcharts-root']")))
 all_charts = driver.find_elements_by_xpath("//*[name()='svg' and @class='highcharts-root']")
 all_charts[i].click()
 i=i+1
 try:
  print("Switch to frame")
  wait.until(EC.frame_to_be_available_and_switch_to_it((By.ID,"wiz-iframe-intent")))
  print("Switched to frame")
  wait.until(EC.element_to_be_clickable((By.XPATH, "//button[text()='OK' and @class='annoucement-popup__btn']"))).click()
  driver.switch_to.default_content()
  print("Clicked on Ok button")
 except:
  print("in catch block")
  pass
  print("last of CATCH BLOCK")

 driver.execute_script("window.scrollTo(0,1100)")
 ActionChains(driver).move_to_element(driver.find_element_by_css_selector("input[data-introp='View your analysis']")).click().perform()
 #wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR,""))).click()
 #ActionChains(driver).move_to_element(driver.find_element_by_css_selector("label[for='funnelProgressionPercent']")).send_keys(Keys.END).perform()
 wait.until(EC.presence_of_all_elements_located((By.XPATH,"//*[name()='tspan' and @class='highcharts-text-outline']")))  
 all_values = driver.find_elements_by_xpath("//*[name()='tspan' and @class='highcharts-text-outline']")  
 for values in all_values:
  print(values.text)  
 driver.execute_script("window.history.go(-1)")
 driver.refresh()

这篇关于svg标签从渠道中抓取的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆