class PortalModule::Pages::DataTransformationPage
Public Instance Methods
activate()
click to toggle source
# File lib/portal_module/pages/data_transformation_page.rb, line 53 def activate self.activate_button self end
download()
click to toggle source
# File lib/portal_module/pages/data_transformation_page.rb, line 58 def download self.download_button self end
get_dynamic_url()
click to toggle source
# File lib/portal_module/pages/data_transformation_page.rb, line 17 def get_dynamic_url PortalModule.configuration.url(DataTransformationPage) end
load_org(org_string)
click to toggle source
# File lib/portal_module/pages/data_transformation_page.rb, line 63 def load_org org_string org_name = org_string.split('~')[1] return self if viewing_span == org_name self.search_text = org_string self.search_button viewing_span_element.wait_until(120, "Org not loaded - #{org_name}") do viewing_span == org_name end self end
save()
click to toggle source
# File lib/portal_module/pages/data_transformation_page.rb, line 48 def save self.save_button self end
upload(file_path)
click to toggle source
# File lib/portal_module/pages/data_transformation_page.rb, line 77 def upload file_path self.file_input = file_path self.upload_button self end