How to Retrieve Text Using Selenium WebDriver in Python
When attempting to retrieve text using Selenium WebDriver, it's important to avoid dependencies on specific attributes such as XPath or ID, which may change upon web page relaunch. To achieve a more robust solution, consider using the following approach:
Your Code:
<code class="python">text = driver.find_element_by_class_name("current-stage").text</code>
Explanation:
By using .text, you retrieve the text content of the desired element, bypassing the need to manually specify its exact string. This ensures that the code will continue to function even if the ID or other properties change.
Example HTML:
<code class="html"><span class="current-text" id="yui_3_7_0_4_1389185744113_384">my text</span></code>
In this example, the code will successfully extract the text "my text" regardless of the ID changes.
The above is the detailed content of How to Retrieve Text from a Web Page Using Selenium WebDriver in Python Without Relying on Specific Attributes?. For more information, please follow other related articles on the PHP Chinese website!