దశ 1: ఇన్స్టాల్ చేయండి Selenium
పిప్ ద్వారా లైబ్రరీని ఇన్స్టాల్ చేయడానికి కింది ఆదేశాన్ని తెరవండి terminal లేదా అమలు చేయండి: command prompt Selenium
pip3 install selenium
దశ 2: డౌన్లోడ్ చేసి, ఇన్స్టాల్ చేయండి WebDriver
మునుపటి ప్రతిస్పందనలలో వివరించిన విధంగానే, మీరు WebDriver ఉపయోగించాలనుకుంటున్న బ్రౌజర్కు సంబంధించిన సంబంధితాన్ని డౌన్లోడ్ చేసి, ఇన్స్టాల్ చేయాలి.
దశ 3: Python కోడ్ వ్రాయండి
Selenium వెబ్ పేజీని తెరవడం, శోధన చేయడం మరియు కంటెంట్ను తిరిగి పొందడం ఎలా ఉపయోగించాలో దిగువ ఉదాహరణ:
from selenium import webdriver
# Initialize the browser(using Chrome in this example)
driver = webdriver.Chrome()
# Open a web page
driver.get("https://www.example.com")
# Find an element on the web page
search_box = driver.find_element_by_name("q")
search_box.send_keys("Hello, Selenium!")
search_box.submit()
# Print the web page content after the search
print(driver.page_source)
# Close the browser
driver.quit()
ఎగువ ఉదాహరణ Chrome బ్రౌజర్ని ఉపయోగిస్తుందని గమనించండి. మీరు వేరే బ్రౌజర్ని ఉపయోగించాలనుకుంటే, మీరు ఉపయోగించాలనుకుంటున్న బ్రౌజర్తో లేదా దాని webdriver.Chrome()
ప్రకారం భర్తీ చేయాలి. webdriver.Firefox()
webdriver.Edge()
ముఖ్య గమనిక
- Selenium WebDriver వెబ్ బ్రౌజర్ను నియంత్రించడానికి a అవసరం. మీరు సరైన మార్గాన్ని ఇన్స్టాల్ చేసి, సెటప్ చేశారని నిర్ధారించుకోండి WebDriver.
- వెబ్ బ్రౌజర్ పరస్పర చర్యలను ఆటోమేట్ చేయడానికి ఉపయోగిస్తున్నప్పుడు Selenium, వెబ్సైట్లోని భద్రతా చర్యలతో పరస్పర చర్య చేయడం మరియు వెబ్సైట్ విధానాలకు కట్టుబడి ఉండటం గురించి గుర్తుంచుకోండి.