Capture screenshot of Steam page with Ruby

228 Views Asked by At

I need to capture screenshot from steam web page, that contains trade offer error, but for this action i have to be authorized and I don't know what header send to server. I am trying to do this with webshot gem, filling my credentials with capybara, but this not working and it captures login page

 ws.start_session do
  visit 'https://store.steampowered.com/login/'
  within(:css, 'form[name="logon"]') do
    fill_in 'username', {:id => 'input_username', :with => 'test'}
    fill_in 'password', {:id => 'input_password', :with => 'password'}
  end
  click_button('Sign in', exact: true)
end.capture 'https://store.steampowered.com/account', 'example.png', width: 500, height: 500, quality: 85
1

There are 1 best solutions below

1
On BEST ANSWER

Your error is probably occurring because your code doesn't wait for the login to be successful before moving on to request the account page, so the request for the account page doesn't have the correct cookies set and gets redirected back to the login page. You need to do some sort of check to make sure the login has completed. Something like

ws.start_session do
  visit 'https://store.steampowered.com/login/'
  within(:css, 'form[name="logon"]') do
    fill_in 'input_username', with: 'test'
    fill_in 'input_password', with: 'password'
  end
  click_button('Sign in', exact: true)
  page.assert_text('You are now logged in!') # whatever text shows on the page after successfully logging in
end.capture 'https://store.steampowered.com/account', 'example.png', width: 500, height: 500, quality: 85