Displaying 2 results from an estimated 2 matches for "welcome_page".
2007 Aug 21
7
Signin to LinkedIn
...n_page = agent.click home_page.links.text(''Sign in'')
puts "\nSIGNIN PAGE"
pp signin_page
login_form = signin_page.form(''login'')
login_form.session_login = ''LOGIN''
login_form.session_password = ''PASSWORD''
welcome_page = agent.submit(login_form, login_form.buttons.first)
puts "\nWELCOME PAGE"
pp welcome_page <<<< Currently returns signin page
I tried mucking about with a session key, but no joy:
login_form.session_rikey = agent.cookies.find{ |c| ''JSESSIONID'' == c.n...
2011 Jul 20
0
[PATCH] change restart button label to reboot
...:
- buttons.append(["Restart", RESTART_BUTTON])
+ buttons.append(["Reboot", REBOOT_BUTTON])
if self.__current_page != FINISHED_PAGE:
buttons.append(["Quit", QUIT_BUTTON])
if self.__current_page != WELCOME_PAGE and self.__current_page != FAILED_PAGE and self.__current_page != FINISHED_PAGE:
@@ -712,7 +712,7 @@ class NodeInstallScreen:
if self.__current_page == PASSWORD_PAGE:
buttons.append(["Install", INSTALL_BUTTON])
if self.__current_page == FAILED_PA...