示例#1
0
    def test_merge_wrap(self):
        logging.info('==========test_merge_wrap==========')
        cv = CreateView(self.driver)
        cv.create_file('ss')
        time.sleep(1)
        cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)  # 双击进入编辑
        cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)
        for i in range(20):
            self.driver.press_keycode(45)
        self.driver.find_element(By.ID, 'com.yozo.office:id/formulabar_ok').click()
        cv.drag_coordinate(110 + 263 * 2, 295 + 55 * 2, 110 + 263 * 3, 295 + 55 * 2)

        ss = SSView(self.driver)
        ss.group_button_click('编辑')
        ele1 = '//*[@text="编辑"]'
        ele2 = '//*[@text="字体颜色"]'
        ele3 = '//*[@text="单元格填充"]'
        ele4 = '//*[@text="数字格式"]'
        ss.swipe_ele(ele2, ele1)
        ss.swipe_ele(ele3, ele1)
        ss.swipe_ele(ele4, ele1)
        ss.cell_merge_split()
        ss.cell_merge_split()
        ss.cell_auto_wrap()
        ss.cell_auto_wrap()
        time.sleep(3)
示例#2
0
    def test_ss_cell_select(self):
        logging.info('==========test_ss_cell_select==========')
        cv = CreateView(self.driver)
        ss = SSView(self.driver)
        cv.create_file('ss')
        ss.cell_edit()
        self.driver.press_keycode(45)
        self.driver.press_keycode(45)
        self.driver.press_keycode(45)
        self.driver.press_keycode(45)
        self.driver.find_element(
            By.ID, 'com.yozo.office.en:id/formulabar_ok').click()
        gv = GeneralView(self.driver)
        gv.group_button_click(' Edit ')
        gv.font_name(self.file_type)
        gv.font_size(23)
        gv.font_style(self.file_type, '加粗')
        gv.font_style(self.file_type, '倾斜')
        gv.font_style(self.file_type, '删除线')
        gv.font_style(self.file_type, '下划线')
        gv.font_color(self.file_type)

        ele = '//*[@resource-id="com.yozo.office.en:id/yozo_ui_option_content_container"]'
        ss.swipe_options(ele, 'up')
        ss.cell_color()
        ss.cell_align('水平居中', '下对齐')
示例#3
0
 def test_ss_filter_by_num_shortcut(self):
     logging.info('==========test_ss_filter_by_num_shortcut==========')
     ss = SSView(self.driver)
     ov = OpenView(self.driver)
     ov.open_file('screen.xls')
     ss.switch_write_read()
     ss.cell_edit()
     x, y, width, height = ss.cell_location()
     ss.tap(x + width / 2, y - height / 2)
     ss.group_button_click(' View ')
     self.driver.find_element(
         By.ID,
         'com.yozo.office.en:id/yozo_ui_ss_option_id_filter').click()
     x1 = x - 18
     y1 = y - height * 3 - 27
     ss.tap(x1, y1)
     self.driver.find_element(By.XPATH, '//*[@text="自定义"]').click()
     self.driver.find_element(By.XPATH, '//*[@text="前十项"]').click()
     self.driver.find_element(By.ID, 'com.yozo.office.en:id/tv_ok').click()
     ss.tap(x1, y1, 2)  # 非初次需要点两次
     self.driver.find_element(By.XPATH, '//*[@text="自定义"]').click()
     self.driver.find_element(By.XPATH, '//*[@text="高于平均值"]').click()
     ss.tap(x1, y1, 2)
     self.driver.find_element(By.XPATH, '//*[@text="自定义"]').click()
     self.driver.find_element(By.XPATH, '//*[@text="低于平均值"]').click()
示例#4
0
    def test_pop_cell_row_col1(self):  # 单元格、行、列相关操作
        logging.info('==========test_pop_cell_row_col1==========')
        cv = CreateView(self.driver)
        cv.create_file(self.file_type)
        gv = GeneralView(self.driver)
        ss = SSView(self.driver)
        time.sleep(1)
        x, y, width, height = ss.cell_location()  # 新建默认B8
        ss.cell_edit()  # 进入 Edit
        for i in range(8):
            self.driver.press_keycode(random.randint(29, 54))
        self.driver.find_element(
            By.ID, 'com.yozo.office.en:id/formulabar_ok').click()
        time.sleep(0.5)
        cv.tap(x + width * 0.5, y + height * 0.5)  # 复制粘贴
        gv.pop_menu_click('copy')
        cv.tap(x + width * 1.5, y + height * 1.5)
        cv.tap(x + width * 1.5, y + height * 1.5)
        gv.pop_menu_click('paste')

        cv.tap(x + width * 0.5, y + height * 0.5)
        gv.pop_menu_click('cut')
        cv.tap(x + width * 2.5, y + height * 2.5)
        cv.tap(x + width * 2.5, y + height * 2.5)
        gv.pop_menu_click('paste')

        x, y = gv.find_pic_position('drag_point2')  # 多选单元格
        gv.drag_coordinate(x, y, x + width, y + height)
