Python自动化xpath实现自动抢票抢货-创新互联
小伙伴们,这次推文讲的是‘xpath‘,掌握起来不难的哦。而且,熟悉了这套路,别说pubmed,任何你能在浏览器实现的操作,都基本能通过selenium自动化进行。
总代码:
for i in range(51,56): driver.implicitly_wait(10) ActionChains(driver).move_to_element(driver.find_element_by_xpath('//*[@id="save-results-panel-trigger"]')).click().perform() Select(driver.find_element_by_xpath('//*[@id="save-action-selection"]')).select_by_visible_text("All results on this page") ActionChains(driver).move_to_element(driver.find_element_by_xpath('//*[@id="save-action-format"]')).click().perform() Select(driver.find_element_by_xpath('/html/body/main/div[1]/div/form/div[2]/select')).select_by_visible_text("CSV") ActionChains(driver).move_to_element(driver.find_element_by_xpath('//*[@id="save-action-panel-form"]/div[3]/button[1]')).click().perform() target =driver.find_element_by_xpath('//*[@id="search-results"]/section/div[3]/a/span') driver.execute_script("arguments[0].();", target) ActionChains(driver).move_to_element(driver.find_element_by_xpath('//*[@id="search-results"]/section/div[3]/a/span')).click().perform() ActionChains(driver).move_to_element(driver.find_element_by_xpath('//*[@id="search-page"]/div[12]/div/form/button')).click().perform() print('第'+str(i)+'页下载成功') print('跳转第'+str(i+1)+'页面中') driver.quit() print('全部下载完毕,自动退出。')
当前标题:Python自动化xpath实现自动抢票抢货-创新互联
分享地址:http://myzitong.com/article/ccjshg.html