Ubuntu Pastebin

Paste from balloons at Thu, 29 Jan 2015 21:22:45 +0000

Download as text
1
2
3
4
5
6
7
8
    def change_feeds_topic(self, name):
        """ change feed's topic """
        topicValueselector = self._get_editfeed_topic_valueselector()
        self.pointing_device.click_object(topicValueselector)
        topicValueselector.expanded.wait_for(True)
        newTopic = self._get_editfeed_valueselector_value(name)
        newTopic.visible.wait_for(True)
        self.pointing_device.click_object(newTopic)
Download as text