示例#5
0
 def test_ss_filter1(self):
     logging.info('==========test_ss_filter1==========')
     gv = GeneralView(self.driver)
     ss = SSView(self.driver)
     cv = CreateView(self.driver)
     cv.create_file(self.file_type)
     gv.group_button_click(' View ')
     self.driver.find_element(
         By.ID,
         'com.yozo.office.en:id/yozo_ui_ss_option_id_filter').click()
     tip = self.driver.find_element(By.ID,
                                    'com.yozo.office.en:id/text_content')
     self.assertTrue(tip != None)
     self.driver.find_element(By.ID,
                              'com.yozo.office.en:id/btn_right').click()
     ss.cell_edit()
     x, y, width, height = ss.cell_location()
     self.driver.press_keycode(15)
     self.driver.press_keycode(7)
     self.driver.press_keycode(7)
     self.driver.press_keycode(7)
     gv.tap(x + width / 2, y - height / 2)
     gv.group_button_click(' View ')
     self.driver.find_element(
         By.ID,
         'com.yozo.office.en:id/yozo_ui_ss_option_id_filter').click()
     state = self.driver.find_element(
         By.ID,
         'com.yozo.office.en:id/yozo_ui_option_group_checkbox_switch').text
     self.assertTrue(state == 'ON')
     print(x, y)
     gv.tap(x + width - 10, y + height)
示例#6
0
    def test_ss_merge_wrap(self):
        logging.info('==========test_ss_merge_wrap==========')
        gv = GeneralView(self.driver)
        cv = CreateView(self.driver)
        cv.create_file('ss')
        ss = SSView(self.driver)
        ss.cell_edit()
        x, y, width, height = ss.cell_location()
        for i in range(20):
            self.driver.press_keycode(45)
        self.driver.find_element(
            By.ID, 'com.yozo.office.en:id/formulabar_ok').click()
        ss.tap(x + width * 1.5, y + height * 2.5)
        x1, y1 = gv.find_pic_position("drag_point1")
        cv.drag_coordinate(x1, y1, x, y)

        ss.group_button_click(' Edit ')
        ele = '//*[@resource-id="com.yozo.office.en:id/yozo_ui_option_content_container"]'
        ss.swipe_options(ele, 'up')
        ss.swipe_options(ele, 'up')
        ss.swipe_options(ele, 'up')
        ss.cell_merge_split()
        ss.cell_merge_split()
        ss.cell_auto_wrap()
        ss.cell_auto_wrap()
        time.sleep(1)
示例#7
0
 def test_ss_filter_cd1_none(self):
     logging.info('==========test_ss_filter_cd1_none==========')
     ss = SSView(self.driver)
     ov = OpenView(self.driver)
     ov.open_file('screen.xls')
     ss.switch_write_read()
     ss.cell_edit()
     x, y, width, height = ss.cell_location()
     ss.tap(x + width / 2, y - height / 2)
     ss.group_button_click(' View ')
     self.driver.find_element(
         By.ID,
         'com.yozo.office.en:id/yozo_ui_ss_option_id_filter').click()
     for i in range(3):
         x1 = x - width * (1 - i) - 18
         y1 = y - height * 3 - 27
         ss.tap(x1, y1)
         self.driver.find_element(By.XPATH, '//*[@text="自定义"]').click()
         self.driver.find_element(
             By.ID, 'com.yozo.office.en:id/tv_filter_condition1').click()
         self.driver.find_element(
             By.XPATH,
             '//android.widget.ListView/android.widget.LinearLayout[1]'
         ).click()
         self.driver.find_element(
             By.ID, 'com.yozo.office.en:id/tv_ss_filter_ok').click()
         self.assertTrue(ss.get_toast_message('第一个条件不能为空'))
         self.driver.find_element(
             By.ID, 'com.yozo.office.en:id/iv_ss_customize_back').click()
