|
When we use WR to test C/S applicaton. If want to get data from a textbox, a message box maybe popup sometimes. So it will affect our testing.
Why the message box popup?
Answer: your system has started data execution protection (DEP).
Solution: Stop the DEP
Operation Step: My Computer -> Properties -> Advanced -> Startup and Recovery -> Settings, and then modify Default operation system -> Edit
[boot loader]
timeout=1
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /noexecute=AlwaysOff /fastdect |
|