blob: 40ea135dc65e4e376d1d319147438ad601d939e2 [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]