class AdopsReportScrapper::BrightrollClient

Private Instance Methods

extract_data_from_report() click to toggle source
# File lib/adops_report_scrapper/brightroll_client.rb, line 33
def extract_data_from_report
  rows = @client.find_all :xpath, '//table[1]/*/tr'
  rows = rows.to_a
  rows.delete_at 1
  @data = rows.map { |tr| tr.find_css('td,th').map { |td| td.visible_text } }
end
login() click to toggle source
# File lib/adops_report_scrapper/brightroll_client.rb, line 7
def login
  @client.visit 'https://login.brightroll.com/login'
  @client.fill_in 'user_login', :with => @login
  @client.fill_in 'user_password', :with => @secret
  @client.click_button 'Sign In'
  begin
    @client.find :xpath, '//*[text()="Tags"]'
  rescue Exception => e
    raise e, 'Brightroll login error'
  end
end
request_report() click to toggle source
# File lib/adops_report_scrapper/brightroll_client.rb, line 24
def request_report
  @client.find(:xpath, '//*[text()="Tags"]').click
  wait_for_loading
  # select date
  @client.find(:css, '.details-date-filter').click
  @client.find(:xpath, '//li[text()="Yesterday"]').click
  wait_for_loading
end
scrap() click to toggle source
# File lib/adops_report_scrapper/brightroll_client.rb, line 19
def scrap
  request_report
  extract_data_from_report
end
wait_for_loading() click to toggle source
# File lib/adops_report_scrapper/brightroll_client.rb, line 40
def wait_for_loading
  30.times do |_i| # wait 5 min
    begin
      @client.find(:css, '.bubble-loader.bubble-loader-3')
    rescue Exception => e
      break
    end
    sleep 10
  end
  sleep 10
end