代码拉取完成,页面将自动刷新
from selenium import webdriver
from time import sleep
from selenium.webdriver.common.by import By
from selenium.webdriver.support.select import Select
driver=webdriver.Firefox()
driver.get('http://localhost/upload/index.php')#打开前台首页
sleep(2)
driver.find_element(By.LINK_TEXT,'高级搜索').click()
sleep(3)
# 选择高级搜索页面里的分类下拉列表里文本是“充值卡”的选项,
Select(driver.find_element(By.ID,'select')).select_by_visible_text('充值卡')
# 等待2秒,
sleep(2)
# 选择品牌下拉列表里的第4个选项,
Select(driver.find_element(By.ID,'brand')).select_by_index(3)
# 等待2秒,
sleep(2)
# 选择扩展选项下拉列表里的value属性值是“9”的选项
Select(driver.find_element(By.NAME,'goods_type')).select_by_value('9')
sleep(5)
driver.quit()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。