You have to know when semantically it's an instance of the enum, and when it's just a string literal (e.g. in JavaScript, where enums are just a pre-defined set of allowed strings). Also, you might assign to it in one place, and then use the resulting variable in many other places farther down the call chain. Now you have to find all those usages.
Static typing makes both of those trivial if your language (or linter) has enum-exhaustiveness checks for switch statements.
You can't always find everything with a search in a dynamic language. Some things are resolved at runtime. In our Perl code base, finding function calls is difficult for this reason (you can eval a string name to get a module or function and call it, based on a configuration setting in a file).
Static typing makes both of those trivial if your language (or linter) has enum-exhaustiveness checks for switch statements.