I am trying to get automatically the result of the URL shorten. This is the page what I am using: url shortener site
This is the code I made (URLS list contains links):
driver.get("http://paylinx.pw/linx/")
for i in URLS:
driver.find_element_by_xpath('//*[@id="url"]').click()
time.sleep(2)
driver.find_element_by_xpath('//*[@id="url"]').send_keys(i)
time.sleep(2)
driver.find_element_by_xpath('//*[@id="invisibleCaptchaShort"]').click()
time.sleep(2)
After this I get the shortened url
. I would need a little help to get it somehow.