Best Capybara code snippet using Capybara.insert_disable
animation_disabler.rb
Source:animation_disabler.rb
...19 def call(env)20 @status, @headers, @body = @app.call(env)21 return [@status, @headers, @body] unless html_content?22 response = Rack::Response.new([], @status, @headers)23 @body.each { |html| response.write insert_disable(html) }24 @body.close if @body.respond_to?(:close)25 response.finish26 end27 private28 attr_reader :disable_markup29 def html_content?30 /html/.match?(@headers['Content-Type'])31 end32 def insert_disable(html)33 html.sub(%r{(</head>)}, disable_markup + '\\1')34 end35 DISABLE_MARKUP_TEMPLATE = <<~HTML36 <script defer>(typeof jQuery !== 'undefined') && (jQuery.fx.off = true);</script>37 <style>38 %<selector>s, %<selector>s::before, %<selector>s::after {39 transition: none !important;40 animation-duration: 0s !important;41 animation-delay: 0s !important;42 }43 </style>44 HTML45 end46 end...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!