Hi I have two lines of code which is
url1 = print(driver.current_url)
web url : "https://www.journal-officiel.gouv.fr/balo/recherche/resultats?parutionDateStart=2021-05-05&parutionDateEnd=2021-05-05&_token=9OFJ6Ry1SbhZ8bkxPSNx1Z8xtlSeyMV1-xpo3S7D-ms"
I am doing this as the link is dynamic and varies with every date.
In this in the jupiter ide it shows the current url which is there and get printed in the bottom , but when i call the variable url1 or print url1 it not giving any value.How can i get the url while calling url1 here
Here
print
function does two things,driver.current_url
to the console.None
(If a function does not return anything python will implicitly returnNone
).So the value of
url1
afterurl1 = print(driver.current_url)
statement will be will beNone
.Looks like what you need is ,