I'm really new to python (literally started today, 2 hours ago)...
I know php and i want to know if theres a method to introduce variables in to a .py file...
For example in php you have $_GET variable... I want something like this...
python myprogram.py --num 1234567890
To be executed inside...
search_box = driver.find_element_by_name('txtPhone')
search_box.send_keys('$num')
search_box = driver.find_element_by_name('txtPhoneC')
search_box.send_keys('$num')
link = driver.find_element_by_xpath("//select[@name='ddlProducts']/option[text()='10']").click()
How can i do that? (not english native speaker)
NOTE: I dont know if it matters, but im using selenium with chromedriver to make a "bot"