有没有办法根据Jsoup中的子标记获取父标记?
例如:我想获得有class TestAnyImplementation:
def testThis(self):
obj = getImpl() # call to factory method
self.assertTrue(obj.isEmpty())
class TestFooImplementation(TestAnyImplementation,TestCase):
def getImpl(self):
return Foo()
class TestBarImplementation(TestAnyImplementation,TestCase):
def getImpl(self):
return Bar()
作为孩子的标签。
我该怎么做?