示例#8
0
    def test_insert_chart1(self, file_type):
        logging.info('==========test_insert_chart1==========')
        cv = CreateView(self.driver)
        cv.create_file(file_type)
        gv = GeneralView(self.driver)
        ss = SSView(self.driver)

        time.sleep(1)
        if file_type == 'ss':
            x, y, width, height = ss.cell_location()
            for i in range(3):
                cv.tap(x + width * 0.5, y + height * (i + 0.5))
                ss.cell_edit()  # 双击进入编辑
                self.driver.press_keycode(random.randint(7, 16))
            gv.drag_coordinate(x, y + height * 2, x, y)

        gv.group_button_click(' Insert ')
        if file_type == 'pg':
            ele1 = '//*[@text=" Slide "]'
            ele2 = '//*[@text=" Picture "]'
            gv.swipe_ele(ele2, ele1)
        gv.insert_chart_insert(' Column Chart ', random.randint(1, 9))
        gv.chart_color(random.randint(1, 8))
        gv.chart_element(file_type, '大标题', 1, 1, 1)
        gv.chart_element_XY('x', 'x', 0, 1, 1, 1, 1, 1)
        gv.chart_element_XY('y', 'y', 0, 1, 1, 0, 1, 0)
        self.driver.find_element(
            By.ID, 'com.yozo.office.en:id/yozo_ui_option_back_button').click()
        gv.change_row_column()
        time.sleep(3)
示例#9
0
    def test_insert_shape(self):
        logging.info('==========test_insert_shape==========')
        cv = CreateView(self.driver)
        cv.create_file('ss', 0)

        gv = GeneralView(self.driver)
        ss = SSView(self.driver)
        ss.insert_chart()
        gv.insert_shape('ss')
示例#10
0
    def test_shape_attr1(self, file_type):  # 文本框字符属性
        logging.info('==========test_shape_attr1==========')
        cv = CreateView(self.driver)
        cv.create_file(file_type)
        gv = GeneralView(self.driver)
        x1, y1 = 0, 0
        if file_type == 'ss':
            ss = SSView(self.driver)
            x1, y1, w, h = ss.cell_location()
            self.driver.find_element(
                By.ID, 'com.yozo.office.en:id/formulabar_ok').click()

        gv.group_button_click(' Insert ')
        gv.insert_shape(file_type)
        time.sleep(1)
        x, y = gv.find_pic_position('drag_all')
        gv.tap(x, y)  # 进入编辑
        gv.pop_menu_click('editText')

        if file_type == 'ss':
            gv.fold_expand()
            gv.fold_expand()
            x, y = gv.find_pic_position('drag_all')
            gv.tap(x, y)  # 进入编辑
            gv.pop_menu_click('editText')

        for i in range(50):
            self.driver.press_keycode(random.randint(7, 16))

        if file_type == 'pg':
            gv.tap(250, 250)
            gv.tap(550, 850)
        elif file_type == 'ss':
            gv.tap(x1, y1)
            gv.tap(x, y)
        else:
            gv.tap(250, 450)
            time.sleep(1)
            gv.fold_expand()
            gv.tap(x, y)
            time.sleep(1)
        gv.fold_expand()

        gv.shape_option(file_type, 5, width=5, height=5)
        gv.shape_option(file_type, 6, top=0.5, bottom=0.5, left=0.5, right=0.5)
        ele1 = '//*[@text=" Shape "]'
        ele2 = '//*[@text=" Outline "]'
        ele3 = '//*[@text=" Effect "]'
        if file_type == 'pg':
            ele0 = '//*[@text=" Insert "]'
            gv.swipe_ele(ele0, ele1)
        gv.swipe_ele(ele2, ele1)
        gv.swipe_ele(ele3, ele1)
        gv.shape_content_align(file_type, '右对齐', '下对齐')
        gv.shape_content_align(file_type)
        gv.shape_content_align(file_type, '水平居中', '垂直居中')
        time.sleep(3)
示例#11
0
    def test_cell_border(self):  # 遍历边框所有功能
        logging.info('==========test_cell_border==========')
        cv = CreateView(self.driver)
        cv.create_file('ss')

        ss = SSView(self.driver)
        ss.group_button_click('编辑')
        time.sleep(1)
        self.driver.swipe(200, 1856, 200, 1150, 2000)
        ss.cell_border()
