Suppose I have a config.cfg file with the following:
[Info]
keyword: Cool Shirt
How would I pass keyword
into a URL, such that
driver.get("http://www.somewebsite.com/checkout?keyword")
achieves the same result as
driver.get("http://www.somewebsite.com/checkout?keyword=Cool+Shirt")
?