当前位置: 首页>>代码示例>>Python>>正文


Python WebDriverWait.next方法代码示例

本文整理汇总了Python中selenium.webdriver.support.ui.WebDriverWait.next方法的典型用法代码示例。如果您正苦于以下问题:Python WebDriverWait.next方法的具体用法?Python WebDriverWait.next怎么用?Python WebDriverWait.next使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在selenium.webdriver.support.ui.WebDriverWait的用法示例。


在下文中一共展示了WebDriverWait.next方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: sell_orders

# 需要导入模块: from selenium.webdriver.support.ui import WebDriverWait [as 别名]
# 或者: from selenium.webdriver.support.ui.WebDriverWait import next [as 别名]
def sell_orders():

    scroll_down()
    #xpath = '//tr[contains(@class,"sell_tr")]'
    while True:

        logging.debug("Getting sell rows")
        xpath = '//table[@id="md-sell"]/tbody/tr[position() <= 5]'
        trs = WebDriverWait(driver, 20).until(
            EC.presence_of_all_elements_located((By.XPATH, xpath)))
        trs = reversed(trs)

        logging.debug("Looping through rows")
        try:
            tr = trs.next()
            _tds = tr.find_elements_by_tag_name('td')
            tds = []
            print "tds = {0}".format(pp.pformat(_tds))
            for td in _tds:
                tds.append(float(td.text))
            so = SellOrder(*tds[0:2])
            logging.debug("yielding sell order: {0}".format(so))
            yield so
        except StaleElementReferenceException:
            logging.debug("StaleElementReferenceException!")
            continue
开发者ID:metaperl,项目名称:cex.io,代码行数:28,代码来源:main.py

示例2: sell_orders

# 需要导入模块: from selenium.webdriver.support.ui import WebDriverWait [as 别名]
# 或者: from selenium.webdriver.support.ui.WebDriverWait import next [as 别名]
def sell_orders():
    scroll_down()
    #xpath = '//tr[contains(@class,"sell_tr")]'
    xpath = '//table[@id="md-sell"]/tbody/tr'
    print 1
    trs = WebDriverWait(driver, 90).until(
        EC.presence_of_all_elements_located((By.XPATH, xpath)))
    trs = iter(trs)
    while True:
        try:
            tr = trs.next()
            _tds = tr.find_elements_by_tag_name('td')
            tds = []
            print "tds = {0}".format(pp.pformat(_tds))
            for td in _tds:
                tds.append(float(td.text))
            so = SellOrder(*tds[0:2])
            yield so
        except StaleElementReferenceException:
            continue
        except StopIteration:
            pass
开发者ID:pombredanne,项目名称:cex.io,代码行数:24,代码来源:main.py


注:本文中的selenium.webdriver.support.ui.WebDriverWait.next方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。