どのように私はPythonでセレンを使用してWordでスクリプト全体の映画のスクリプトの単語😅


アリアドニル / スパム


テキストスクリプトのテキストスクリプトを1つの単語を一度にWhatsApp


おい、すべて.
誰もがやっていることを願って、このポストで私はどのように私は全体の映画のスクリプトの単語をテキストで(ちょうど彼女を刺激する)Pythonで共有します.
小さなデモを見てみましょう😅

さあ話をしなさい.
必要条件:
  • Python
  • セレン
  • ウェブドライバー(私はクロムウェブドライバを使用しました)
  • ステップ1
    WebDriver、キーと睡眠をインポートする必要があります
    from selenium import webdriver
    from selenium.webdriver.common.keys import Keys
    from time import sleep
    
    ステップ2
    Chrome WebDriverの場所を入力し、ドライバ変数に代入します
    driver=webdriver.Chrome("")
    
    ステップ3
    私はWhatsAppを使用してメッセージを送信し、私はメッセージを送信する必要がある人を固定し、任意のハッスルがないように.
    driver.get("https://web.whatsapp.com/")
    sleep(15)
    driver.find_element_by_xpath("/html/body/div/div/div/div/div/div/div[1]/div/div/div[1]/div/div/div").click()
    sleep(5)
    
    私たちがQrcodeをログインするためにスキャンすることができる若干の時間がなければならないので、私は睡眠(15)を与えました、そして、XPathはそのそれぞれの人のチャットウインドウを開くことになっています
    ステップ4
    さて、ムービースクリプトファイルを見つけ、filelocation変数に代入して読み込みモードで開きますfileLocation= "" #Enter location of movie script fileステップ5
    今すぐ使用するための“ループ”の言葉でMSGの単語を送信する

    コード


    from selenium import webdriver
    from selenium.webdriver.common.keys import Keys
    from time import sleep
    
    
    driver=webdriver.Chrome("") #Enter Location of Chrome driver
    driver.maximize_window()
    driver.get("https://web.whatsapp.com/")
    sleep(15)
    driver.find_element_by_xpath("/html/body/div/div/div/div/div/div/div[1]/div/div/div[1]/div/div/div").click()
    sleep(5)
    fileLocation= ""  #Enter location of movie script file
    with open(fileLocation,"r") as file:
        for line in file:
            for word in line.split(" "):
                driver.find_element_by_xpath("//*/footer/div[1]/div[2]/div/div[2]").send_keys(word)
                driver.find_element_by_xpath("//*/footer/div[1]/div[2]/div/div[2]").send_keys(Keys.ENTER)
    
    エー♥️ 素晴らしいです😊