├── .gitignore ├── README.md ├── behave.ini ├── features ├── AddProduct.feature ├── AddressVerification.feature ├── CartSummary.feature ├── CompletePurchase.feature ├── CompleteShoppingCart.feature ├── ConfirmOrder.feature ├── Login.feature ├── PaymentMethod.feature ├── ShippingAddress.feature ├── __init__.py ├── environment.py ├── lib │ ├── __init__.py │ ├── pagefactory.py │ └── pages │ │ ├── __init__.py │ │ ├── address_page.py │ │ ├── automation_home_page.py │ │ ├── automation_home_page1.py │ │ ├── base_page_object.py │ │ ├── checkout_page.py │ │ ├── login_page.py │ │ ├── order_confirmation_page.py │ │ ├── order_summary_page.py │ │ ├── payment_method_page.py │ │ ├── shipping_address_page.py │ │ ├── shopping_cart_summary_page.py │ │ └── summer_dresses_catalog_page.py └── steps │ └── ShoppingCart.py ├── requirements.text ├── results.json └── sonar-project.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/README.md -------------------------------------------------------------------------------- /behave.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/behave.ini -------------------------------------------------------------------------------- /features/AddProduct.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/AddProduct.feature -------------------------------------------------------------------------------- /features/AddressVerification.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/AddressVerification.feature -------------------------------------------------------------------------------- /features/CartSummary.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/CartSummary.feature -------------------------------------------------------------------------------- /features/CompletePurchase.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/CompletePurchase.feature -------------------------------------------------------------------------------- /features/CompleteShoppingCart.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/CompleteShoppingCart.feature -------------------------------------------------------------------------------- /features/ConfirmOrder.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/ConfirmOrder.feature -------------------------------------------------------------------------------- /features/Login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/Login.feature -------------------------------------------------------------------------------- /features/PaymentMethod.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/PaymentMethod.feature -------------------------------------------------------------------------------- /features/ShippingAddress.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/ShippingAddress.feature -------------------------------------------------------------------------------- /features/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'pmacharl' 2 | -------------------------------------------------------------------------------- /features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/environment.py -------------------------------------------------------------------------------- /features/lib/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'pmacharl' 2 | -------------------------------------------------------------------------------- /features/lib/pagefactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pagefactory.py -------------------------------------------------------------------------------- /features/lib/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/__init__.py -------------------------------------------------------------------------------- /features/lib/pages/address_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/address_page.py -------------------------------------------------------------------------------- /features/lib/pages/automation_home_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/automation_home_page.py -------------------------------------------------------------------------------- /features/lib/pages/automation_home_page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/automation_home_page1.py -------------------------------------------------------------------------------- /features/lib/pages/base_page_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/base_page_object.py -------------------------------------------------------------------------------- /features/lib/pages/checkout_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/checkout_page.py -------------------------------------------------------------------------------- /features/lib/pages/login_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/login_page.py -------------------------------------------------------------------------------- /features/lib/pages/order_confirmation_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/order_confirmation_page.py -------------------------------------------------------------------------------- /features/lib/pages/order_summary_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/order_summary_page.py -------------------------------------------------------------------------------- /features/lib/pages/payment_method_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/payment_method_page.py -------------------------------------------------------------------------------- /features/lib/pages/shipping_address_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/shipping_address_page.py -------------------------------------------------------------------------------- /features/lib/pages/shopping_cart_summary_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/shopping_cart_summary_page.py -------------------------------------------------------------------------------- /features/lib/pages/summer_dresses_catalog_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/lib/pages/summer_dresses_catalog_page.py -------------------------------------------------------------------------------- /features/steps/ShoppingCart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/features/steps/ShoppingCart.py -------------------------------------------------------------------------------- /requirements.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/requirements.text -------------------------------------------------------------------------------- /results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/results.json -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machzqcq/Python_Page_Object/HEAD/sonar-project.properties --------------------------------------------------------------------------------