Beispiel #1
0
def test_FindLinksMaterials():
    s = Settings()
    ri = ParseList(s.materialsAllUrl)
    links = ri.FindLinks()

    if len(links) == 50:
        assert True
Beispiel #2
0
def test_FindLinksFood():
    s = Settings()
    ri = ParseList(s.foodAllUrl)
    links = ri.FindLinks()

    if len(links) == 50:
        assert True
Beispiel #3
0
def test_FindLinksArmor():
    s = Settings()
    ri = ParseList(s.armorAllUrl)
    links = ri.FindLinks()

    if len(links) == 50:
        assert True
Beispiel #4
0
def test_FindLinksAccessories():
    s = Settings()
    ri = ParseList(s.accessoriesAllUrl)
    links = ri.FindLinks()

    if len(links) == 50:
        assert True
Beispiel #5
0
 def getHtmlSource(self):
     if pytest.arms_html == '':
         s = Settings()
         pytest.arms_url = s.armsAllUrl
         pl = ParseList(s.armsAllUrl)
         pytest.arms_html = pl.FindLinks(pytest.arms_url)