blob: 9375feee53ed8680132e1e095354bf742fd5157c [file] [log] [blame]
#!/usr/bin/python
r"""
This is an extended user library to support Robot Selenium code.
The class contains functions which the robot framework will use
and import as a user-defined keyword.
"""
import socket
class supporting_libs():
def get_hostname_from_ip_address(self, ip):
return socket.gethostbyaddr(ip)[0]