All Downloads are FREE. Search and download functionalities are using the official Maven repository.

python.defines.py Maven / Gradle / Ivy

The newest version!
def xpath(str):
   return page.getHtml().xpath(str).toString()

def css(str):
  return page.getHtml().css(str).toString()

def urls(str):
  links=page.getHtml().links().regex(str).all()
  page.addTargetRequests(links);

def tomap(key,value):
  return "hello world"





© 2015 - 2024 Weber Informatics LLC | Privacy Policy