示例#12
0
    def test_formula1(self):  # 其他类型公式
        logging.info('==========test_formula1==========')
        cv = CreateView(self.driver)
        ss = SSView(self.driver)
        cv.create_file('ss')
        time.sleep(1)

        x, y, width, height = ss.cell_location()  # cell B8
        for i in range(6):
            ss.tap(x + width * 1.5, y + height * (1.5 + i))
            ss.tap(x + width * 0.5, y + height * (1.5 + i))
            ss.cell_edit()
            self.driver.press_keycode(random.randint(7, 16))

        formula_dic = {
            ' Recently Used ': 'MAX',
            ' Math and Trig ': 'GCD',
            ' Financial ': 'DOLLARDE',
            ' Logical ': 'AND',
            ' Text ': 'CONCATENATE',
            ' Date and Time ': 'DATE',
            ' Lookup and Reference ': 'CHOOSE',
            ' Statistical ': 'AVERAGE',
            ' Engineering ': 'IMPRODUCT',
            ' Database ': 'GETPIVOTDATA',
            ' Information ': 'ISBLANK',
            ' ALL ': 'MAX'
        }

        keys_list = [
            ' Recently Used ', ' Math and Trig ', ' Financial ', ' Logical ',
            ' Text ', ' Date and Time ', ' Lookup and Reference ',
            ' Statistical ', ' Engineering ', ' Database ', ' Information ',
            ' All '
        ]
        for i in keys_list:
            if keys_list.index(i) > 5:
                ss.tap(x + width * 2.5,
                       y + height * (1.5 + keys_list.index(i) - 5))
            else:
                ss.tap(x + width * 1.5,
                       y + height * (1.5 + keys_list.index(i)))
            ss.formula_all(i, formula_dic.get(i))
            print(i, formula_dic.get(i))
            # cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)
            if i == ' Database ' or i == ' Date and Time ':
                m = 3
            elif i == ' Information ':
                m = 1
            else:
                m = 6
            for n in range(m):
                ss.tap(x + width * 0.5, y + height * (1.5 + n))
            self.driver.find_element(
                By.ID, 'com.yozo.office.en:id/formulabar_ok').click()
示例#13
0
 def test_sheet_operation1(self):  # sheet相关功能
     logging.info('==========test_sheet_operation1==========')
     cv = CreateView(self.driver)
     cv.create_file('ss')
     ss = SSView(self.driver)
     ss.show_sheet()
     ss.operate_sheet(0, 'insert')
     ss.operate_sheet(0, 'copy')
     ss.operate_sheet(0, 'remove')
     ss.operate_sheet(0, 'hide')
     ss.unhide_sheet(0, 0)
示例#14
0
 def test_sheet_operation(self):  # sheet相关功能
     logging.info('==========test_sheet_operation==========')
     cv = CreateView(self.driver)
     cv.create_file('ss')
     ss = SSView(self.driver)
     ss.show_sheet()
     ss.hide_sheet()
     ss.show_sheet()
     ss.add_sheet()
     ss.rename_sheet(0, 'test')
     self.assertTrue(ss.check_rename_sheet(0, 'test'))
示例#15
0
    def test_ss_cell_border(self):  # 遍历边框所有功能
        logging.info('==========test_ss_cell_border==========')
        cv = CreateView(self.driver)
        cv.create_file('ss')

        ss = SSView(self.driver)
        ss.group_button_click(' Edit ')
        ele = '//*[@resource-id="com.yozo.office.en:id/yozo_ui_option_content_container"]'
        ss.swipe_options(ele, 'up')
        ss.swipe_options(ele, 'up')
        ss.cell_border()
示例#16
0
 def test_drag_sheet(self):  # sheet拖动
     logging.info('==========test_drag_sheet==========')
     cv = CreateView(self.driver)
     cv.create_file('ss')
     ss = SSView(self.driver)
     ss.show_sheet()
     ss.add_sheet()
     ss.add_sheet()
     ele1 = ss.get_element('//*[@resource-id="com.yozo.office:id/ll_ss_sheet_item"and @index="0"]')
     ele2 = ss.get_element('//*[@resource-id="com.yozo.office:id/ll_ss_sheet_item"and @index="2"]')
     # ele1 = ss.find_element(By.XPATH, '//*[@resource-id="com.yozo.office:id/ll_ss_sheet_item"and @index="0"]')
     # ele2 = ss.find_element(By.XPATH, '//*[@resource-id="com.yozo.office:id/ll_ss_sheet_item"and @index="2"]')
     ss.drag_element(ele1, ele2)
