上午建築物的.exe使用OCRA這樣ocra testing.rb -- sample
OCRA生成的exe不接受參數
這裏想過去「」樣品「」作爲參數傳遞給下面的代碼和建立一個exe
require "selenium-webdriver"
$var = ARGV[0]
driver = Selenium::WebDriver.for :chrome
wait = Selenium::WebDriver::Wait.new(:timeout => 20)
puts $var
driver.navigate.to "https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/&ss=1&scc=1<mpl=default<mplcache=2&emr=1&osid=1#identifier"
sleep 5
input = driver.find_element(:id, "Email")
input.send_keys($var)
button = driver.find_element(:id, "next")
button.click
sleep 5
的這裏的問題是,在建立.exe後,當我試圖通過傳遞不同的參數(值)來運行exe時,它始終採用與「sample」相同的值作爲參數,因爲它是硬代碼。
C:\Users\shivaj\Downloads>testing.exe -- test1
它把作爲樣本
請幫我這個問題,我只是做了一個示例程序與問題,但實際的程序有更多的事情要做吧。任何幫助表示讚賞。感謝您的幫助 !
太棒了!我的工作方式不同,但邏輯是一樣的。謝謝 – meher