本文整理匯總了Python中selenium.webdriver.common.keys.Keys.UP屬性的典型用法代碼示例。如果您正苦於以下問題:Python Keys.UP屬性的具體用法?Python Keys.UP怎麽用?Python Keys.UP使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類selenium.webdriver.common.keys.Keys
的用法示例。
在下文中一共展示了Keys.UP屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: play
# 需要導入模塊: from selenium.webdriver.common.keys import Keys [as 別名]
# 或者: from selenium.webdriver.common.keys.Keys import UP [as 別名]
def play():
"""
Args:
None
Returns:
None
"""
driver = webdriver.Firefox(executable_path='/Users/keneudeh/Downloads/geckodriver')
driver.get('https://play2048.co/')
key_select = [Keys.UP, Keys.DOWN, Keys.LEFT, Keys.RIGHT]
gameStatusElem = driver.find_element_by_css_selector('.game-container p')
htmlElem = driver.find_element_by_css_selector('html')
while gameStatusElem.text != 'Game over!':
htmlElem.send_keys(key_select[random.randint(0, 3)])
gameStatusElem = driver.find_element_by_css_selector('.game-container p')
score = driver.find_element_by_css_selector('.score-container').text
print(f'You scored: {score}')
示例2: test_history_in_console
# 需要導入模塊: from selenium.webdriver.common.keys import Keys [as 別名]
# 或者: from selenium.webdriver.common.keys.Keys import UP [as 別名]
def test_history_in_console(self, notebook):
notebook.edit_prompt_cell("a = 1", execute=True)
assert "" == notebook.get_prompt_content()
notebook.edit_prompt_cell("b <- 2", kernel="R", execute=True)
assert "" == notebook.get_prompt_content()
notebook.prompt_cell.send_keys(Keys.UP)
assert "b <- 2" == notebook.get_prompt_content()
notebook.prompt_cell.send_keys(Keys.UP)
assert "a = 1" == notebook.get_prompt_content()
# FIXME: down keys does not work, perhaps because the cell is not focused and
# the first step would be jumping to the end of the line
notebook.prompt_cell.send_keys(Keys.DOWN)
notebook.prompt_cell.send_keys(Keys.DOWN)
# assert 'b <- 2' == notebook.get_prompt_content()