示例#17
0
    def test_insert_shape(self, file_type):
        logging.info('==========test_insert_shape==========')
        cv = CreateView(self.driver)
        cv.create_file(file_type)

        gv = GeneralView(self.driver)
        ss = SSView(self.driver)
        # ss.insert_chart()
        gv.group_button_click(' Insert ')
        gv.insert_shape(file_type)
        for i in range(5):
            gv.shape_insert(file_type, 6, random.randint(1, 42))
        time.sleep(3)
示例#18
0
    def test_insert_shape(self, type):
        logging.info('==========test_insert_shape==========')
        cv = CreateView(self.driver)
        cv.create_file(type)

        gv = GeneralView(self.driver)
        ss = SSView(self.driver)
        # ss.insert_chart()
        gv.group_button_click('插入')
        gv.insert_shape(type)
        for i in range(42):
            gv.shape_insert(type, 6, i)
        time.sleep(3)
示例#19
0
    def test_formula(self):
        logging.info('==========test_formula==========')
        cv = CreateView(self.driver)
        cv.create_file('ss', 0)
        time.sleep(1)
        for i in range(10):
            cv.tap(110 + 263 * 1.5, 295 + 55 * (1.5 + i))  # 双击进入编辑
            cv.tap(110 + 263 * 1.5, 295 + 55 * (1.5 + i))
            self.driver.press_keycode(random.randint(7, 16))
        ss = SSView(self.driver)

        cv.tap(110 + 263 * 2.5, 295 + 55 * 1.5)  # 求和
        ss.auto_sum('求和')
        for i in range(10):
            time.sleep(1)
            cv.tap(110 + 263 * 1.5, 295 + 55 * (1.5 + i))
        self.driver.find_element(By.ID,
                                 'com.yozo.office:id/formulabar_ok').click()

        cv.tap(110 + 263 * 2.5, 295 + 55 * 2.5)  # 平均值
        ss.auto_sum('平均值')
        for i in range(10):
            time.sleep(1)
            cv.tap(110 + 263 * 1.5, 295 + 55 * (1.5 + i))
        self.driver.find_element(By.ID,
                                 'com.yozo.office:id/formulabar_ok').click()

        cv.tap(110 + 263 * 2.5, 295 + 55 * 3.5)  # 计数
        ss.auto_sum('计数')
        for i in range(10):
            time.sleep(1)
            cv.tap(110 + 263 * 1.5, 295 + 55 * (1.5 + i))
        self.driver.find_element(By.ID,
                                 'com.yozo.office:id/formulabar_ok').click()

        cv.tap(110 + 263 * 2.5, 295 + 55 * 4.5)  # 最大值
        ss.auto_sum('最大值')
        for i in range(10):
            time.sleep(1)
            cv.tap(110 + 263 * 1.5, 295 + 55 * (1.5 + i))
        self.driver.find_element(By.ID,
                                 'com.yozo.office:id/formulabar_ok').click()

        cv.tap(110 + 263 * 2.5, 295 + 55 * 5.5)  # 最小值
        ss.auto_sum('最小值')
        for i in range(10):
            time.sleep(1)
            cv.tap(110 + 263 * 1.5, 295 + 55 * (1.5 + i))
        self.driver.find_element(By.ID,
                                 'com.yozo.office:id/formulabar_ok').click()
        time.sleep(3)
示例#20
0
    def test_ss_cell_options(self):  # 插入删除行宽列高清除
        logging.info('==========test_ss_cell_options==========')
        cv = CreateView(self.driver)
        cv.create_file('ss')
        ss = SSView(self.driver)
        ss.cell_edit()
        # x, y, width, height = ss.cell_location()
        # ss.tap(x - width * 2, y - height * 4)
        # ss.cell_edit()
        for i in range(20):
            self.driver.press_keycode(45)
        self.driver.find_element(
            By.ID, 'com.yozo.office.en:id/formulabar_ok').click()
        ss.group_button_click(' Edit ')
        gv = GeneralView(self.driver)
        gv.font_style(self.file_type, '删除线')

        ele = '//*[@resource-id="com.yozo.office.en:id/yozo_ui_option_content_container"]'
        ss.swipe_options(ele, 'up')
        ss.swipe_options(ele, 'up')
        ss.swipe_options(ele, 'up')
        ss.swipe_options(ele, 'up')

        ss.cell_insert('右移')
        ss.cell_insert('下移')
        ss.cell_insert('插入整行')
        ss.cell_insert('插入整列')
        ss.cell_delete('删除整列')
        ss.cell_delete('删除整行')
        ss.cell_delete('上移')
        ss.cell_delete('左移')

        ss.cell_clear('清除格式')
        gv.undo_option()
        ss.cell_clear('清除内容')
        gv.undo_option()
        ss.cell_clear('清除所有')
        gv.undo_option()

        ss.swipe_options(ele, 'up')
        ss.cell_set_size(5, 5)
        ss.group_button_click(' Edit ')

        ss.swipe_options(ele, 'down')
        ss.cell_fit_height()
        ss.cell_fit_width()
        time.sleep(1)
