I'm trying to save the link in variable gmail
and trying to open it using send_keys. I'm confused if my declaration of the link is also wrong. It shows type str for declaration.
gmail= "https://accounts.google.com/signin/v2/identifier?flowName=GlifWebSignIn&flowEntry=ServiceLogin"
gmail.send_keys(keys.CONTROL+ Keys.RETURN)**
Type of gmail:
In [319]: type(gmail)
Out[319]: str
Please let me know if I can define a link and open it in a new tab in chrome browser driven by selenium.