This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This demonstrates using selenium to automate testing of applying filters on the babajobs.com website. | |
# The functions apart from the actual test functions can easily be moved to a seperate file to avoid clutter here. | |
# The reusable nature of the helper functions makes it very easy to author cases to test various combinations of filters very easily. | |
# The below tests can be easily run using the nosetests framework. | |
# Nostests - https://nose.readthedocs.org/en/latest/ | |
# Install nosetests via pip install nose | |
# The tests can be run then via the command nosetests -s from the folder containing this file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// BaseScreen.swift | |
// | |
// | |
// This serves as the Superclass of all other Screens that need to be created. | |
import Foundation | |
import XCTest | |
class BaseScreen { |