def test_share_button(self):
with self.running_container():
self.open_application_settings()
self.click_first_element_located(By.ID, "share-button")
self.click_first_element_located(By.ID, "cp-clipboard-button")
# Now the share url should be in the clipboard
input_element = self.driver.find_element_by_id("shared-url")
# Clear the input element and paste what is in the clipboard in
# order to retrieve it (lacking better way to retrieve the clipboard
# value)
input_element.clear()
input_element.send_keys(Keys.CONTROL, 'v')
clipboard_value = input_element.get_attribute("value")
# Go to the shared url
self.driver.get(clipboard_value)
self.wait_until_presence_of_element_located(By.ID, "noVNC_screen")
# Go back to simphony-remote
self.driver.back()
self.wait_until_application_list_loaded()
test_share_application.py 文件源码
python
阅读 21
收藏 0
点赞 0
评论 0
评论列表
文章目录