示例#21
0
    def test_cell_insert_delete_fit(self):  # 插入删除行宽列高清除
        logging.info('==========test_cell_inser_delete_fit==========')
        cv = CreateView(self.driver)
        type = 'ss'
        cv.create_file('ss')
        time.sleep(1)
        cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)  # 双击进入编辑
        cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)
        for i in range(20):
            self.driver.press_keycode(45)
        self.driver.find_element(By.ID, 'com.yozo.office:id/formulabar_ok').click()
        ss = SSView(self.driver)
        ss.group_button_click('编辑')
        gv = GeneralView(self.driver)
        gv.font_style(type, '删除线')

        ele1 = '//*[@text="编辑"]'
        ele2 = '//*[@text="字体颜色"]'
        ele3 = '//*[@text="单元格填充"]'
        ele4 = '//*[@text="数字格式"]'
        ele5 = '//*[@text="插入单元格"]'
        ele6 = '//*[@text="删除单元格"]'
        ele7 = '//*[@text="设置行高列宽"]'
        ss.swipe_ele(ele2, ele1)
        ss.swipe_ele(ele3, ele1)
        ss.swipe_ele(ele4, ele1)
        ss.cell_insert('右移')
        ss.cell_insert('下移')
        ss.cell_insert('插入整行')
        ss.cell_insert('插入整列')
        ss.cell_delete('删除整列')
        ss.cell_delete('删除整行')
        ss.cell_delete('上移')
        ss.cell_delete('左移')
        ss.swipe_ele(ele5, ele1)
        ss.cell_set_size(5, 5)
        ss.group_button_click('编辑')
        ss.cell_clear('清除格式')
        gv.undo_option()
        ss.cell_clear('清除内容')
        gv.undo_option()
        ss.cell_clear('清除所有')
        gv.undo_option()
        ss.swipe_ele(ele6, ele7)
        ss.cell_fit_height()
        ss.cell_fit_width()
        time.sleep(3)
示例#22
0
 def test_ss_filter_by_text(self):
     logging.info('==========test_ss_filter_by_text==========')
     ss = SSView(self.driver)
     ov = OpenView(self.driver)
     ov.open_file('screen.xls')
     ss.switch_write_read()
     ss.cell_edit()
     x, y, width, height = ss.cell_location()
     ss.tap(x + width / 2, y - height / 2)
     ss.group_button_click(' View ')
     self.driver.find_element(
         By.ID,
         'com.yozo.office.en:id/yozo_ui_ss_option_id_filter').click()
     x1 = x + width - 18
     y1 = y - height * 3 - 27
     ss.filter_data(x1, y1, '自定义', TEXT_FILTER[random.randint(1, 12)],
                    TEXT_FILTER[random.randint(1, 12)])
示例#23
0
    def test_pop_cell_row_col3(self):  # 单元格、行、列相关操作
        logging.info('==========test_pop_cell_row_col3==========')
        cv = CreateView(self.driver)
        cv.create_file(self.file_type)
        gv = GeneralView(self.driver)
        ss = SSView(self.driver)
        time.sleep(1)

        x, y, width, height = ss.cell_location()  # 新建默认B8
        cv.tap(x + width * 0.5, y - height * 5.5)
        ss.cell_edit()  # 进入 Edit
        for i in range(8):
            self.driver.press_keycode(random.randint(29, 54))
        self.driver.find_element(
            By.ID, 'com.yozo.office.en:id/formulabar_ok').click()
        time.sleep(0.5)

        x1, y1, x2, y2 = ss.row_col_loc()
        ss.tap(x2 + width * 1.5, y2 - 10)
        gv.pop_menu_click('insert')
        ss.tap(x2 + width * 1.5, y2 - 10)
        gv.pop_menu_click('delete')
        ss.tap(x2 + width * 1.5, y2 - 10)
        gv.pop_menu_click('copy')
        ss.tap(x2 + width * 2.5, y2 - 10)
        x3, y3 = gv.find_pic_position('copy')
        x4, y4 = gv.find_pic_position('insert')
        gv.swipe(x3, y3, x4, y4)
        time.sleep(1)
        gv.pop_menu_click('paste')
        ss.tap(x2 + width * 1.5, y2 - 10)
        gv.pop_menu_click('cut')
        ss.tap(x2 + width * 2.5, y2 - 10)
        gv.pop_menu_click('paste')
        ss.tap(x2 + width * 1.5, y2 - 10)
        gv.pop_menu_click('hide')
        ss.tap(x2 + width * 1.5, y2 - 10)
        x3, y3 = gv.find_pic_position('hide')
        x4, y4 = gv.find_pic_position('copy')
        gv.swipe(x3, y3, x4, y4)
        time.sleep(1)
        gv.pop_menu_click('hide_cancel')
        ss.tap(x2 + width * 1.5, y2 - 10)
        x, y = gv.find_pic_position('column_right')
        gv.drag_coordinate(x, y, x + width, y)
        gv.drag_coordinate(x, y2 - 10, x + width, y2 - 10)
