Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace LegacyTests\Browser\DataBinding\AutoFill; use LegacyTests\Browser\TestCa..
Decoded Output download
<?php
namespace LegacyTests\Browser\DataBinding\AutoFill;
use LegacyTests\Browser\TestCase;
class Test extends TestCase
{
public function test()
{
// This is a manual test for Safari.
// We can't test this automically because
// Safari's automation mode disables autofill.
//
// Test steps:
// - Comment out the "markTextSkipped" below
// - Run test in chrome
// - Copy the URL and paste it into Safari
// - Autofill the email/password fields
// - Assert both fields are filled
// - Assert both values are synced with Livewire
$this->markTestSkipped();
$this->browse(function ($browser) {
$this->visitLivewireComponent($browser, Component::class)->tinker();
});
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace LegacyTests\Browser\DataBinding\AutoFill;
use LegacyTests\Browser\TestCase;
class Test extends TestCase
{
public function test()
{
// This is a manual test for Safari.
// We can't test this automically because
// Safari's automation mode disables autofill.
//
// Test steps:
// - Comment out the "markTextSkipped" below
// - Run test in chrome
// - Copy the URL and paste it into Safari
// - Autofill the email/password fields
// - Assert both fields are filled
// - Assert both values are synced with Livewire
$this->markTestSkipped();
$this->browse(function ($browser) {
$this->visitLivewireComponent($browser, Component::class)->tinker();
});
}
}
Function Calls
None |
Stats
MD5 | 00dd6c2410333826704779bf3ab2f446 |
Eval Count | 0 |
Decode Time | 101 ms |