Created
May 30, 2013 11:12
-
-
Save shoyan/5677177 to your computer and use it in GitHub Desktop.
WebDriverを使ってtarget=_blankで開いた別ウインドウにフォーカスする ref: http://qiita.com/items/21f581bbe3c8f00bb566
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new_window = page.driver.browser.window_handles.last | |
page.within_window new_window do | |
# code | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 全てのwindow_idを取得 | |
window = page.driver.browser.window_handles() | |
# 指定したキーにウィンドウをフォーカス | |
page.driver.browser.switch_to.window(window[1]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment