Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
require 'rubygems'
require 'selenium-webdriver'
require_relative "../module/DriverUtility"
class Roa
include DriverUtility
def initialize(driver)
@driver = driver
end
def clickNext()
waitForPageToFinishLoading
click(:css, "#roa div:nth-of-type(3) div fieldset div:nth-of-type(2) a div button" )
end
def clickVerify()
click(:id, "verify-btn")
end
def clickCancelEndOnLaunchpad()
click(:css, "#roa div:nth-of-type(3) div fieldset div:nth-of-type(1) a div button" )
!45.times{ break if (getPageTitle() == "Launchpad"); sleep 1 }
end
def clickCancelInReview
click(:css, "#form-review div:nth-of-type(3) div fieldset div:nth-of-type(1) a div button")
!45.times{ break if (getPageTitle() == "Right Of Access"); sleep 1 }
end
end