示例#24
0
    def test_ss_chart_pop(self):  # 图表相关操作
        logging.info('==========test_ss_chart_pop==========')
        cv = CreateView(self.driver)
        cv.create_file(self.file_type)
        ss = SSView(self.driver)
        gv = GeneralView(self.driver)
        time.sleep(2)
        x, y, width, height = ss.object_position('drag_point1', 'drag_point2')
        ss.tap(x, y)
        time.sleep(2)
        ss.pop_menu_click('edit')
        self.driver.press_keycode(12)
        ss.tap(x, y + height)
        time.sleep(1)

        ss.tap(x, y + height)
        time.sleep(2)
        ss.pop_menu_click('edit')
        self.driver.press_keycode(15)
        self.driver.find_element(
            By.ID, 'com.yozo.office.en:id/formulabar_ok').click()
        # ss.tap(x, y)
        x, y = ss.find_pic_position('drag_point1')
        ss.swipe(x, y, x, y - height)
        time.sleep(1)
        ss.group_button_click(' Insert ')
        gv.insert_chart_insert(' Column Chart ', 2)

        x, y, width, height = ss.object_position('chart_all1', 'chart_all4')
        ss.tap(x, y)
        time.sleep(2)
        ss.pop_menu_click('cut')
        ss.tap(x, y)
        time.sleep(2)
        ss.tap(x, y)
        ss.pop_menu_click('paste')
        ss.tap(x, y)
        time.sleep(2)
        ss.pop_menu_click('copy')
        ss.tap(x, y)
        time.sleep(2)
        ss.pop_menu_click('paste')
        ss.swipe(x, y, x - 100, y + 100)
        x, y = ss.find_pic_position('chart_all1')
        ss.swipe(x, y, x - 100, y - 100)
示例#25
0
    def test_ss_num_format(self):
        logging.info('==========test_num_style==========')
        cv = CreateView(self.driver)
        cv.create_file('ss')
        ss = SSView(self.driver)
        ss.cell_edit()
        self.driver.press_keycode(15)
        self.driver.press_keycode(7)
        self.driver.press_keycode(7)
        self.driver.press_keycode(7)
        self.driver.find_element(
            By.ID, 'com.yozo.office.en:id/formulabar_ok').click()

        ss.group_button_click(' Edit ')
        ele = '//*[@resource-id="com.yozo.office.en:id/yozo_ui_option_content_container"]'
        ss.swipe_options(ele, 'up')
        ss.swipe_options(ele, 'up')
        ss.cell_num_format()
示例#26
0
    def test_cell_attr(self):
        logging.info('==========test_cell_attr==========')
        cv = CreateView(self.driver)
        cv.create_file('ss')
        time.sleep(1)
        cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)  # 双击进入编辑
        cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)
        self.driver.press_keycode(45)
        self.driver.press_keycode(45)
        self.driver.press_keycode(45)
        self.driver.press_keycode(45)
        self.driver.find_element(By.ID, 'com.yozo.office:id/formulabar_ok').click()

        ss = SSView(self.driver)
        ss.group_button_click('编辑')
        time.sleep(1)
        self.driver.swipe(200, 1856, 200, 1150, 2000)
        ss.cell_align('水平居中', '下对齐')
