でURLの一部を置き換えます。私はセレンwebdriverを+ pythonで次のURLの一部を交換する必要があるのpython
https://ve-215:8443/cloudweb/dropbox_authorized?oauth_token=l8eYuFG8nux3TUHm&uid=69768040私はIPアドレスにve-215
を交換する必要が
が言う192.168.24.53
I replace
を使用してみましたが、うまくいきません。
は、私が使用していたコードを以下に示します。
current_url=driver.current_url
print(current_url) #prints the url of the current window.
current_url.replace("ve-215", "192.168.53.116")
print(current_url) #print url with replaced string
driver.get(current_url) #open window with replaced url
誰もが上記のコードが間違っている何で私を助けることができますか?
ありがとう:
あなたはそのように使用する必要があります。今働いている – user3190414