zoukankan      html  css  js  c++  java
  • webdriver.Chrome()自动化

    今天弄了半天selenum,发现很恶心,51job采取此方法,输入关键字,然后在搜索,怎么都没反映;

    但此方法尝试腾讯招聘,可以操作,但输入的文字信息识别不到。

    暂时采取URL拼接关键字的方法,继续下面的测试吧

    browser=webdriver.Chrome()
    browser.get(seed_url)
    time.sleep(5)


    input_text=browser.find_element_by_xpath('//input[@class="search-input input-value"]')
    actions = ActionChains(browser)
    actions.move_to_element(input_text).send_keys("python").perform()
    time.sleep(5)
    search=browser.find_element_by_xpath('//span[@class="search-btn"]')
    actions.click(search).perform()

  • 相关阅读:
    券商
    养生之道
    房产买卖
    货币常识
    虚拟币
    其他开源项目
    Shiro
    文件上传插件
    JAVA常见问题
    如何写好PPT
  • 原文地址:https://www.cnblogs.com/sike8/p/11857220.html
Copyright © 2011-2022 走看看