示例#27
0
 def test_table_style(self):  # 表格样式
     logging.info('==========test_table_style==========')
     cv = CreateView(self.driver)
     cv.create_file('ss')
     time.sleep(1)
     cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)
     cv.drag_coordinate(110 + 263 * 2, 295 + 55 * 2, 110 + 263 * 3, 295 + 55 * 4)
     ss = SSView(self.driver)
     ss.group_button_click('编辑')
     ele1 = '//*[@text="编辑"]'
     ele2 = '//*[@text="字体颜色"]'
     ele3 = '//*[@text="单元格填充"]'
     ele4 = '//*[@text="数字格式"]'
     ele5 = '//*[@text="插入单元格"]'
     ss.swipe_ele(ele2, ele1)
     ss.swipe_ele(ele3, ele1)
     ss.swipe_ele(ele4, ele1)
     ss.swipe_ele(ele5, ele1)
     ss.table_style()
示例#28
0
 def test_table_style(self):  # 表格样式
     logging.info('==========test_table_style==========')
     cv = CreateView(self.driver)
     cv.create_file('ss')
     time.sleep(1)
     cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)
     cv.drag_coordinate(110 + 263 * 2, 295 + 55 * 2, 110 + 263 * 3,
                        295 + 55 * 4)
     ss = SSView(self.driver)
     ss.group_button_click(' Edit ')
     ele1 = '//*[@text=" Edit "]'
     ele2 = '//*[@text=" Font Color "]'
     ele3 = '//*[@text=" Cell Fill "]'
     ele4 = '//*[@text=" Number Format "]'
     ele5 = '//*[@text=" Insert Cell "]'
     ss.swipe_ele(ele2, ele1)
     ss.swipe_ele(ele3, ele1)
     ss.swipe_ele(ele4, ele1)
     ss.swipe_ele(ele5, ele1)
     ss.table_style()
示例#29
0
 def test_table_style(self):  # 表格样式
     logging.info('==========test_table_style==========')
     cv = CreateView(self.driver)
     cv.create_file('ss', 0)
     time.sleep(1)
     cv.tap(110 + 263 * 1.5, 295 + 55 * 1.5)
     cv.drag_coordinate(110 + 263 * 2, 295 + 55 * 2, 110 + 263 * 3,
                        295 + 55 * 4)
     ss = SSView(self.driver)
     ss.group_button_click('编辑')
     ele1 = '//*[@resource-id="com.yozo.office:id/yozo_ui_ss_option_id_font_name"]'
     ele2 = '//*[@text="单元格填充"]'
     ele3 = '//*[@text="数字格式"]'
     ele4 = '//*[@text="插入单元格"]'
     ele5 = '//*[@text="设置行高列宽"]'
     ss.swipe_ele(ele2, ele1)
     ss.swipe_ele(ele3, ele2)
     ss.swipe_ele(ele4, ele3)
     ss.swipe_ele(ele5, ele4)
     ss.table_style()
示例#30
0
 def test_ss_filter_by_color(self):
     logging.info('==========test_ss_filter_cd1_none==========')
     ss = SSView(self.driver)
     ov = OpenView(self.driver)
     ov.open_file('screen.xls')
     ss.switch_write_read()
     ss.cell_edit()
     x, y, width, height = ss.cell_location()
     ss.tap(x + width / 2, y - height / 2)
     ss.group_button_click(' View ')
     self.driver.find_element(
         By.ID,
         'com.yozo.office.en:id/yozo_ui_ss_option_id_filter').click()
     x1 = x - width - 18
     y1 = y - height * 3 - 27
     ss.tap(x1, y1)
     self.driver.find_element(By.XPATH, '//*[@text="自定义"]').click()
     self.driver.find_element(
         By.ID, 'com.yozo.office.en:id/tv_filter_color_type').click()
     time.sleep(1)
     self.driver.find_element(By.XPATH, '//*[@text="字体颜色"]').click()
     eles = self.driver.find_elements(
         By.XPATH,
         '//android.support.v7.widget.RecyclerView/android.widget.RelativeLayout'
     )
     eles[random.randint(0, len(eles) - 1)].click()
     self.driver.find_element(
         By.ID, 'com.yozo.office.en:id/tv_ss_filter_ok').click()
     ss.tap(x1, y1, 2)
     self.driver.find_element(By.XPATH, '//*[@text="自定义"]').click()
     self.driver.find_element(
         By.ID, 'com.yozo.office.en:id/tv_filter_color_type').click()
     time.sleep(1)
     self.driver.find_element(By.XPATH, '//*[@text="单元格颜色"]').click()
     eles = self.driver.find_elements(
         By.XPATH,
         '//android.support.v7.widget.RecyclerView/android.widget.RelativeLayout'
     )
     eles[random.randint(0, len(eles) - 1)].click()
     self.driver.find_element(
         By.ID, 'com.yozo.office.en:id/tv_ss_filter_ok').click()