def test_that_user_can_filter_product_by_name_without_mouse(self, mozwebqa_logged_in, product):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa_logged_in)
        manage_products_pg.go_to_manage_products_page()

        filter_item = manage_products_pg.filter_form.filter_without_mouse_by(lookup='name', value='Another Product')

        Assert.false(manage_products_pg.is_product_present(product))

        filter_item.remove_filter()
        manage_products_pg.filter_form.filter_without_mouse_by(lookup='name', value=product['name'])

        Assert.true(manage_products_pg.is_product_present(product))
    def test_that_user_can_create_and_delete_product(self, mozwebqa_logged_in):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa_logged_in)

        product = self.create_product(mozwebqa_logged_in)

        manage_products_pg.filter_form.filter_by(lookup='name', value=product['name'])

        Assert.true(manage_products_pg.is_element_present(*product['locator']))

        manage_products_pg.delete_product(name=product['name'])

        Assert.false(manage_products_pg.is_element_present(*product['locator']))
    def test_that_user_can_filter_product_by_name(self, mozwebqa, login, product):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa)
        manage_products_pg.go_to_manage_products_page()

        filter_item = manage_products_pg.filter_form.filter_by(lookup='name', value='Another Product')

        assert not manage_products_pg.is_product_present(product)

        filter_item.remove_filter()
        manage_products_pg.filter_form.filter_by(lookup='name', value=product['name'])

        assert manage_products_pg.is_product_present(product)
    def test_that_user_can_create_and_delete_product(self, mozwebqa, login):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa)

        product = self.create_product(mozwebqa)

        manage_products_pg.filter_form.filter_by(lookup='name', value=product['name'])

        assert manage_products_pg.is_element_present(*product['locator'])

        manage_products_pg.delete_product(name=product['name'])

        assert not manage_products_pg.is_element_present(*product['locator'])
    def test_that_user_can_filter_product_by_name_without_mouse(self, mozwebqa_logged_in):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa_logged_in)

        product = self.create_product(mozwebqa_logged_in)

        filter_item = manage_products_pg.filter_form.filter_without_mouse_by(lookup='name', value='Another Product')

        Assert.false(manage_products_pg.is_element_present(*product['locator']))

        filter_item.remove_filter()
        manage_products_pg.filter_form.filter_without_mouse_by(lookup='name', value=product['name'])

        Assert.true(manage_products_pg.is_element_present(*product['locator']))

        manage_products_pg.delete_product(name=product['name'])
    def test_that_user_can_create_and_delete_product(self, mozwebqa_logged_in):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa_logged_in)

        product = self.create_product(mozwebqa_logged_in)

        manage_products_pg.filter_products_by_name(name=product['name'])

        Assert.true(manage_products_pg.is_element_present(*product['locator']))

        manage_products_pg.delete_product(name=product['name'])

        Assert.false(
            manage_products_pg.is_element_present(*product['locator']))
Example #7
0
    def delete_product(self, mozwebqa, product):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa)

        manage_products_pg.go_to_manage_products_page()
        manage_products_pg.filter_form.filter_by(lookup='name',
                                                 value=product['name'])
        manage_products_pg.delete_product(name=product['name'])
    def delete_product(self, base_url, selenium, product):
        manage_products_pg = MozTrapManageProductsPage(base_url, selenium)

        manage_products_pg.go_to_manage_products_page()
        manage_products_pg.filter_form.filter_by(lookup='name',
                                                 value=product['name'])
        manage_products_pg.delete_product(name=product['name'])
    def test_that_user_can_create_and_delete_product(self, base_url, selenium,
                                                     login):
        manage_products_pg = MozTrapManageProductsPage(base_url, selenium)

        product = self.create_product(base_url, selenium)

        manage_products_pg.filter_form.filter_by(lookup='name',
                                                 value=product['name'])

        assert manage_products_pg.is_element_present(*product['locator'])

        manage_products_pg.delete_product(name=product['name'])

        assert not manage_products_pg.is_element_present(*product['locator'])
    def test_that_user_can_create_and_delete_product(self, mozwebqa, login):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa)

        product = self.create_product(mozwebqa)

        manage_products_pg.filter_form.filter_by(lookup='name',
                                                 value=product['name'])

        Assert.true(manage_products_pg.is_element_present(*product['locator']))

        manage_products_pg.delete_product(name=product['name'])

        Assert.false(
            manage_products_pg.is_element_present(*product['locator']))
Example #11
0
    def test_that_user_can_filter_product_by_name_without_mouse(
            self, mozwebqa_logged_in, product):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa_logged_in)
        manage_products_pg.go_to_manage_products_page()

        filter_item = manage_products_pg.filter_form.filter_without_mouse_by(
            lookup='name', value='Another Product')

        Assert.false(manage_products_pg.is_product_present(product))

        filter_item.remove_filter()
        manage_products_pg.filter_form.filter_without_mouse_by(
            lookup='name', value=product['name'])

        Assert.true(manage_products_pg.is_product_present(product))
    def test_that_user_can_filter_product_by_name_without_mouse(
            self, base_url, selenium, login, product):
        manage_products_pg = MozTrapManageProductsPage(base_url, selenium)
        manage_products_pg.go_to_manage_products_page()

        filter_item = manage_products_pg.filter_form.filter_without_mouse_by(
            lookup='name', value='Another Product')

        assert not manage_products_pg.is_product_present(product)

        filter_item.remove_filter()
        manage_products_pg.filter_form.filter_without_mouse_by(
            lookup='name', value=product['name'])

        assert manage_products_pg.is_product_present(product)
    def test_that_user_can_filter_product_by_name_without_mouse(
            self, mozwebqa_logged_in):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa_logged_in)

        product = self.create_product(mozwebqa_logged_in)

        manage_products_pg.filter_products_by_name_without_mouse(
            name='Another Product')

        Assert.false(
            manage_products_pg.is_element_present(*product['locator']))

        manage_products_pg.remove_name_filter(name='Another Product')
        manage_products_pg.filter_products_by_name_without_mouse(
            name=product['name'])

        Assert.true(manage_products_pg.is_element_present(*product['locator']))

        manage_products_pg.delete_product(name=product['name'])
Example #14
0
    def delete_product(self, base_url, selenium, product):
        manage_products_pg = MozTrapManageProductsPage(base_url, selenium)

        manage_products_pg.go_to_manage_products_page()
        manage_products_pg.filter_form.filter_by(lookup='name', value=product['name'])
        manage_products_pg.delete_product(name=product['name'])
Example #15
0
    def delete_product(self, mozwebqa, product):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa)

        manage_products_pg.go_to_manage_products_page()
        manage_products_pg.filter_form.filter_by(lookup='name', value=product['name'])
        manage_products_pg.delete_product(name=product['name'])
Example #16
0
    def delete_product(self, mozwebqa, product):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa)

        manage_products_pg.go_to_manage_products_page()
        manage_products_pg.filter_products_by_name(name=product['name'])
        manage_products_pg.delete_product(name=product['name'])
    def test_that_user_can_filter_product_by_name(self, mozwebqa_logged_in):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa_logged_in)

        product = self.create_product(mozwebqa_logged_in)

        manage_products_pg.filter_products_by_name(name='Another Product')

        Assert.false(manage_products_pg.is_element_present(*product['locator']))

        manage_products_pg.remove_name_filter(name='Another Product')
        manage_products_pg.filter_products_by_name(name=product['name'])

        Assert.true(manage_products_pg.is_element_present(*product['locator']))

        manage_products_pg.delete_product(name=product['name'])